Merged
Conversation
Co-authored-by: OpenAI Codex <codex@openai.com>
Co-authored-by: OpenAI Codex <codex@openai.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
背景
git add、git commit、git push时容易倾向并行调用,实际会因为.git/index.lock导致部分 Git 命令失败,需要在git-commitskill 中补充明确约束。变更
github-pr-issue重命名为github-cli,将gitlab-mr-issue重命名为gitlab-cli。gitlab-cli中补充 wiki 场景,明确优先检查glab子命令,不足时使用glab api。AGENTS.md中对具体 skill 的直接引用,仅保留平台交互应优先使用官方 CLI 或 API、且尽量非交互的原则。git-commit中新增 Git 写操作默认串行执行的约束,明确避免并行触发多个git add、git commit、git push,并补充index.lock相关处理说明与顺序执行示例。验证