new-issue
$
npx mdskill add Soul-Brews-Studio/arra-oracle-skills-cli/new-issueInstantly create GitHub issues with customizable labels and bodies.
- Handles title extraction or prompts users when no title is provided.
- Integrates with the GitHub CLI via the gh issue create command.
- Detects worktree contexts to target the parent repository automatically.
- Displays the created issue number and direct URL to the user.
SKILL.md
.github/skills/new-issueView on GitHub ↗
--- 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 --- # /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 1. Parse title from arguments 2. If no title provided, ask user 3. Create issue: ```bash gh issue create --title "$TITLE" $EXTRA_FLAGS ``` 4. 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