Human-in-the-loop review tools for AI workflows.
| Tool | Purpose | Use case |
|---|---|---|
| page | Spatial web feedback | Click elements, edit text inline, leave comments on live sites |
| picks | Asset selection | Swipe through photos/images, thumbs up/down |
| sift | Generation review | Approve/reject AI outputs with notes for prompt refinement |
- Minimal friction - One click to start, one click to decide
- Accumulates as text - Copy/paste feedback anytime
- Claude Code readable -
/input checkshows pending feedback - Local first - Works without accounts, stores to JSON
# Add page feedback widget to current project
/input page setup
# Check accumulated feedback
/input check
# Apply text edits automatically
/input apply
# Clear resolved feedback
/input clearnpx getinput-pageAdds:
components/InputWidget.tsx- floating feedback widgetapp/api/input/route.ts- local JSON storageinput.json- feedback file (gitignored)
npx getinput-picks ./images/*.jpgOpens a local review UI for the matched files.
npx getinput-sift ./outputs/Opens a review UI for AI-generated content with rejection notes.
MIT