Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기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>)