用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/yofine/Mexus --skill gh-issue-resolve命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | gh-issue-resolve |
| description | Analyze a GitHub issue and implement the fix in code. Use when the user says "fix issue |
| user-invocable | true |
| allowed-tools | ["Bash(gh issue view*)","Bash(gh repo view*)","Bash(git log*)","Bash(git diff*)","Bash(git status*)","Read","Write","Edit","Glob","Grep"] |
Read the issue, diagnose, and produce a code change. Arguments passed: $ARGUMENTS.
Parse $ARGUMENTS for the issue number (#N, N, or full URL). If missing, ask.
Load issue: gh issue view <N> --repo <owner/repo> --json title,body,labels,comments. Read the body AND all comments — clarifications usually live in comments.
Classify the issue into one of:
/gh-issue-reply instead.Diagnose before coding:
Implement: make the minimum change that fixes the reported behavior. Follow the repo's existing style and CLAUDE.md conventions. Do NOT:
Verify locally if feasible: typecheck, lint, or run the specific test. If the repo has no obvious verification command, skip — don't invent one.
Report to the user:
/gh-push to commit and push, then /gh-issue-reply #N to notify the reporter" — but do not auto-chain. Let the user drive./gh-push's job.