create-issue
Create a GitHub issue following project conventions. Use when creating issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a GitHub issue following project conventions. Use when creating issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Load when developing API endpoints, designing request/response DTOs, creating controllers, or working with BaseResponse wrapper and exception handling patterns.
Load when designing new domains or modules, refactoring architecture, working with Clean Architecture layers, ports/adapters pattern, or cross-domain communication.
Commit, push, and open a PR following project conventions. Use when creating pull requests.
GitHub PR의 코드 리뷰 코멘트를 읽어와 피드백을 반영하고, 각 코멘트에 답글을 남깁니다.
프로젝트 컨벤션에 맞는 일관된 커밋 메시지를 생성하고 커밋을 수행합니다.
Load when working with environment settings, application profiles (local/staging/prod), Jasypt encryption, secrets management, or infrastructure configuration.
| name | create-issue |
| description | Create a GitHub issue following project conventions. Use when creating issues. |
ls .github/ISSUE_TEMPLATE/cat .github/ISSUE_TEMPLATE/feature.ymlcat .github/ISSUE_TEMPLATE/bug.ymlcat .github/ISSUE_TEMPLATE/chore.ymlcat .github/ISSUE_TEMPLATE/docs.ymlFormat: {type}: 설명
| Type | 용도 | Label |
|---|---|---|
feat | 새로운 기능 | enhancement |
fix | 버그 수정 | bug |
docs | 문서 작업 | documentation |
chore | 리팩토링, 설정 등 | (none) |
Examples:
feat: 사진 복제 APIfix: 읽기 전환 및 folder_id 컬럼 제거chore: GitOps 배포 파이프라인 적용.github/ISSUE_TEMPLATE/ 의 해당 type template을 읽고, template의 필드 구조에 맞춰 body를 작성한다.
Parent issue가 지정된 경우, issue 생성 후 parent에 sub-issue로 연결한다:
gh api graphql -f query='mutation { addSubIssue(input: {issueId: "{parent_node_id}", subIssueId: "{new_issue_node_id}"}) { issue { id } } }'
항상 --assignee @me로 본인에게 할당한다.
.github/ISSUE_TEMPLATE/{type}.yml)을 읽는다.gh issue create로 issue를 생성한다:
--title: convention에 맞는 제목--label: type에 해당하는 label--assignee @me--body: template 기반 내용