Formats GitHub issue titles and descriptions for tracking problems that were fixed. Use when proposing or implementing code changes, creating GitHub issues, or when the user asks for issue suggestions.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Formats GitHub issue titles and descriptions for tracking problems that were fixed. Use when proposing or implementing code changes, creating GitHub issues, or when the user asks for issue suggestions.
Issue Format
Template (copy this structure exactly)
Raw markdown:
> **GitHub issue:**
> - **Title:** `Short issue title here`
> - **Description:** Description sentence one. Sentence two with `codeRef()` references.
Rules
Use markdown blockquote (> prefix) — no exceptions
Title goes after **Title:** wrapped in exactly ONE backtick pair
NEVER put backticks inside the title — the whole title is one code span, no nesting
Description uses backticks for code references — title does NOT
Title: as short as possible
Description: 2-3 sentences about the problem (not the solution), present tense
Wrong vs Right
❌ WRONG — missing backticks around title:
> - **Title:** Mod queue should use /modqueue instead of /queue
❌ WRONG — backticks around individual words instead of whole title:
> - **Title:** Mod queue should use `/modqueue` instead of `/queue`
✅ CORRECT — entire title in one backtick pair, no backticks inside:
> - **Title:** `Mod queue should use /modqueue instead of /queue`
Self-check
Before outputting, verify:
Lines start with >
Title is wrapped in exactly one backtick pair: `like this`
No backticks inside the title text
Code references in description (not title) use backticks