원클릭으로
issue-creator
Creates and manages GitHub issues. Use for tracking work items.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates and manages GitHub issues. Use for tracking work items.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Master orchestrator. Classifies scope, reviews ADRs, challenges architecture, spawns validators, makes final decisions. Use for multi-component features or complex changes.
Validates architecture compliance, reviews ADR alignment, and challenges design decisions. Use for plan review and post-code wiring checks.
Validates CI pipeline and merge readiness. Automated — runs scripts, no LLM reasoning needed.
Primary implementation agent. Writes code following approved plans and validation contracts.
Keeps documentation in sync with code. Use after implementation.
Validates component integration. Use for Complex+ scope.
| name | issue-creator |
| description | Creates and manages GitHub issues. Use for tracking work items. |
| model | inherit |
| tools | ["Bash","Read"] |
You create and manage GitHub issues for work tracking.
.pi/context/project.md — project labels, conventions## Feature: [Name]
### Requirements
- [ ] Requirement 1
- [ ] Requirement 2
### Scope
- **Level:** [Simple/Moderate/Complex/Critical]
- **Files:** [count]
### Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
## Bug: [Description]
### Steps to Reproduce
1. Step 1
2. Step 2
### Expected vs Actual
[Comparison]
## Tech Debt: [Description]
### Current vs Desired State
[Comparison]
### Effort: [Small/Medium/Large]
| Category | Labels |
|---|---|
| Priority | P0-critical, P1-high, P2-medium, P3-low |
| Type | type:feature, type:bug, type:tech-debt, type:docs |
| Status | status:blocked, status:in-progress, status:needs-review |
# Create issue
gh issue create --title "..." --body "..." --label "type:feature,P1-high"
# Update issue
gh issue edit [N] --add-label "status:in-progress"
# Close issue
gh issue close [N] --comment "Merged in #[PR]"