用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/spiriMirror/libuipc --skill fix-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fix-issue |
| description | Fix a GitHub issue with proper branch, testing, and PR workflow |
| disable-model-invocation | true |
If no issue number is provided, list and ask the developer to pick:
gh issue list --repo spiriMirror/libuipc
gh issue view <ISSUE_NUMBER> --repo spiriMirror/libuipc
Note: Always use --repo spiriMirror/libuipc to reference the upstream repository (works with forks). See repository-setup.mdc for details.
Determine the issue type: bug fix, feature, performance, refactor, docs, or test improvement.
git checkout -b fix/issue-<ISSUE_NUMBER>
Use feat/ prefix for features, fix/ for bugs, refactor/ for refactoring, etc.
Switch to plan mode. Analyze the issue, identify root cause, then implement the fix.
Build with the build command.
<cmake-binary-directory>/<configuration>/bin/.apps/tests/.Add new tests in apps/tests/ when the bug isn't covered by existing tests.
Rules:
Use the commit command to format, commit, and push.
Switch to review mode, review all changes, then create a PR via github-pr.md.