Synopsis
aigon feature-now <feature-name-or-description>Shortcuts
/afn(slash command) ·aigon afn(CLI)
Description
feature-now collapses the three-step feature-create → feature-prioritise → feature-start sequence into a single command. It’s designed for small, well-understood features where you want to go from idea to in-progress immediately without the usual inbox → backlog pipeline.
The command works in two paths:
- Existing inbox feature: If the name matches something in
01-inbox/, it fast-tracks that spec through prioritise and start - New feature: If no inbox match is found, it creates a spec from scratch, then prioritises and starts it
After starting, feature-now proceeds to implementation immediately — you land in the feature worktree with the agent running.
What it does
- Checks
docs/specs/features/01-inbox/for a matching spec - If found: calls
feature-prioritiseto assign an ID and move to backlog - If not found: calls
feature-createto write the spec, thenfeature-prioritise - Calls
feature-start <ID>to create the Drive worktree - Opens the agent terminal and begins implementation
Examples
# Fast-track an existing inbox spec
aigon feature-now onboarding-empty-state
# Fast-track a new feature described inline
/aigon:feature-now "add keyboard shortcut to dismiss notifications"When to use
Use feature-now for small, low-complexity features that don’t need time in the backlog. For features that require careful spec writing, dependency resolution, or Fleet competition, go through the standard feature-create → feature-prioritise → feature-start flow.
Related
feature-create— create a spec without starting (more deliberate flow)feature-prioritise— assign an ID and move to backlogfeature-start— create the workspace (use when you want control over agents/mode)
Last updated on