From claude-superskills
Provides overview of CODE Method SDLC framework with 9 AI agents and 8 phases for discovery, planning, architecture, UX, stories, sprints, implementation, and review. Use for project setup or agent selection.
npx claudepluginhub ericgandrade/claude-superskills --plugin claude-superskillsThis skill uses the workspace's default tool permissions.
The **CODE Method** (Context Oriented Development for Enterprises) is a structured software development methodology that guides teams through the full SDLC using specialized AI agents and conversational workflows. It replaces ad-hoc prompting with repeatable, quality-gated phases — from product discovery to deployment.
Guides specification-driven AI development workflows by breaking projects into 2-4 hour sessions using 13 commands like /plansession, /implement, /validate, and /phasebuild.
Orchestrates 6-phase SDLC pipeline (discovery, requirements, architecture, workstreams, implementation, summary) for guided feature development. Supports plan persistence, wave-based resume, autonomous mode, verification, and Stitch UI integration.
Routes SDLC requests to specialist skills by detecting CMMI maturity level. Covers requirements management, design documentation, quality assurance, governance, metrics, and process adoption on projects.
Share bugs, ideas, or general feedback.
The CODE Method (Context Oriented Development for Enterprises) is a structured software development methodology that guides teams through the full SDLC using specialized AI agents and conversational workflows. It replaces ad-hoc prompting with repeatable, quality-gated phases — from product discovery to deployment.
config.yaml)Each CODE Method skill embodies a specialized agent persona:
| Agent | Name | Role | Skill |
|---|---|---|---|
| Analyst | Mary | Discovery & market analysis | code-brief |
| Product Manager | James | PRD creation and validation | code-prd |
| Architect | William | Architecture decisions | code-architecture |
| UX Designer | Sophie | User experience planning | code-ux |
| Product Owner | Patricia | Epics & stories | code-stories |
| Scrum Master | Robert | Sprint planning & tracking | code-sprint |
| Developer | Tom | Story implementation | code-dev |
| QA Engineer | Carol | Adversarial code review | code-review |
| Orchestrator | Alex | Multi-agent coordination | code-method |
Determine which SDLC phase the project is in:
Greenfield (new project):
→ code-brief → code-prd → code-ux → code-architecture
→ code-stories → code-sprint → [loop] code-dev → code-review
Brownfield (existing codebase):
Small change: → code-dev (quick mode)
Large change: → code-prd → code-architecture → code-stories → code-sprint → code-dev → code-review
Quick win / bug fix:
→ code-dev (quick-dev mode, no planning needed)
Create .code-method/config.yaml at the project root:
# CODE Method Configuration
user_name: "Your Name"
communication_language: "en-US"
output_folder: "docs"
artifacts_folder: ".code-output"
settings:
show_reasoning_chain: true
require_elicitation: true
auto_save_outputs: true
naming:
prd_prefix: "PRD-"
story_prefix: "STORY-"
epic_prefix: "EPIC-"
adr_prefix: "ADR-"
Present the user with the full menu based on their project state:
Discovery Phase:
code-brief — Create a lightweight product brief before committing to a full PRDcode-prd — Create, validate, or edit a Product Requirements DocumentDesign Phase:
code-ux — Plan user experience, journeys, and design system decisionscode-architecture — Make architectural decisions (tech stack, patterns, structure)Planning Phase:
code-stories — Decompose PRD + Architecture into epics and implementation-ready storiescode-sprint — Populate and track sprint status from epicsImplementation Phase:
code-dev — Implement a story (full mode) or execute a quick task (quick-dev mode)code-review — Run adversarial code review before mergeEnforce these gates before advancing phases:
| Gate | Requirement |
|---|---|
| Before Architecture | PRD validated (>85% score, no critical gaps) |
| Before Stories | PRD + Architecture both complete |
| Before Sprint | Epics and stories created in epics.md |
| Before Merge | Code review completed, 0 critical issues, >80% test coverage |
config.yaml before starting a new projectcode-reviewcode-dev quick mode for tasks <1 day; full mode for tasks >1 dayartifacts_folderUser: "I need to build a new SaaS product"
→ Invoke code-method, then route to code-brief → code-prd
User: "Which CODE Method skill handles sprint tracking?"
→ Describe code-sprint, provide usage example
User: "Set up CODE Method on my project"
→ Create .code-method/config.yaml, explain the agent roster and workflow sequence
User: "I have a PRD and architecture done, what's next?"
→ Route to code-stories
User: "Quick bug fix needed"
→ Route to code-dev (quick-dev mode)