원클릭으로
spec
Convert GitHub Issue to spec.md with Why/AC/Non-goals/Constraints. Use after Issue is created or /issue-draft is done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Convert GitHub Issue to spec.md with Why/AC/Non-goals/Constraints. Use after Issue is created or /issue-draft is done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | spec |
| description | Convert GitHub Issue to spec.md with Why/AC/Non-goals/Constraints. Use after Issue is created or /issue-draft is done. |
| user-invocable | true |
Converts a GitHub Issue (or ISSUE_DRAFT.md) into a structured spec.md.
# [Feature/Fix Name]
## Summary
[1-2 line overview of what this is]
## Why
[Background and motivation - keep it short]
## Acceptance Criteria
- [ ] [Copied from Issue, or improved if vague]
- [ ] [Observable outcomes preferred]
- [ ] [3-5 specific criteria]
## Non-goals
- [What we won't do - 2-4 items]
## Constraints
- [Technical/business constraints - 1-3 items]
## Open Questions
- [Any remaining ambiguities to resolve]
Input (ISSUE_DRAFT.md):
## Problem / Why
Users need to convert snake_case to camelCase for API payloads.
## Acceptance Criteria
- [ ] Function converts "hello_world" to "helloWorld"
- [ ] Handles empty strings
- [ ] Make test passes
Output (spec.md):
# Add snake_case to camelCase conversion
## Summary
Utility function to convert snake_case strings to camelCase.
## Why
API payloads require camelCase formatting, but our internal code uses snake_case.
## Acceptance Criteria
- [ ] to_camel_case("hello_world") returns "helloWorld"
- [ ] to_camel_case("") returns ""
- [ ] All tests pass with make test
## Non-goals
- kebab-case conversion
- PascalCase conversion
## Constraints
- Must work with Python 3.9+
Create GitHub Issue with complete specification (Background/AC/Non-goals/Constraints). Asks clarifying questions, outputs ISSUE_TITLE.txt and ISSUE_WITH_SPEC.md ready to post.
Create GitHub Issue draft with AC/Non-goals/Tasks. Use when starting from vague requirements - asks clarifying questions if needed. Also used internally by create-issue skill.
Implement from Issue specification. Creates plan.md (scope gate), implements code, runs tests, generates PR_DRAFT.md. Use after Issue is created or ISSUE_WITH_SPEC.md exists.
Implement from plan.md, run tests, generate PR_DRAFT.md with actual verification results. Use when ready to code.
Create plan.md from spec.md defining PR scope (will/won't do, files, verification). Use before implementation.