This commit introduces a new plugin for integrating with GitHub Issues. The `issue` plugin provides the following commands: - `/core:issue list`: List open issues. - `/core:issue view <number>`: View the details of a specific issue. - `/core:issue start <number>`: Start working on an issue by creating a feature branch. - `/core:issue close <number>`: Close an issue by creating a pull request. The plugin uses the GitHub CLI (`gh`) to interact with the GitHub API.
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "core-agent",
|
|
"description": "Host UK Claude Code plugin collection",
|
|
"owner": {
|
|
"name": "Host UK",
|
|
"email": "hello@host.uk.com"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "code",
|
|
"source": "./claude/code",
|
|
"description": "Core development plugin - hooks, formatting, autonomous workflows",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "collect",
|
|
"source": "./claude/collect",
|
|
"description": "Data collection via Borg CLI - /collect:github, /collect:website, /collect:excavate, /collect:papers",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "review",
|
|
"source": "./claude/review",
|
|
"description": "Code review automation - PR review, security checks",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "verify",
|
|
"source": "./claude/verify",
|
|
"description": "Work verification - ensure tests pass, no debug statements",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "qa",
|
|
"source": "./claude/qa",
|
|
"description": "Quality assurance - iterative fix loops, lint enforcement",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "ci",
|
|
"source": "./claude/ci",
|
|
"description": "CI integration - GitHub Actions, test automation",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "issue",
|
|
"source": "./claude/issue",
|
|
"description": "Integration with GitHub Issues",
|
|
"version": "0.1.0"
|
|
}
|
|
]
|
|
}
|