Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub mateon01/aidlc-for-claudeAI-DLC (AI-Driven Development Life Cycle) - A structured, adaptive software development workflow for Claude Code
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.
Share bugs, ideas, or general feedback.
A Claude Code plugin that implements the AI-DLC (AI-Driven Development Life Cycle) methodology -- a structured, adaptive software development workflow that guides AI assistants through disciplined three-phase development.
AI-DLC intelligently adapts to your project: simple changes execute only essential stages, while complex projects receive comprehensive treatment with full safeguards.
Documentation | Apache-2.0 License
In the Claude Code chat, run these two commands:
/plugin marketplace add mateon01/aidlc-for-claude
/plugin install aidlc-for-claude
/aidlc
That's it. The orchestrator detects your workspace (greenfield or brownfield), gathers requirements through interactive Q&A, and walks through each phase with you. Every stage requires your approval before proceeding.
To run a specific stage independently:
/aidlc-requirements-analysis
/aidlc-code-generation
AI-DLC has three phases. Each phase contains stages that may execute conditionally based on your project's needs.
+-----------------------------------------------------------------------+
| INCEPTION (WHAT and WHY) |
| |
| Workspace Detection --> [Scope Assessment (brownfield)] |
| --> Reverse Engineering --> Requirements Analysis |
| --> User Stories --> Workflow Planning --> Application Design |
| --> Units Generation |
+-----------------------------------+-----------------------------------+
|
v
+-----------------------------------------------------------------------+
| CONSTRUCTION (HOW) |
| |
| System NFR Assessment --> |
| FOR each unit (sequential or parallel): |
| Functional Design --> NFR Requirements --> NFR Design |
| --> Infrastructure Design --> Code Generation |
| |
| Build and Test (after all units) + security scan + coverage |
| Operations (CI/CD, PR Review, Dockerfile, .env, README, deploy) |
+-----------------------------------+-----------------------------------+
|
v
+-----------------------------------------------------------------------+
| OPERATIONS (SHIP) |
| |
| Deployment Checklist --> CI/CD Pipeline --> Dockerfile |
| --> .env Template --> Developer README --> Verification Script |
+-----------------------------------------------------------------------+
Not every stage runs every time. After Workflow Planning, an execution plan determines which stages are needed:
| Condition | Stages Executed |
|---|---|
| Simple bug fix | Workspace Detection, Requirements, Workflow Planning, Code Generation, Build and Test |
| Simple brownfield (fast path) | Workspace Detection, Reverse Engineering, Workflow Planning (minimal), Code Generation, Build and Test |
| New feature (greenfield) | All INCEPTION + all CONSTRUCTION stages |
| Brownfield modification | Adds Reverse Engineering, adapts scope based on existing codebase |
| Infrastructure-only change | Skips User Stories, Functional Design; includes Infrastructure Design |
You can override any recommendation at the Workflow Planning approval gate.