ai-native-sdlclisted
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