pull-request
Installation
SKILL.md
flowchart TB
A(["BEGIN"]) --> B["当前分支有没有 dirty change?"]
B -- 有 --> D(["END"])
B -- 没有 --> n1["确保当前分支是一个不同于 main 的独立分支"]
n1 --> n2["根据当前分支相对于 main 分支的修改,push 并提交一个 PR(利用 gh 命令),用英文编写 PR 标题和 description,描述所做的更改。PR title 要符合先前的 commit message 规范(PR title 就是 squash merge 之后的 commit message)。"]
n2 --> D
Related skills
More from moonshotai/kimi-cli
gen-docs
Update Kimi Code CLI user documentation.
32release
Execute the release workflow for Kimi Code CLI packages.
4translate-docs
Translate and sync bilingual documentation.
4worktree-status
Audit all git worktrees in the current project. Use when the user asks about worktree status, which branches are merged, which have uncommitted changes, or which worktrees can be safely cleaned up.
4gen-rust
Sync Rust implementation with Python changes (exclude UI/login) by reviewing recent changes, mapping modules, porting logic, and updating tests.
3feature-smoke-test
针对 Kimi Code CLI 的新增或变更功能,规划并执行可重复的端到端冒烟测试。从 git diff 推断功能边界,读取相关文档和代码,设计测试 prompt,以 --print 非交互模式运行本地 CLI,检查进程退出码和 session 产物,总结预期与实际行为之间的差异。发现问题时自动启动多路并行探查以定位根因。
3