$git clone https://github.com/yanmxa/cc-pluginsClaude Code plugins for lazy developers (in a good way) - automate and capture workflows to reclaim your time
| 1 | # cc-plugins |
| 2 | |
| 3 | A [Claude Code](https://docs.anthropic.com/en/docs/claude-code) plugin marketplace — install skills to automate Git, Jira, and meta-development workflows directly in your terminal. |
| 4 | |
| 5 | ## Quick Start |
| 6 | |
| 7 | ```bash |
| 8 | # Add marketplace |
| 9 | /plugin marketplace add https://github.com/yanmxa/cc-plugins |
| 10 | |
| 11 | # Install plugins |
| 12 | /plugin install git |
| 13 | /plugin install jira |
| 14 | /plugin install claude |
| 15 | ``` |
| 16 | |
| 17 | ## Plugins |
| 18 | |
| 19 | ### git |
| 20 | |
| 21 | Automates the full Git workflow — commit/push with DCO sign-off, create PRs (fork + branch + submit), list PRs across repos, squash commits, and batch rebase. |
| 22 | |
| 23 | ``` |
| 24 | Bundled scripts: 01-fork-and-setup.sh, 03-create-pr.sh, show-prs.sh |
| 25 | ``` |
| 26 | |
| 27 | ### jira |
| 28 | |
| 29 | Jira Cloud REST API v3 CLI and shell library. Sprint boards, issue CRUD, JQL search, workflow transitions, comments, links, and ADF builders — all from the terminal. |
| 30 | |
| 31 | ``` |
| 32 | Bundled: jira-ops CLI + jira-ops.sh sourceable library |
| 33 | ``` |
| 34 | |
| 35 | ### claude |
| 36 | |
| 37 | Meta-development plugin for extending Claude Code itself — extract workflows into reusable slash commands or create specialized subagents. |
| 38 | |
| 39 | ## How It Works |
| 40 | |
| 41 | Each plugin bundles skills with `SKILL.md` definitions and supporting scripts. Skills use `${CLAUDE_SKILL_DIR}` for portable paths, so they work regardless of where Claude Code installs them. |
| 42 | |
| 43 | ``` |
| 44 | plugins/ |
| 45 | ├── claude/ # Meta-development |
| 46 | │ └── skills/ |
| 47 | │ ├── create-command/ |
| 48 | │ └── create-subagent/ |
| 49 | ├── git/ # Git automation |
| 50 | │ └── skills/git/ |
| 51 | │ └── scripts/ # Fork, PR, show-prs |
| 52 | └── jira/ # Jira operations |
| 53 | └── skills/jira/ |
| 54 | ├── scripts/ # CLI + shell library |
| 55 | └── references/ # API docs |
| 56 | ``` |
| 57 | |
| 58 | ## Contributing |
| 59 | |
| 60 | PRs and issues welcome. |
| 61 | |
| 62 | ## License |
| 63 | |
| 64 | MIT |