todo
Add a new bug or todo to the project's tracker
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Add a new bug or todo to the project's tracker
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Build a lightweight single-file web application with no external dependencies
Walk through project setup improvements for efficient AI-assisted development
Set up automated cross-platform binary releases for a Go project
Work through a project's bug list autonomously, fixing bugs in priority order
Generate or update project README documentation
Evaluate code quality with letter grades across multiple dimensions
SOC 직업 분류 기준
| name | todo |
| description | Add a new bug or todo to the project's tracker |
| argument-hint | <description of the bug or task> |
Add a well-written bug or task to the project's tracker. Takes a short description, enriches it with codebase context, assigns an appropriate priority, and commits.
/todo something is broken when I do X
/bug the file tree flickers on resize
/todo add support for multiple cursors
The argument is a rough description. You will enrich it into a proper bug entry.
Locate the project's bug/todo tracker. Check in order:
bugs.md, BUGS.md, TODO.md, todo.md, ISSUES.md, or similar in the repo root and docs/ directoryCLAUDE.md, CONTRIBUTING.md, README.md for pointers to where bugs are trackedgh issue list --state open --limit 5 to check if the project uses GitHub IssuesIf no tracker is found, ask the user where to put it.
Remember which tracker type you found (file or GitHub Issues) for Step 4.
Read the existing tracker to understand:
Match the existing style exactly. Do not invent new formatting.
Take the user's rough description and write a proper tracker entry:
Understand the issue: Use Grep/Glob/Read to find the relevant code. Understand what the user is describing — find the actual file, function, or behavior involved.
Assign priority: Based on impact and the project's priority scheme:
When in doubt, lean toward the higher priority (more severe). Users report things because they matter to them.
Write clearly: The entry should include:
Match format: Use the exact same markdown structure, heading level, and field names as existing entries in the tracker.
git add bugs.md # or whatever the file is
git commit -m "Add P2 bug: <short description>"
git push
gh issue create:
gh issue create --title "<title>" --body "<body>"
Tell the user: