By oxidian
Automate GitHub workflows using gh CLI: create typed issues with milestones/projects, triage issues by priority/size/component, commit changes to new branches and open PRs, detect PRs for AI code review, auto-merge clean PRs, or generate TDD fix plans for top issues.
Create GitHub Issue
Wait for AI code review on a PR — auto-merge if clean, fix issues if not
Commit, push, and open a pull request
Commit, push, and open a pull request with auto-merge
Triage a GitHub issue (set component, priority, size, milestone)
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A Claude Code plugin marketplace providing commit workflows, code quality hooks, and platform-specific commands for Oxidian projects.
cd your-project/
claude
> Install github.com/oxidian/cc-plugins in this project following instructions in the README
| Plugin | Purpose |
|---|---|
| ox | Base plugin — commit skill, code quality hooks, auto-format and checks |
| oxgh | GitHub workflow — PR, issue, triage, review, and merge skills |
| oxgl | GitLab workflow — MR, issue, review, and merge skills |
Add to .claude/settings.json:
{
"extraKnownMarketplaces": {
"oxidian": {
"source": {
"source": "git",
"url": "https://github.com/oxidian/cc-plugins.git"
}
}
},
"enabledPlugins": {
"ox@oxidian": true,
"oxgh@oxidian": true
}
}
Enable whichever plugins you need:
ox@oxidian — Base plugin (recommended)oxgh@oxidian — GitHub workflowsoxgl@oxidian — GitLab workflowsPlugins do not auto-update by default. To enable auto-updates, use the Claude Code interface (/plugins command) to configure update settings.
Create .claude/ox-hooks.json to configure the check commands that run before Claude stops:
Single project:
{
"checks": [
{
"fast": "make format",
"slow": "make check"
}
]
}
Monorepo with scoped commands:
{
"checks": [
{
"directory": "packages/api",
"fast": "npm run lint --fix",
"slow": "npm test"
},
{
"directory": "packages/web",
"fast": "npm run lint --fix",
"slow": "npm test"
}
]
}
See .claude/ox-hooks.json for a working example.
gh)glab)npx claudepluginhub oxidian/cc-plugins --plugin oxghGitLab workflow — MR, issue, and merge skills using glab CLI
GitHub project operations with quality gates.
Git workflows - commits, branches, PRs, issue processing, auto-close detection, and repository management
GitHub CLI integration with focused skills for pull requests, issues, GitHub Actions, and viewing GitHub file URLs
Git and PR workflows with code review, onboarding, and PR enhancement
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques