npx claudepluginhub vkkotha/claude-skillsGit worktree skill for Claude Code - Create isolated worktrees for PRs, branches, tags, or commits
Bitbucket Cloud PR operations skill for Claude Code - List, review, and manage pull requests on Bitbucket Cloud (bitbucket.org). Auto-detects repository platform and redirects to appropriate skill if not Bitbucket Cloud.
Bitbucket Data Center PR operations skill for Claude Code - List, review, and manage pull requests on self-hosted Bitbucket Server/Data Center. Auto-detects repository platform and redirects to appropriate skill if not Bitbucket Data Center.
GitHub PR operations skill for Claude Code - List, review, and manage pull requests on GitHub. Auto-detects repository platform and redirects to appropriate skill if not GitHub.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
Share bugs, ideas, or general feedback.
A collection of developer productivity skills for Claude Code including GitHub, Bitbucket PR review and git worktree management.
| Plugin | Description |
|---|---|
| git-plugin | Create isolated git worktrees for PRs, branches, tags, or commits |
| bitbucket-plugin | PR operations for Bitbucket Cloud (bitbucket.org) |
| bitbucket-datacenter-plugin | PR operations for self-hosted Bitbucket Server/Data Center |
| github-plugin | PR operations for GitHub |
# Add the marketplace
/plugin marketplace add https://github.com/vkkotha/claude-skills
# Install individual plugins
/plugin install git-plugin@cdskit-marketplace
/plugin install bitbucket-plugin@cdskit-marketplace
/plugin install bitbucket-datacenter-plugin@cdskit-marketplace
/plugin install github-plugin@cdskit-marketplace
For testing or development, load a plugin directly without installing:
# Clone the repository
git clone https://github.com/vkkotha/claude-skills.git
# Run Claude Code with a specific plugin
claude --plugin-dir ./claude-skills/git-plugin
claude --plugin-dir ./claude-skills/bitbucket-plugin
claude --plugin-dir ./claude-skills/bitbucket-datacenter-plugin
claude --plugin-dir ./claude-skills/github-plugin
Git utility for creating isolated worktrees. Features:
Prerequisites: Git 2.5+ and Bash.
Usage:
"Create a worktree for PR 456"
"Help me inspect branch feature/login"
Pull request operations for Bitbucket Cloud (bitbucket.org). Features:
Prerequisites: Requires the Bitbucket Cloud MCP server.
export BITBUCKET_USERNAME="your-username"
export BITBUCKET_APP_PASSWORD="your-app-password"
Usage:
"Review PR 123"
"List open PRs"
"Approve PR 456"
Pull request operations for self-hosted Bitbucket Server/Data Center. Features:
Prerequisites: Requires the Bitbucket Data Center MCP server.
export BITBUCKET_USERNAME="your.email@company.com"
export BITBUCKET_TOKEN="your-http-access-token"
export BITBUCKET_BASE_URL="https://bitbucket.yourcompany.com"
Usage:
"Review PR 123"
"List open PRs"
"Approve PR 456"
Pull request operations for GitHub. Features:
Prerequisites: Requires the GitHub MCP server.
export GITHUB_PERSONAL_ACCESS_TOKEN="your-token"
Creating a GitHub Personal Access Token:
repo, read:org, read:userUsage:
"Review PR 123"
"List open PRs"
"Approve PR 456"
# Load plugin for development/testing
claude --plugin-dir ./claude-skills/git-plugin
# Load multiple plugins
claude --plugin-dir ./claude-skills/git-plugin --plugin-dir ./claude-skills/github-plugin
In hooks, MCP servers, and skill scripts, use ${CLAUDE_PLUGIN_ROOT} to reference the plugin directory:
"${CLAUDE_PLUGIN_ROOT}/skills/git-worktree/setup-worktree.sh" --pr 558
Contributions are welcome! To add a new skill:
<your-skill-name>.claude-plugin/plugin.json with plugin metadataskills/<skill-name>/SKILL.md with YAML frontmatter and instructionsmarketplace.json with the new pluginREADME.md with skill documentationCreate folder structure:
my-skill/
├── .claude-plugin/
│ └── plugin.json
└── skills/
└── my-skill/
└── SKILL.md