feat(init): add support for kilocode and antigravity agents#802
feat(init): add support for kilocode and antigravity agents#802Yosoyepa wants to merge 1 commit intortk-ai:developfrom
Conversation
📊 Automated PR Analysis
SummaryAdds support for two new agent targets (Kilo Code and Google Antigravity) to the Review Checklist
Analyzed automatically by wshm · This is an automated analysis, not a human review. |
c0ef338 to
f16400e
Compare
|
Hey We are cleaning up the codebase and improving the project structure for better onboarding. As part of this effort, PR #826 reorganizes No logic changes — only file moves and import path updates. What you need to doRebase your branch on git fetch origin && git rebase origin/developGit detects renames automatically. If you get import conflicts, update the paths: use crate::git; // now: use crate::cmds::git::git;
use crate::tracking; // now: use crate::core::tracking;
use crate::config; // now: use crate::core::config;
use crate::init; // now: use crate::hooks::init;
use crate::gain; // now: use crate::analytics::gain;Need help rebasing? Tag @aeppling |
f16400e to
f3f4993
Compare
|
Hi @aeppling, thanks for the heads up! I've successfully fetched the latest Let me know if everything looks good on your end or if there's anything else needed. Thanks! |
f3f4993 to
f72f7c5
Compare
Add support for generating rules for Kilo Code and Google Antigravity via
rtk init.Summary
AgentTargetto support--agent kilocodeand--agent antigravity..kilocode/rules/rtk-rules.mdand .agent/rules/antigravity-rtk-rules.md).init::runconsole outputs consistent and free of emojis to strictly follow the project's formatting conventions.Test plan
cargo fmt --all && cargo clippy --all-targets && cargo testrtk <command>output inspected (Successfully testedrtk gain,rtk git statuslocally to ensure the new settings inject and reduce token usage without issues).