A Claude Code plugin marketplace providing skills that extend Claude's capabilities with specialized knowledge and workflows.
Navigate and understand Django models in any codebase. Provides:
- Model discovery patterns using Grep/Glob/Read
- Field types quick reference
- Relationship navigation strategies
- Common query patterns
- Financial domain business logic (accounting, payments, banking, FX)
Automate Git workflows with Git Town. Provides:
- Feature branch creation with
git town hack - Stacked PR workflows with
git town append - Branch syncing with
git town sync - PR creation with
git town propose - Branch lineage tracking and management
- Comprehensive guidance on when to use git town vs manual git commands
Sardonic, Socratic code reviewer that pressure-tests design decisions. Provides:
- Design-level critique of naming, abstractions, and architecture
- Logic correctness analysis and edge case detection
- Performance review (N+1 queries, hot path analysis)
- Test quality assessment (coverage gaps, mock depth, parameterization)
- Systems thinking critique (coupling, downstream implications)
- Runs as an autonomous agent with read-only codebase analysis
/plugin marketplace add TheJedinator/ai-skills# Install for all projects (user scope)
/plugin install django-models@ai-skills
/plugin install git-town@ai-skills
# Or install for current project only
claude plugin install django-models@ai-skills --scope project
claude plugin install git-town@ai-skills --scope projectThis marketplace follows the Claude Code plugin format:
ai-skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
└── django-models/ # Plugin
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
└── skills/
└── django-models/
├── SKILL.md # Main skill file
└── references/ # On-demand reference material
To add a new plugin:
- Create a plugin directory at the root (e.g.,
my-plugin/) - Add
.claude-plugin/plugin.jsonwith name, version, description - Add your skills under
skills/within the plugin - Update
marketplace.jsonto include your plugin - Submit a PR
MIT License - see LICENSE