ワンクリックで
devteam-issue-new
Create a new GitHub issue with proper formatting, labels, and context from the codebase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a new GitHub issue with proper formatting, labels, and context from the codebase.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.
Detect design inconsistencies and drift from the design system. Launches the Design Drift Detector to analyze the codebase for deviations.
Coordinate UX/UI design work across platforms. Launches the UX System Coordinator to orchestrate design specialists.
Execute implementation work - plans, sprints, tasks, or ad-hoc work.
Fix a GitHub issue by number. Automatically fetches details and implements a fix.
List all development plans and their status.
| name | devteam-issue-new |
| description | Create a new GitHub issue with proper formatting, labels, and context from the codebase. |
Repository: !gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "No GitHub repo detected"
Recent issues: !gh issue list --limit 5 --json number,title,labels -q '.[] | "#\(.number) \(.title) [\(.labels | map(.name) | join(", "))]"' 2>/dev/null || echo "No issues found"
Command: /devteam:issue-new "<description>"
Create a new GitHub issue with proper formatting and labels.
/devteam:issue-new "Login button not working on mobile"
/devteam:issue-new "Add dark mode support" --label enhancement
/devteam:issue-new "Critical: SQL injection in user search" --label security
Parse the issue description from $ARGUMENTS to determine:
Issue type (from keywords):
bugenhancementperformancesecurity, priority: highpriority: highAffected area (if detectable):
area: authenticationarea: backendarea: frontendarea: databaseSearch codebase for related files and check for similar existing issues:
# Search for related code
grep -r "keyword" --include="*.py" --include="*.ts" -l
# Check for similar issues
gh issue list --search "description keywords"
# Check recent commits in related area
git log --oneline -10 -- related/paths/
Create well-structured issue body with:
gh issue create \
--title "${title}" \
--body "${body}" \
--label "${labels}"
Show created issue number, URL, labels, and suggest next steps:
/devteam:issue <number> to fix automaticallygh issue view <number> to view on GitHub| Detected Keywords | Labels Applied |
|---|---|
| bug, error, broken, not working | bug |
| add, feature, implement | enhancement |
| slow, performance, timeout | performance |
| security, vulnerability, injection | security, priority: high |
| critical, urgent | priority: high |
| docs, documentation | documentation |
--label <label>: Add specific label--assignee <user>: Assign to user--project <name>: Add to project--milestone <name>: Add to milestone/devteam:issue - Fix an existing issue automatically/devteam:bug - Diagnose and fix bugs with Bug Council