npx claudepluginhub jsell-rh/agentic-development-pluginsSpec-driven development orchestration system. Zero-assumption, gate-enforced, professional execution engine.
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework
Spec-driven development orchestration system for Claude Code. Zero-assumption, gate-enforced, professional execution engine.
Agentic Development is a Claude Code plugin that orchestrates software development through specialized agents, enforcing quality gates and spec alignment at every stage. The system learns from each iteration using persistent memory.
Key Principles:
Open Claude Code, and type /plugin
> /plugin
╭─────────────────────────────────────────────────────────────────────────────────────╮
│ Plugins │
│ │
│ 1. Browse and install plugins │
│ 2. Manage and uninstall plugins │
│ ❯ 3. Add marketplace │
│ 4. Manage marketplaces │
╰─────────────────────────────────────────────────────────────────────────────────────╯
Press ↑↓ to navigate · Enter to select · Esc to exit
Navigate to 3. Add marketplace and press Enter.
Type in jsell-rh/agentic-development-plugins and press Enter.
╭─────────────────────────────────────────────────────────────────────────────────────╮
│ Add Marketplace │
│ │
│ Enter marketplace source: │
│ Examples: │
│ • owner/repo (GitHub) │
│ • git@github.com:owner/repo.git (SSH) │
│ • https://example.com/marketplace.json │
│ • ./path/to/marketplace │
│ │
│ jsell-rh/agentic-development-plugins │
╰─────────────────────────────────────────────────────────────────────────────────────╯
Enter to add · Esc to cancel
Follow the rest of the prompts and then restart Claude Code.
Invoke the orchestrator skill:
Please use the Orchestrator skill to perform development against <my-requirements.md>.
The orchestrator will guide you through the development cycle, asking clarifying questions at gates.
graph TD
A[User Requirements] --> B{Gate 0: Requirements Refiner}
B -->|FAIL| A
B -->|PASS| C[Stage 1: Repo Setup]
C --> D[Stage 2: Spec Generation]
D --> E{Gate 3: Spec Refiner}
E -->|FAIL| F{Gap Type?}
F -->|Requirements Issue| A
F -->|Spec Issue| D
E -->|PASS| G[Stage 4: Development Manager]
G --> H[Stage 5: Team Lead]
H --> I{More Tasks?}
I -->|Yes| J[Create Task Context]
J --> K[Documentation Expert<br/>Fetch Latest Docs]
K --> K2{Gate 6: Doc-Spec Alignment}
K2 -->|FAIL: Modify Spec| D
K2 -->|FAIL: Clarify| A
K2 -->|PASS| L{Task Type?}
L -->|Python| M[Python Expert]
L -->|FastAPI| N[FastAPI Expert]
L -->|Deployment| O[Deployment Expert]
L -->|Security| P[Security Expert]
L -->|Documentation| Q[Documentation Writer]
M --> R{Gate 7: Spec Alignment}
N --> R
O --> R
P --> R
Q --> R
R -->|FAIL| L
R -->|PASS| S[Team Lead: Atomic Commit]
S --> T[Check Off Task]
T --> I
I -->|No| U[Project Complete]
%% Gates in red
style B fill:#f96,stroke:#333,stroke-width:2px
style E fill:#f96,stroke:#333,stroke-width:2px
style K2 fill:#f96,stroke:#333,stroke-width:2px
style R fill:#f96,stroke:#333,stroke-width:2px
%% Agents in blue
style C fill:#69f,stroke:#333,stroke-width:2px
style D fill:#69f,stroke:#333,stroke-width:2px
style G fill:#69f,stroke:#333,stroke-width:2px
style H fill:#69f,stroke:#333,stroke-width:2px
style K fill:#69f,stroke:#333,stroke-width:2px
style M fill:#69f,stroke:#333,stroke-width:2px
style N fill:#69f,stroke:#333,stroke-width:2px
style O fill:#69f,stroke:#333,stroke-width:2px
style P fill:#69f,stroke:#333,stroke-width:2px
style Q fill:#69f,stroke:#333,stroke-width:2px
style S fill:#69f,stroke:#333,stroke-width:2px