Claude Code plugin marketplace with a structured development pipeline
npx claudepluginhub foyzulkarim/skillsA structured development pipeline: task bootstrapping, project planning, feature planning, task generation, TDD implementation, and code review
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
Share bugs, ideas, or general feedback.
A plugin marketplace for Claude Code with a structured development pipeline.
/add-marketplace foyzulkarim/skills
A complete development workflow from project planning to code review:
/plan-project → phased project plan (optional, for multi-feature work)
/start-task → sync main, create branch, gather context (opt-in, per task)
/plan-feature → feature-level plan
/generate-tasks → TDD-ready task specs
/tdd → implementation
/review → verification
| Skill | Description |
|---|---|
| /plan-project | Strategic project planning — explores problem space, maps domain, decomposes into phases |
| /start-task | Start a task — syncs main, gathers context from Jira (via acli), GitHub (via gh), or local specs, creates and pushes a branch |
| /plan-feature | Feature-level planning — uncovers requirements, edge cases, failure modes, constraints |
| /generate-tasks | Transform plans into TDD-ready task specs embedded in plan documents |
| /tdd | Collaborative or autonomous TDD — RED-GREEN-REFACTOR, one test at a time |
| /review | Triage-first code review — up to 14 checks, pipeline or general mode |
| /commit | Standalone commit assistant — stages files, drafts conventional commit message, executes after confirmation |
/install-plugin foyzulkarim/skills dev-pipeline
dev-pipeline/
├── .claude-plugin/
│ ├── plugin.json ← plugin identity
│ └── marketplace.json ← marketplace entry
├── skills/
│ ├── plan-project/
│ │ └── SKILL.md
│ ├── start-task/
│ │ └── SKILL.md
│ ├── plan-feature/
│ │ └── SKILL.md
│ ├── generate-tasks/
│ │ └── SKILL.md
│ ├── tdd/
│ │ └── SKILL.md
│ └── review/
│ └── SKILL.md
└── README.md
dev-pipeline/skills/<skill-name>/dev-pipeline/.claude-plugin/plugin.json (add an entry to the skills array)