Overview
The Inception Agent handles the first phase of AI-DLC. It captures your high-level goals (Intents), elaborates them into detailed requirements, and decomposes them into manageable Units.Invocation
- Claude Code
- Cursor
- GitHub Copilot
Commands
| Command | Purpose |
|---|---|
intent-create | Create a new intent |
intent-list | List all intents |
requirements | Elaborate intent requirements |
context | Define system context |
units | Decompose into units |
story-create | Create stories for a unit |
bolt-plan | Plan bolts for stories |
review | Review inception artifacts |
intent-create
Creates a new intent from your high-level goal:Example Session
requirements
Elaborate or refine requirements for an existing intent:- Add new user stories
- Refine acceptance criteria
- Add non-functional requirements
- Update priorities
context
Define or update system context:- What’s in scope vs out of scope
- External interfaces
- Technical constraints
- Dependencies
units
Decompose an intent into units:- Analyze requirements and context
- Identify natural boundaries
- Propose unit structure
- Define interfaces between units
- Map dependencies
Example Output
story-create
Create user stories for a specific unit:- User story format (As a… I want… So that…)
- Acceptance criteria
- Edge cases
- Test scenarios
bolt-plan
Plan the bolts needed to implement stories:- Analyzes stories and their complexity
- Groups related stories
- Assigns bolt types (DDD, TDD, BDD)
- Orders bolts by dependencies
- Estimates duration
Example Output
review
Review all inception artifacts for an intent:- Completeness of requirements
- Consistency between artifacts
- Gaps in coverage
- Potential issues
Workflow
Typical Inception flow:Human Checkpoints
The Inception Agent has 4 human checkpoints with auto-continue between artifact generation:| Gate | Location | Purpose |
|---|---|---|
| Gate 1 | After clarifying questions | Ensure all ambiguities addressed |
| Gate 2 | After requirements generated | Validate requirements are correct |
| Gate 3 | After all artifacts generated | Review context, units, stories, bolt plan |
| Gate 4 | Ready for construction | Confirm inception complete |
Between Gate 2 and Gate 3, the agent auto-continues through context → units → stories → bolt-plan without stopping. This speeds up artifact generation while maintaining key validation points.
Best Practices
Be Specific
Be Specific
Provide detailed answers to clarifying questions. Vague inputs lead to vague outputs.
Review Generated Artifacts
Review Generated Artifacts
Always review what the agent generates. Correct errors before moving forward.
Keep Units Focused
Keep Units Focused
If a unit feels too big, ask the agent to split it further.
Plan Before Building
Plan Before Building
Don’t skip to Construction. Good bolt plans save time later.
