Agent Skills
› CopilotKit/OpenTag
› merge-main
merge-main
GitHub将 origin/main 合并至工作分支,通过 Daytona 同步基础代码,解决冲突并运行测试,根据测试结果发布更改或返回日志。
触发场景
需要合并主干到当前分支
用户明确要求 merge-main
安装
npx skills add CopilotKit/OpenTag --skill merge-main -g -y
SKILL.md
Frontmatter
{
"name": "merge-main",
"description": "Merge origin\/main into the working branch. Use when the brief skill is merge-main or the user wants latest main merged into a PR branch."
}
merge-main
Merge origin/main into the working branch from the brief.
- Call
prepare_repositorywith the PR or named head andsync_base: true. - The host synchronizes the base through Daytona. Never fetch or pull with Git yourself.
- Resolve conflicts with the smallest correct edits. Do not drop the PR's intent.
- Run the test command from the brief, or the repo default test command.
- If green, commit locally if needed and call
publish_changes; it reuses an existing PR. - If red, do not call
publish_changes. Return the log tail.
版本历史
- 6a770d8 当前 2026-08-19 13:55


