用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Marshall-Hallenbeck/dot_files --skill create-github-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | create-github-issue |
| description | Use when asked to create, open, file, or draft a GitHub issue |
| argument-hint | [title] |
| disable-model-invocation | true |
Create a complete issue only after duplicate and label checks.
Gather the problem, expected behavior, actual behavior, acceptance criteria, and relevant scope. Ask for missing details only when they prevent an accurate issue.
Search open and closed issues before creating a new issue:
gh issue list --state all --search "<search terms>" --limit 20
Stop and report the existing issue when a duplicate already covers the request.
List labels that exist in the repository:
gh label list --limit 200 --json name,description
Select all clearly applicable labels from the issue title, requested behavior, and scope.
bug, enhancement, documentation, refactor, security, or tests when it accurately describes the issue.Use this structure:
## Summary
## Current Behavior
## Expected Behavior
## Acceptance Criteria
- [ ] Criterion
## Technical Notes
Create the issue with one --label "<label>" argument for each selected label:
gh issue create --title "<title>" --body "<description>" \
--label "<label>" --label "<label>"
Verify the saved labels:
gh issue view <ISSUE-NUMBER> --json labels
Compare the saved label names with the selected label names. Verification must show every selected label. If the result omits a selected label, treat verification as failed and abort.
Report the issue URL and saved labels.