From gh-tools
Create a new GitHub issue in the current repository and add it to my GitHub project.
How this command is triggered — by the user, by Claude, or both
Slash command
/gh-tools:gh-create-issueThe summary Claude sees in its command listing — used to decide when to auto-load this command
Create a new GitHub issue in the current repository and add it to my GitHub project. ## Instructions: 1. Parse the issue details from my input (title, body, labels) 2. Create the issue in the current repository using `gh issue create` 3. Add the created issue to my GitHub project (number: $PROJECT_NUMBER) 4. Return the created issue URL and confirmation ## Required Information: - Issue title (required) - Issue body/description (optional) - Labels (optional, e.g., bug, enhancement, documentation) - Priority label (optional, e.g., priority-1 to priority-5) ## Commands to use: ## Example ...
Create a new GitHub issue in the current repository and add it to my GitHub project.
gh issue create# Get current repository info
REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner)
# Create issue
ISSUE_URL=$(gh issue create --repo $REPO --title "TITLE" --body "BODY" --label "LABELS")
# Add to project
gh project item-add 3 --owner ricky1698 --url $ISSUE_URL
"Create an issue: Add dark mode support to the application. This should include theme switching functionality and persist user preference. Labels: enhancement, priority-3"
npx claudepluginhub rdcrystallab/agentic-plugins --plugin gh-tools/create-issueCreates a well-structured GitHub issue interactively: prompts for type-specific details (bug/feature/task), applies templates/labels/milestones/projects, and uses GitHub API. Reports issue URL.
/create-issueCreates a formatted GitHub or GitLab issue for the current git repository from provided topic/description, lists available labels, and requires user approval before using gh or glab CLI.
/create-issueCreates a GitHub issue in the current or specified repo with title, body, labels, assignees, milestone, project, and formatted reference links from URLs. Supports interactive template mode.
/devteam-issue-newCreates a structured GitHub issue from a description, auto-classifying labels (bug, enhancement, security, priority) and areas (frontend, backend, database), using gh CLI. Reports issue URL.