by foyzulkarim
Personal Claude Code plugin marketplace
# Add to your Claude Code skills
git clone https://github.com/foyzulkarim/skillsA 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
No comments yet. Be the first to share your thoughts!
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)