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.
11 lines
206 B
Markdown
11 lines
206 B
Markdown
---
|
|
name: start
|
|
description: Start working on an issue
|
|
hooks:
|
|
PreToolUse:
|
|
- hooks:
|
|
- type: command
|
|
command: "${CLAUDE_PLUGIN_ROOT}/scripts/start.sh"
|
|
---
|
|
|
|
# Start working on an issue
|