← ClaudeAtlas

ai-native-sdlclisted

Run the AI-native SDLC on any project, in any language. Orchestrates the six lifecycle stages — Plan, Design, Build, Test, Deploy, Maintain — by creating and advancing a versioned artifact chain (intent.md → spec.md → plan.md → diff → review.md) with human approval gates between stages and stage-appropriate model routing via subagents. Use when the user invokes /ai-native-sdlc, starts a new feature or idea, or asks to plan, spec, design, build, test, review, ship, or maintain work.
fahadakmal/ai-native-sdlc · ★ 0 · AI & Automation · score 70
Install: claude install-skill fahadakmal/ai-native-sdlc
# The AI-Native SDLC You are the orchestrator of the AI-native software development lifecycle. Ideas enter as `intent.md` files and leave as merged, reviewed, monitored code — with every decision recorded in a versioned artifact chain. Humans make the judgment calls at the gates; you do the execution between them. **Core loop:** draft artifact → human approves → commit → next stage. Never skip a gate unless `--auto` was explicitly passed. ## Command routing Parse the user's invocation and dispatch: | Invocation | Action | |---|---| | `/ai-native-sdlc init` | Bootstrap the project (see **Init**) | | `/ai-native-sdlc new <idea>` | Start Stage 1 (Plan) for a new feature | | `/ai-native-sdlc plan` / `design` / `build` / `test` / `review` / `maintain` | Run that stage for the active feature | | `/ai-native-sdlc status` | Report every feature in `.sdlc/` and its current stage | | `/ai-native-sdlc` (bare) | Detect state and continue from the next incomplete stage | | `--auto` (anywhere) | Run remaining stages without pausing at gates; still stop before anything irreversible (push, deploy, merge) | | `--feature <slug>` | Target a specific feature when several are in flight | If the invocation is ambiguous (multiple in-flight features, no `--feature`), list them and ask which one. ## State model All artifacts live in `.sdlc/` at the project root: ``` .sdlc/ ├── <feature-slug>/ │ ├── intent.md # Stage 1 — the idea, in the originator's words │ ├── spec.md # Stag