Alpha Release: Expect breaking changes. Report issues at GitHub Issues
Agent-first SDLC workflow manager using Claude Agent SDK. A Kanban-style board with AI-powered workflow automation for software development stories.
- Kanban-style story management (Backlog → Ready → In Progress → Done)
- AI-powered agents for each workflow stage (refine, research, plan, implement, review)
- Full SDLC automation with
--auto --story- takes a story from idea to reviewed code - Epic processing with
--epic- parallel execution of related stories with dependency resolution - TDD Mode - Optional Test-Driven Development with Red-Green-Refactor cycles
- Resume workflows after interruption with
--continue - Daemon mode - Watch for and process new stories with
--watch
npm install -g ai-sdlc# Initialize the project
ai-sdlc init
# Add a story to the backlog
ai-sdlc add "Implement user authentication"
# View your board
ai-sdlc status
# Run the full SDLC for a story
ai-sdlc run --auto --story implement-user-authentication| Command | Description |
|---|---|
ai-sdlc init |
Initialize .ai-sdlc folder structure |
ai-sdlc status |
View stories in Kanban board |
ai-sdlc add "title" |
Add a new story to backlog |
ai-sdlc run |
Process next recommended action |
ai-sdlc run --auto |
Process all pending actions |
ai-sdlc run --auto --story <id> |
Full SDLC for one story |
ai-sdlc run --batch <ids> |
Full SDLC for multiple stories sequentially (comma-separated) |
ai-sdlc run --story <id> --step <phase> |
Run specific phase (refine/research/plan/implement/review) |
ai-sdlc run --continue |
Resume after interruption |
ai-sdlc run --watch |
Daemon mode - watch for new stories |
ai-sdlc run --epic <epic-id> |
Process all stories in an epic with parallel execution |
ai-sdlc details <id> |
Show story details |
ai-sdlc config [key] [value] |
View/set configuration |
ai-sdlc import <issue-url> |
Import a GitHub Issue as a new story |
ai-sdlc link <story-id> <issue-url> |
Link an existing story to a GitHub Issue |
Stories progress through these phases:
Refine → Research → Plan → Implement → Review → Create PR → Done
Status flags shown in ai-sdlc status:
[R]Research complete[P]Plan complete[I]Implementation complete[V]Reviews complete[!]Blocked
Process multiple related stories in parallel with automatic dependency resolution. Epics use git worktrees for isolation and execute independent stories concurrently.
Label Format: Stories are grouped using epic-{epic-id} labels (e.g., epic-ticketing-integration)
Basic Usage:
# Process all stories in an epic (uses default concurrency: 3)
ai-sdlc run --epic ticketing-integration
# Dry run - show execution plan without running
ai-sdlc run --epic ticketing-integration --dry-run
# Adjust concurrency limit
ai-sdlc run --epic ticketing-integration --max-concurrent 5
# Keep worktrees for debugging
ai-sdlc run --epic ticketing-integration --keep-worktreesDependency Management: Add dependencies to story frontmatter to control execution order:
---
id: S-0075
dependencies: [S-0073, S-0074]
labels: [epic-ticketing-integration]
---Features:
- Automatic parallelization - Independent stories run concurrently
- Dependency resolution - Stories wait for dependencies to complete
- Real-time dashboard - Live progress tracking for all stories
- Failure handling - Failed stories don't block independent work
- Worktree isolation - Each story runs in its own git worktree
Requirements:
- Worktrees must be enabled in
.ai-sdlc.json:"worktree": { "enabled": true } - Stories must have matching
epic-{epic-id}label
Configuration:
{
"epic": {
"maxConcurrent": 3,
"keepWorktrees": false,
"continueOnFailure": true
},
"worktree": {
"enabled": true
}
}Import and link GitHub Issues to ai-sdlc stories. Requires the GitHub CLI (gh) to be installed and authenticated.
Setup:
# Install gh CLI
brew install gh # macOS
# or visit https://cli.github.com/ for other platforms
# Authenticate
gh auth login
# Configure ai-sdlc
echo '{
"ticketing": {
"provider": "github",
"github": {
"repo": "owner/repo"
}
}
}' > .ai-sdlc.jsonImport a GitHub Issue:
# Import issue as a new story
ai-sdlc import https://github.com/owner/repo/issues/123
# Supported URL formats:
# - https://github.com/owner/repo/issues/123
# - github.com/owner/repo/issues/123
# - owner/repo#123Link existing story to an issue:
# Link story to issue (prompts to sync title/description)
ai-sdlc link S-0042 https://github.com/owner/repo/issues/123
# Skip sync prompt
ai-sdlc link S-0042 owner/repo#123 --no-syncFeatures:
- Import issues as stories with metadata (ticket_id, ticket_url, ticket_synced_at)
- Link existing stories to issues
- Sync title and description from issues (optional)
- Duplicate detection (warns if issue already imported)
For full documentation, see Configuration: GitHub Integration Commands.
Configure ai-sdlc behavior via a .ai-sdlc.json file in your project root. If no configuration file exists, ai-sdlc uses sensible defaults.
Key configuration areas:
- Stage gates - Control approval requirements before implementation and PR creation
- Timeouts - Configure operation timeouts (agent, build, test)
- Retry policies - Control automatic retry behavior for review and implementation failures
- TDD mode - Enable test-driven development with red-green-refactor cycles
- Worktree isolation - Use git worktrees for parallel story development
- Environment variable overrides - Use
AI_SDLC_*variables for CI/CD or temporary changes
Minimal example (uses all defaults):
{}Basic customization:
{
"sdlcFolder": ".ai-sdlc",
"stageGates": {
"requireApprovalBeforeImplementation": true
},
"timeouts": {
"agentTimeout": 1800000
},
"theme": "auto"
}📖 Complete Configuration Reference - Detailed documentation of all configuration options, validation rules, environment variables, and 5 complete example configurations.
Set your API key:
export ANTHROPIC_API_KEY=your-key-hereGet an API key at: https://console.anthropic.com/
Releases are automated via GitHub Actions using npm trusted publishing (OIDC - no tokens required).
| Release Type | How to Trigger | npm Tag |
|---|---|---|
| Alpha | Automatic on push to main |
@alpha |
| Stable | Push a git tag (v1.2.3) |
@latest |
Alpha releases happen automatically when you push to main. The version is auto-incremented based on the latest alpha on npm.
Stable releases are triggered by pushing a semver git tag:
# Patch release (bug fixes)
git tag v0.2.1
git push origin v0.2.1
# Minor release (new features)
git tag v0.3.0
git push origin v0.3.0
# Major release (breaking changes)
git tag v1.0.0
git push origin v1.0.0Stable releases automatically create a GitHub Release with generated notes.
npm install
npm run build
npm test
npm run lintMIT