mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-17 10:01:15 +02:00
docs: agents - add kimi-code
This commit is contained in:
@@ -33,6 +33,7 @@ Current targets:
|
||||
- Codex: `AGENTS.md` -> `${CODEX_HOME:-~/.codex}/AGENTS.md`
|
||||
- OpenCode: `AGENTS.md` -> `${XDG_CONFIG_HOME:-~/.config}/opencode/AGENTS.md`
|
||||
- Claude Code: `AGENTS.md` -> `~/.claude/CLAUDE.md`
|
||||
- Generic cross-tool (read by Kimi Code): `AGENTS.md` -> `~/.agents/AGENTS.md`
|
||||
|
||||
Behavior:
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ Installed via Nix:
|
||||
- opencode
|
||||
- cursor-agent(cli)
|
||||
- claude-code
|
||||
- kimi-code
|
||||
|
||||
## Optional tooling
|
||||
|
||||
|
||||
@@ -31,9 +31,11 @@ def main() -> int:
|
||||
xdg_config_home = Path(os.environ.get("XDG_CONFIG_HOME", "~/.config")).expanduser()
|
||||
opencode_dir = xdg_config_home / "opencode"
|
||||
claude_dir = Path("~/.claude").expanduser()
|
||||
agents_dir = Path("~/.agents").expanduser()
|
||||
install_one(codex_dir, agents_file, "AGENTS.md")
|
||||
install_one(opencode_dir, agents_file, "AGENTS.md")
|
||||
install_one(claude_dir, agents_file, "CLAUDE.md")
|
||||
install_one(agents_dir, agents_file, "AGENTS.md")
|
||||
|
||||
return 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user