Agent Skills
› CopilotKit/OpenTag
› fix-ci
fix-ci
GitHub用于在沙箱中复现失败的 GitHub CI 检查,通过修改代码使其通过并返回绿色状态。若无法修复则返回日志尾部信息。
Trigger Scenarios
用户明确要求修复 CI 失败
Brief 中包含 fix-ci
用户希望让失败的 CI 命令退出码为 0
Install
npx skills add CopilotKit/OpenTag --skill fix-ci -g -y
SKILL.md
Frontmatter
{
"name": "fix-ci",
"description": "Reproduce a red GitHub check and make it green. Use when the brief skill is fix-ci or the user wants a failing CI command to exit 0."
}
fix-ci
Reproduce a red GitHub check in the sandbox and make it green.
- Call
prepare_repository, includingpr_numberfor an existing PR. - If the brief names a failing check, reproduce that command. Use the read-only GitHub Actions tools if you need its log. Never use
gh. - Work on the returned safe head branch.
- Edit until the reproduced command exits 0.
- If green, commit locally and call
publish_changes. - If red, do not call
publish_changes. Return the log tail.
Version History
- 6a770d8 Current 2026-08-19 13:54


