← Back to list

issue
by takoeight0821
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: issue description: This skill should be used when the user asks to "create an issue", "write an issue", "add an issue", "log an issue", "report a bug", "document a problem", or wants to track tasks, bugs, or feature requests as GitHub issues.
Issue Writing Guidelines
Create and manage issues using GitHub Issues via the gh CLI.
Workflow
- Gather information about the issue from the user or context
- Write the issue body to a temporary file (
/tmp/issue-body.md) - Create the issue using
gh issue create --title "..." --body-file /tmp/issue-body.md - Return the created issue URL to the user
Issue Format
Use GitHub-flavored Markdown with the following structure:
## Description
<Detailed description of the issue, bug, or feature request>
## Context
<Any relevant context, steps to reproduce, or background information>
## Related Files
- `path/to/file1`
- `path/to/file2`
Creating Issues
Always write the body to a temporary file first to avoid shell escaping issues:
# Write body to tmp file (using Write tool)
# Then create issue:
gh issue create --title "Issue title" --body-file /tmp/issue-body.md
With Labels
gh issue create --title "Bug: Parser crash" --body-file /tmp/issue-body.md --label bug
With Assignees
gh issue create --title "Feature request" --body-file /tmp/issue-body.md --assignee @me
Managing Issues
List Issues
gh issue list
gh issue list --state open
gh issue list --label bug
View Issue
gh issue view 123
Close Issue
gh issue close 123
gh issue close 123 --comment "Fixed in commit abc123"
Add Comment
gh issue comment 123 --body "Progress update: ..."
Writing Good Issue Descriptions
- Be specific about the problem or feature
- Include steps to reproduce for bugs
- Mention expected vs actual behavior
- Reference related files or code when relevant
- Keep descriptions focused and actionable
- Use code blocks for error messages and code snippets
Example Issue
Title: Parser fails on empty input
Body:
## Description
The parser crashes with an index out of bounds error when given an empty string as input.
## Context
- File: `Ziku/Parser.lean`
- Error occurs in the `parse` function
- Expected: Return an empty AST or appropriate error
- Actual: Crashes with uncaught exception
## Steps to Reproduce
1. Run `ziku parse ""`
2. Observe the crash
## Related Files
- `Ziku/Parser.lean`
- `Ziku/Lexer.lean`
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon