A curated collection of Claude Code plugins for Git workflows and developer productivity.
/plugin marketplace add davidgaribay-dev/code-shelf/plugin # Browse available plugins
/plugin install worktree@code-shelf # Install specific pluginInteractive git workflow with approval gates for reviewing changes, generating conventional commit messages, and pushing to remote. Uses industry best practices for commit message formatting.
Install: /plugin install git-commit-push@code-shelf
Create Git worktrees for parallel development. Creates standardized worktree structure in adjacent directory for working on multiple features simultaneously. Ideal for running multiple Claude Code sessions in parallel.
Install: /plugin install worktree@code-shelf
- Git-Focused: Specialized plugins for Git workflows and productivity
- Best Practices: Conventional commits, approval gates, and industry standards
- Developer Tools: Worktree management for parallel development
- Granular Control: Install only what you need, no bloat
claude plugin validate ./plugin marketplace add .
/plugin install worktree@code-shelf/plugin marketplace listContributions welcome! Please open an issue or PR on GitHub.
.
├── .claude/
│ ├── commands/
│ │ └── git-commit-push.md
│ └── skills/
│ └── worktree/
│ ├── SKILL.md
│ └── scripts/
│ └── create_worktree.py
├── .claude-plugin/
│ └── marketplace.json
└── README.md
- Create your plugin/skill in the appropriate directory
- Add an entry to
.claude-plugin/marketplace.json:
{
"name": "your-plugin-name",
"source": "./path/to/plugin",
"description": "What your plugin does",
"category": "productivity",
"tags": ["tag1", "tag2"],
"version": "1.0.0",
"author": {
"name": "Your Name"
},
"strict": false
}- Validate and test:
claude plugin validate .
/plugin marketplace add .
/plugin install your-plugin-name@code-shelfMIT License - see LICENSE for details
David Garibay (@davidgaribay-dev) Email: me@davidgaribay.dev
Repository: github.com/davidgaribay-dev/code-shelf
