Synopsis
aigon feedback-triage <ID> [--type <type>] [--severity <severity|none>] [--tags <csv|none>] [--status <status>] [--duplicate-of <ID|none>] [--action <keep|mark-duplicate|promote-feature|promote-research|wont-fix>] [--apply] [--yes]Shortcuts
/afbt(slash command) ·aigon afbt(CLI)
Description
feedback-triage is a two-phase command: first it reads the feedback item and produces AI-generated recommendations (type, severity, tags, and next action), then — after you confirm — it applies those changes and moves the file to the appropriate lifecycle folder.
The human confirmation step is mandatory. The agent never writes triage changes until the user explicitly approves. This prevents misclassification from silently polluting the backlog.
The --action flag controls what happens to the item: keep leaves it triaged for later, promote-feature creates a feature spec from it, promote-research creates a research topic, mark-duplicate links it to an existing item, and wont-fix archives it.
What it does
- Runs
aigon feedback-triage <ID>to load the item’s content and context - Reads all other feedback (via
aigon feedback-list --all) for duplicate detection - Proposes: type, severity, tags, duplicate candidates, and next action
- Waits for explicit user confirmation before writing anything
- Applies the triage with:
aigon feedback-triage <ID> --type ... --severity ... --apply --yes - Moves the file to the correct lifecycle folder for the new status
Flags
| Flag | Description |
|---|---|
--type | Feedback classification (e.g. bug, enhancement, question) |
--severity | Impact level — use none to clear |
--tags | Comma-separated tags — use none to clear all |
--status | Target lifecycle status |
--duplicate-of <ID> | Link to an existing item — use none to clear |
--action | What to do: keep, mark-duplicate, promote-feature, promote-research, wont-fix |
--apply | Actually write the changes (dry-run without this flag) |
--yes | Skip the per-field confirmation prompt |
Examples
# AI-assisted triage (agent reads, proposes, waits for approval)
aigon feedback-triage 7
# Manually apply a classification without AI
aigon feedback-triage 7 --type bug --severity high --tags auth,login --apply --yes
# Mark as duplicate and archive
aigon feedback-triage 7 --action mark-duplicate --duplicate-of 3 --apply --yes
# Promote to a feature spec
aigon feedback-triage 7 --action promote-feature --apply --yesRelated
feedback-create— file the feedback item before triagingfeedback-list— see what’s in the inbox before starting a triage session- Feedback Workflow guide
Last updated on