agent/claude/issue/.claude-plugin/plugin.json
Snider 0e86ec4996
feat(plugin): add github issues integration (#69)
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.
2026-02-02 07:14:21 +00:00

22 lines
418 B
JSON

{
"name": "issue",
"description": "Integration with GitHub Issues",
"commands": [
{
"name": "list",
"description": "List open issues"
},
{
"name": "view",
"description": "View issue details"
},
{
"name": "start",
"description": "Start working on an issue"
},
{
"name": "close",
"description": "Close an issue with a commit"
}
]
}