在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:811
forks:47
updated:2026年1月29日 21:59
SKILL.md
| name | fix-github-issue |
| description | Fix a GitHub issue by number. Use when asked to fix GitHub issues. |
| disable-model-invocation | true |
| allowed-tools | Read, Grep, Glob, Bash(gh issue view *), Bash(gh pr view *), Bash(git status), Bash(git diff *), Bash(git log *), Bash(git branch *), Bash(git checkout *) |
Usage: /fix-github-issue ISSUE_NUMBER
Example: /fix-github-issue 276
Fix GitHub issue $ARGUMENTS following best practices.
Setup:
.claude/PROJECT_CONTEXT.md for AgnosticUI structure, conventions, and workflowsSteps:
Verify we're starting from a clean state:
git status to ensure working directory is cleanmaster branchCreate a feature branch:
issue-$ARGUMENTS/descriptive-nameissue-276/fix-button-variantgit checkout -b issue-$ARGUMENTS/[short-description]Analyze the issue:
gh issue view $ARGUMENTS to fetch full issue detailsInvestigate the codebase:
v2/lib/src/components/Propose the fix:
Implement only after approval:
Prepare commit:
git addInform user about next steps:
issue-$ARGUMENTS/...git diff mastergit push -u origin issue-$ARGUMENTS/...gh pr create --base master --head issue-$ARGUMENTS/...Important Rules:
Implement a playbook from its PROMPT specification files. Supports both single-framework (PROMPT-REACT.md, etc.) and 3-framework (PROMPT-3-FRAMEWORKS.md) modes.
Design and implement a new feature or component from a GitHub issue. Use for net-new functionality, not bug fixes.
Review component for accessibility issues
Explain what code does in plain English
Update component documentation when code changes