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.
npx claudepluginhub oxidian/cc-plugins --plugin oxghCreate 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)
Wait for AI code review on a PR, analyze findings, and offer to address issues
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)GitLab workflow — MR, issue, and merge skills using glab CLI
Share bugs, ideas, or general feedback.
GitHub project operations with quality gates.
Git workflows - commits, branches, PRs, issue processing, auto-close detection, and repository management
GitHub CLI operations and repository management
Work on issues from GitHub, Linear, or GitLab
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques