Local SDLC plugin marketplace
npx claudepluginhub 45ck/claude-sdlc-pluginSDLC workflow automation with Storybook-powered planning hub covering full software development lifecycle
A Claude Code plugin that automates software development lifecycle (SDLC) workflows with an interactive Storybook-based planning hub.
Generate professional SDLC artifacts with AI-assisted iterative planning.
The SDLC plugin scaffolds complete software projects with proper documentation, then guides you through an iterative planning process that validates each stage with you before proceeding.
| Command | Description |
|---|---|
/sdlc:init | Scaffold a monorepo with Storybook planning hub, design system, and quality tooling |
/sdlc:plan | Interactive planning wizard - generates artifacts in dependency order with validation |
/sdlc:implement | TDD implementation from validated planning artifacts with quality gates |
/sdlc:update | Sync artifacts with implementation progress from git history |
/sdlc:review | Verify implementation matches planning artifacts (API spec, ERD, domain model, acceptance criteria) |
/sdlc:qa | Quality assurance - test coverage, test quality, E2E gaps, security scanning |
/sdlc:refs | Sync/search local reference repos (curated awesome-* lists) for planning support |
claude --plugin-dir "/path/to/claude-sdlc-plugin"
git clone https://github.com/45ck/claude-sdlc-plugin.git
~/.claude/settings.json):{
"enabledPlugins": {
"sdlc@sdlc-local": true
},
"extraKnownMarketplaces": {
"sdlc-local": {
"url": "file:///path/to/claude-sdlc-plugin/.claude-plugin/marketplace.json"
}
}
}
/sdlc:init my-app
Creates:
my-app/
├── docs/ # SDLC artifacts
├── packages/
│ ├── planning-hub/ # Storybook site
│ └── ui/ # Design system
├── pnpm-workspace.yaml
├── package.json
└── ... (quality configs)
cd my-app
pnpm install
pnpm dev:storybook
Opens at http://localhost:6006
/sdlc:plan
The wizard walks you through:
Each stage is validated with you before proceeding.
/sdlc:plan can run in Solo mode (single agent) or Team mode (parallel specialist subagents + synthesis). The skill will ask which you want at the start.
Typical Team mode workflow:
# (optional) keep local references current
/sdlc:refs
# plan with parallel subagents + synthesis
/sdlc:plan
/sdlc:implement
TDD implementation driven by your validated planning artifacts. Generates code with quality gates: tests first, then implementation, then verification against acceptance criteria.
/sdlc:update
Scans git commits and updates artifact status.
/sdlc:review
Checks that code matches planning artifacts: API routes vs OpenAPI spec, database schema vs ERD, TypeScript classes vs domain model, and acceptance criteria traceability.
/sdlc:qa
Runs quality checks: test coverage against thresholds, test quality assessment, E2E/integration gap analysis, security dependency audit, and static analysis. Generates a quality score (0-100) with fix-forward options.
The plugin includes expert subagents for different SDLC disciplines:
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.