在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用fix-issue
星标0
分支0
更新时间2026年4月7日 00:31
Diagnose and fix a GitHub issue
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Diagnose and fix a GitHub issue
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | fix-issue |
| description | Diagnose and fix a GitHub issue |
| argument-hint | [issue-number] |
| allowed-tools | Bash, Read, Edit, Write, Grep, Glob |
| user-invocable | true |
Diagnose and fix a GitHub issue for the Tricorder project.
Arguments: $ARGUMENTS is the issue number (e.g., 42)
Get issue details: Read the issue description and any comments to understand the bug or feature request.
Search the codebase for relevant code:
Reproduce (if applicable):
PYTHONPATH=src python -m pytest <test-file> -vImplement the fix:
Write or update tests:
tests/conftest.py for fixturesVerify:
PYTHONPATH=src python -m pytest tests/ --cov=src --cov-fail-under=85 -v
ruff check src/ tests/
Commit with a message referencing the issue:
fix: <description> (fixes #<issue-number>)