Stats
Links
Categories
Strategic planning meets rapid execution - a Claude Code plugin for vision-to-code workflows
npx claudepluginhub drewdresser/ai-dev-settingsStrategic planning meets rapid execution. 10 agents, 20+ commands, 7 skills for vision-to-code workflow with main-branch development.
Strategic planning meets rapid execution. A Claude Code plugin that bridges vision-to-code workflows with main-branch development.
flowchart TB
subgraph Strategic["Strategic Planning"]
K["/ai-dev:kickoff"] --> NS["/ai-dev:north-star"]
NS --> ST["/ai-dev:strategy"]
ST --> ME["/ai-dev:metrics"]
ME --> OK["/ai-dev:okrs"]
OK --> EP["/ai-dev:epics"]
EP --> US["/ai-dev:user-stories"]
end
subgraph GitHub["GitHub"]
MS[(Milestones)]
IS[(Issues)]
end
subgraph Execution["Execution"]
PI["/ai-dev:plan-issue #123"] --> PL["/ai-dev:plan"]
PL --> WK["/ai-dev:work"]
WK --> RV["/ai-dev:review"]
RV --> CP["/ai-dev:commit-push"]
end
subgraph Output["Output"]
MAIN[("main branch")]
STRAT[("/strategy/")]
end
EP -->|creates| MS
US -->|creates| IS
IS -->|reads| PI
CP -->|pushes to| MAIN
K -->|writes| STRAT
SS["/ai-dev:sync-strategy"] -->|updates| STRAT
MAIN -.->|merged PRs| SS
This plugin combines:
# Add the marketplace
/plugin marketplace add https://github.com/drewdresser/ai-dev-settings
# Install the plugin
/plugin install ai-dev
Alternative: Clone directly
git clone https://github.com/drewdresser/ai-dev-settings.git ~/.claude/plugins/ai-dev
# Strategic planning (full 8-phase workflow)
/ai-dev:kickoff "My Project"
# Bridge GitHub Issue to implementation plan
/ai-dev:plan-issue #42
# Execute a plan with task tracking
/ai-dev:work plans/feature-name.md
# Commit and push to main
/ai-dev:commit-push
| Command | Purpose |
|---|---|
/ai-dev:kickoff | Full 8-phase strategic planning workflow |
/ai-dev:north-star | Define vision, mission, and north star |
/ai-dev:strategy | Define strategy and non-goals |
/ai-dev:metrics | Define success metrics and failure thresholds |
/ai-dev:okrs | Create quarterly OKRs |
/ai-dev:epics | Create epics (→ GitHub Milestones) |
/ai-dev:user-stories | Create user stories (→ GitHub Issues) |
| Command | Purpose |
|---|---|
/ai-dev:plan-issue | Bridge GitHub Issue → technical plan |
/ai-dev:plan | Interactive technical planning |
/ai-dev:work | Execute plan with TodoWrite tracking |
/ai-dev:review | Multi-agent code review |
/ai-dev:sync-strategy | Sync GitHub → /strategy/ docs |
| Command | Purpose |
|---|---|
/ai-dev:commit | Create conventional commit (local) |
/ai-dev:commit-push | Commit + push to main with quality gates |
/ai-dev:sync | Pull latest from origin |
| Command | Purpose |
|---|---|
/ai-dev:run-tests | Run test suite |
/ai-dev:lint-fix | Fix linting issues |
/ai-dev:security-scan | Scan for security issues |
1. /ai-dev:kickoff "MyProject"
→ Creates /strategy/VISION.md, OKRs.md, EPICS.md
→ Creates GitHub Milestones and Issues
2. /ai-dev:plan-issue #123
→ Reads issue + strategic context
→ Generates plans/issue-123-feature-name.md
3. /ai-dev:work plans/issue-123-feature-name.md
→ TodoWrite task breakdown
→ Incremental commits to main
→ Final push with quality gates
4. /ai-dev:sync-strategy
→ Updates /strategy/ with GitHub state
→ Tracks epic progress
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.