A Claude Code plugin marketplace of reusable skills, hooks, and project scaffolds.
This is a private repository. You need access to benjamcalvin/bootstraps on GitHub and git credentials configured (e.g. gh auth login).
For automatic plugin updates at Claude Code startup, set a GitHub token in your environment:
export GITHUB_TOKEN=ghp_your_token_hereWithout this, plugins still work — you just need to update manually with /plugin marketplace update bootstraps.
Add the marketplace to Claude Code:
/plugin marketplace add benjamcalvin/bootstraps
List available plugins:
/plugin marketplace list
Or open the interactive plugin manager:
/plugin
Navigate to the Discover tab to browse plugins from this marketplace.
/plugin install bootstrap-docs@bootstraps
/plugin install implement-lifecycle@bootstraps
Choose a scope when prompted:
- user (default) — available in all your projects
- project — available to anyone working on the current project
- local — only for you in the current project
Invoke a plugin's skill as a slash command:
/bootstrap-docs
/implement #42
Some skills accept arguments:
/bootstrap-docs adr
/implement #42
/implement fix the login bug
/implement 17 just review
/review-pr 17
/draft-issue add user avatar support
/cleanup-issue #42
/refine-issue #42
/plugin marketplace update bootstraps
/plugin uninstall bootstrap-docs@bootstraps
/plugin uninstall implement-lifecycle@bootstraps
/plugin uninstall issue-management@bootstraps
| Plugin | Description |
|---|---|
| bootstrap-docs | Set up a comprehensive, AI-readable documentation strategy in any project. Creates AGENTS.md, specs, ADRs, guides, plans, standards, and research templates. |
| implement-lifecycle | Full implementation lifecycle with adversarial PR review — plan, implement, PR, review/address loop, merge. |
| issue-management | Draft, clean up, and refine GitHub issues — optimized for AI agent consumption. |
Provides 6 skills and 4 reviewer agents for the complete implementation lifecycle:
Skills:
| Skill | Description |
|---|---|
/implement |
Lean orchestrator — 6-phase lifecycle (plan → implement → PR → review loop → verify → merge). Accepts #issue, PR number, or freeform task. Supports trailing instructions like "just review" or "skip planning". |
/merge-pr |
Validate, squash-merge, delete branch, and update linked GitHub issues with delivery status. |
/pr-check |
Pre-flight PR validation — branch naming, title, description, sizing, commits, references. |
Subagent skills (invoked by the orchestrator, not directly):
| Skill | Description |
|---|---|
implement-code |
Explore codebase, plan, write tests first, implement, self-review, commit, and create PR. |
implement-address |
Address filtered review findings from the referee's action plan. |
verify |
End-to-end verification — exercises the real running system, checks downstream effects, regression tests existing flows. |
Reviewer agents (invoked in parallel during the review loop):
| Agent | Focus |
|---|---|
review-correctness |
Logic bugs, edge cases, error handling, race conditions |
review-security |
AuthZ, injection risks, PII handling, spec conformance |
review-architecture |
Pattern consistency, module boundaries, coupling, forward-looking design |
review-testing |
Test coverage, assertion quality, edge cases, test anti-patterns |
Provides 3 skills for GitHub issue quality:
| Skill | Description |
|---|---|
/draft-issue |
Create well-structured GitHub issues with testable acceptance criteria, optimized for /implement consumption. |
/cleanup-issue |
Fix formatting, fill missing sections, and clarify ambiguity in existing issues. |
/refine-issue |
Deepen an issue with codebase research — sharpen acceptance criteria, add implementation hints, decompose into sub-tasks. |
MIT