version: "1.0.1" name: new-issue description: 'Quick GitHub issue creation. Use when user says "new issue", "create issue", "file issue", "open issue", or wants to create a GitHub issue quickly.' argument-hint: "<title> [--label <label>] [--body <body>]" zombie: true origin: arra-symbiosis-skills metadata: internal: true
/new-issue — Create GitHub Issue
Quick issue creation in the current repo.
Usage
/new-issue Fix login redirect bug
/new-issue "Add dark mode" --label enhancement
/new-issue --body "Detailed description here"
Steps
- Parse title from arguments
- If no title provided, ask user
- Create issue:
bash
gh issue create --title "$TITLE" $EXTRA_FLAGS
- Show result: issue URL + number
Auto-detect
- If in a worktree, create issue in the parent repo (not the worktree)
- If
--label not provided, skip labels - If
--body not provided, generate a brief body from context
Output
Created #N: <title>
https://github.com/org/repo/issues/N
ARGUMENTS: $ARGUMENTS