create-issue
스타10
포크0
업데이트2026년 4월 22일 10:04
Create a new issue (ticket, bug, feature request).
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Create a new issue (ticket, bug, feature request).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Add a comment to an issue.
Document a completed issue in the wiki (functional, technical, decision, solution).
Summarize a ticket's history, description, comments, and status.
Summarize recent activity across issues and commits.
Start tracked work: find/create ticket, set in-progress, track progress in comments.
Bump the tracker VERSION (semver) so update-check hook notifies existing installs.
SOC 직업 분류 기준
| name | create-issue |
| description | Create a new issue (ticket, bug, feature request). |
| argument-hint | <title> |
| allowed-tools | Read, Write, Glob, Grep, Edit, Bash |
Create a new issue in the project tracker.
.project/config.json to get the project prefix and team infoPROJECT_SLUG env var (run echo $PROJECT_SLUG if needed)slug fieldinit.sh --update to register.project/counters/{slug}.json for your next issue number (create the file with {"nextId": 1} if it doesn't exist).project/issues/{PREFIX}-{slug}-{NUMBER}/issue.json with:
PREFIX-slug-NUMBER, e.g. PROJ-rp-1), title, type (feature/bug/task), status (backlog), priority (medium)description.md with the issue title as heading. Include only sections with real content — "What was requested" is the one consistent requirement. Skip empty "Acceptance criteria / Technical approach / Context" stubs..project/counters/{slug}.json (NOT in config.json).project/issues_index.json (create as [] if missing). Add an entry with: id, title, type, status, priority, assignee, labels, parent, created, updated. Sort by updated descending. Write back./create-issue Fix login redirect loop creates a new bug in backlog with ID like PROJ-rp-1.