Skip to Content

Synopsis

aigon feedback-list [--inbox|--triaged|--actionable|--done|--wont-fix|--duplicate|--all] [--type <type>] [--severity <severity>] [--tag <tag>]

Shortcuts

  • /afbl (slash command) · aigon afbl (CLI)

Description

feedback-list scans the feedback lifecycle folders and prints a table of items with their IDs, titles, status, type, and severity. It is the starting point for a triage session — run it with no args to see what’s waiting in the active lanes (inbox, triaged, actionable), then drill into individual items with feedback-triage.

By default (no args), the command shows inbox, triaged, and actionable items — the lanes that need attention. Pass status flags to scope the view, and combine with --type, --severity, or --tag to filter further.

Flags

FlagDescription
--inboxShow only inbox items (not yet triaged)
--triagedShow items that have been classified but not yet actioned
--actionableShow items marked for action (will become features or research)
--doneShow resolved or promoted items
--wont-fixShow items marked as won’t fix
--duplicateShow items marked as duplicates
--allShow items in all stages
--type <type>Filter by type (e.g. bug, enhancement, question)
--severity <severity>Filter by severity (e.g. high, medium, low)
--tag <tag>Filter by tag

Examples

# Active triage lanes (default — inbox + triaged + actionable) aigon feedback-list # All unresolved bugs aigon feedback-list --all --type bug # High-severity items across all stages aigon feedback-list --all --severity high # Items tagged with a specific area aigon feedback-list --all --tag auth # Just the inbox aigon feedback-list --inbox
Last updated on