Quick GitHub issue creation. Use when user says "new issue", "create issue", "file issue", "open issue", or wants to create a GitHub issue quickly.
Scanned 5/31/2026
Install via CLI
openskills install Soul-Brews-Studio/arra-oracle-skills-cli---
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
No comments yet. Be the first to comment!