Brad's Custom Claude Plugins for Productivity, Development, and Education
npx claudepluginhub bradleyboehmke/brads-marketplaceTools for developing plugins that align with Personal marketplace architecture
Enforce Standard Git and GitHub collaboration practices
Generates various types of documentation including ADRs, architecture diagrams, changelogs, READMEs, tutorials, and API documentation for Personal projects
Tools for documenting project work sessions with structured notes and templates
Tools for creating educational content for data science, ML, AI, and MLOps courses
Curated collection of 129 specialized Claude Code subagents organized into 10 focused categories
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
Personal collection of Claude Code plugins for productivity, development workflow automation, and documentation.
This marketplace provides AI-powered agents, skills, and commands to accelerate software development. Built on a modern plugin architecture with specialized agents and progressive knowledge disclosure, the marketplace includes tools for:
brads-marketplace/
├── .claude-plugin/ # Marketplace configuration
├── {plugin-name}/ # Each plugin directory contains:
│ ├── agents/ # Domain expert AI personas
│ ├── commands/ # User-facing slash commands
│ └── skills/ # Reusable knowledge modules
├── docs/ # Documentation (see below)
└── README.md
Plugins: git-workflow, document-generator, marketplace-dev, note-taker, course-builder
| Plugin | Description | Key Commands |
|---|---|---|
| git-workflow | Automate Git/GitHub workflows with standards enforcement | draft-commit, draft-pr, create-branch, pre-commit-check |
| document-generator | Generate and maintain project documentation | generate-readme, generate-changelog, generate-adr, generate-architecture-diagram |
| marketplace-dev | Build and validate marketplace plugins | design-plugin, review-plugin, update-plugin-docs |
| note-taker | Create structured notes from work sessions | document-work |
| course-builder | Create educational content for data science courses | write-chapter, create-lab-nb, create-quiz, create-slides |
For detailed information about each plugin, see Plugin Documentation.
To add this marketplace to your Claude Code installation:
claude plugin marketplace add https://github.com/bradleyboehmke/brads-marketplace
Or from a local directory:
claude plugin marketplace add /path/to/brads-marketplace
Once the marketplace is added, install specific plugins:
claude plugin install git-workflow@brads-marketplace
claude plugin install document-generator@brads-marketplace
claude plugin install marketplace-dev@brads-marketplace
claude plugin install note-taker@brads-marketplace
claude plugin install course-builder@brads-marketplace
View all available plugins:
claude
/plugin list
# Navigate to any project
cd /path/to/your/project
# Create a properly-named branch
/git-workflow:create-branch
# Make your changes, then draft a commit
/git-workflow:draft-commit
# Create a pull request
/git-workflow:draft-pr
# Generate or update documentation
/document-generator:generate-readme
/document-generator:update-changelog
Built on a three-layer architecture:
/git-workflow:draft-commit)Key principles: Single responsibility, progressive disclosure, composability, minimal token usage.
For detailed architecture patterns, see Architecture Guide.
Comprehensive documentation is available in the docs/ directory:
Want to add a new plugin? Use the built-in design tool:
/marketplace-dev:design-plugin
This interactive command will guide you through plugin architecture, identify reusable skills, and generate an implementation plan.
For detailed contribution guidelines, see Architecture Guide.