Agent skill
gen-rust
Sync Rust implementation with Python changes (exclude UI/login) by reviewing recent changes, mapping modules, porting logic, and updating tests.
Install this agent skill to your Project
npx add-skill https://github.com/MoonshotAI/kimi-cli/tree/main/.agents/skills/gen-rust
SKILL.md
gen-rust
Use this skill when the user wants Rust (kagent/kosong/kaos) to stay logically identical to Python (kimi_cli/kosong/kaos), excluding UI and login/auth. This includes code and tests: Rust behavior and tests must be fully synchronized with Python changes.
Note: The Rust binary is named kagent. User-facing CLI/output text in Rust must use kagent
instead of kimi to match the Rust command name.
Quick workflow
- Build a complete change inventory
Review recent changes to understand what needs syncing:
# Check staged changes
git diff --cached --name-only
git diff --cached -- src packages
# Check recent commits
git log --oneline -20 -- src packages
git diff HEAD~20..HEAD -- src packages
# Review CHANGELOG.md for context
head -50 CHANGELOG.md
- Classify changes
- Exclude UI and login/auth changes (Shell/Print/ACP UI, login/logout commands).
- Everything else must be mirrored in Rust.
- Keep a small checklist: file -> change summary -> Rust target -> status.
- Map Python -> Rust
Common mappings:
src/kimi_cli/llm.py->rust/kagent/src/llm.rssrc/kimi_cli/soul/*->rust/kagent/src/soul/*src/kimi_cli/tools/*->rust/kagent/src/tools/*src/kimi_cli/utils/*->rust/kagent/src/utils/*src/kimi_cli/wire/*->rust/kagent/src/wire/*packages/kosong/*->rust/kosong/*packages/kaos/*->rust/kaos/*
- Port logic carefully
- Match error messages and tool output text exactly (tests often assert strings).
- Preserve output types (text vs parts) and ordering.
- For media/tool outputs, verify ContentPart wrapping and serialization.
- If Python adds new helper modules, mirror minimal Rust utilities.
- Use
rgto find existing analogs and references.
- Update tests
- Update Rust tests that assert content/strings/parts.
- Mirror Python unit and integration tests when they exist; add missing Rust tests so coverage matches intent.
- Ensure E2E parity: use the existing Python E2E suite against the Rust binary by setting
KIMI_E2E_WIRE_CMD(do not rewrite E2E in Rust). All E2E cases must pass or the gap must be documented. - Prefer targeted tests first (
cargo test -p kagent --test <name>), then full suite if asked.
- Verification is mandatory
- Run the full Rust test suite and ensure all Rust tests pass.
- Run E2E tests with the wire command swapped to Rust (set
KIMI_E2E_WIRE_CMD), and ensure they pass.
- Final report
- List synced files and logic.
- Call out intentionally skipped UI/login changes.
- List tests run and results (must include full Rust tests and Rust E2E with wire command override).
Pitfalls to avoid
- Skipping
llm.py: it often changes model capability logic. - Using commit message filtering instead of full diff.
- Forgetting to update Rust tests when output text/parts change.
- Mixing UI/login changes into core sync.
- Leaving test parity ambiguous; always state unit/integration/E2E status.
Minimal diff checklist (template)
- Recent changes reviewed (staged, commits, changelog)
- Python diffs inspected for core logic
- Rust mappings applied
- Tests updated
- Targeted tests run
- Full Rust test suite passed
- Rust E2E passed with
KIMI_E2E_WIRE_CMD
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
pull-request
Create and submit a GitHub Pull Request.
translate-docs
Translate and sync bilingual documentation.
release
Execute the release workflow for Kimi Code CLI packages.
gen-docs
Update Kimi Code CLI user documentation.
worktree-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.
codex-worker
Spawn and manage multiple Codex CLI agents via tmux to work on tasks in parallel. Use whenever a task can be decomposed into independent subtasks (e.g. batch triage, parallel fixes, multi-file refactors). When codex and tmux are available, prefer this over the built-in Task tool for parallelism.
Didn't find tool you were looking for?