You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ rtk gain # Should show the savings dashboard
114
114
# 1. Install for your AI tool
115
115
rtk init -g # Claude Code / Copilot (default)
116
116
rtk init -g --gemini # Gemini CLI
117
+
rtk init -g --qwen # Qwen Code CLI
117
118
rtk init -g --codex # Codex (OpenAI)
118
119
rtk init -g --agent cursor # Cursor
119
120
rtk init -g --agent windsurf # Windsurf
@@ -381,7 +382,7 @@ rtk init -g
381
382
382
383
## Supported AI Tools
383
384
384
-
RTK supports 15 AI coding tools. Each integration rewrites shell commands to `rtk` equivalents, reducing the bash output the agent reads where the agent supports command interception.
385
+
RTK supports 16 AI coding tools. Each integration rewrites shell commands to `rtk` equivalents, reducing the bash output the agent reads where the agent supports command interception.
385
386
386
387
| Tool | Install | Method |
387
388
|------|---------|--------|
@@ -390,6 +391,7 @@ RTK supports 15 AI coding tools. Each integration rewrites shell commands to `rt
Copy file name to clipboardExpand all lines: src/hooks/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
The **lifecycle management** layer for LLM agent hooks: install, uninstall, verify integrity, audit usage, and manage trust. This component creates and maintains the hook artifacts that live in `hooks/` (root), but does **not** execute rewrite logic itself — that lives in `discover/registry`.
8
8
9
-
Owns: `rtk init` installation flows (5 agents via `AgentTarget`enum + 3 special modes: Gemini, Codex, OpenCode), SHA-256 integrity verification, hook version checking, audit log analysis, `rtk rewrite` CLI entry point, and TOML filter trust management.
9
+
Owns: `rtk init` installation flows (agents via `AgentTarget`plus special Gemini, Qwen, Codex, and OpenCode modes), SHA-256 integrity verification, hook version checking, audit log analysis, `rtk rewrite` CLI entry point, and TOML filter trust management.
10
10
11
11
Does **not** own: the deployed hook scripts themselves (that's `hooks/`), the rewrite pattern registry (that's `discover/`), or command filtering (that's `cmds/`).
12
12
@@ -88,6 +88,7 @@ Rules are loaded from all Claude Code `settings.json` files (project + global, i
88
88
| Copilot VS Code (rtk hook copilot) | Yes |`permissionDecision: "ask"` — user prompted |
89
89
| Cursor (rtk hook cursor) | Ready |`permission: "ask",` — users will be prompted when Cursor enforces the permission; in the meantime, allow |
90
90
| Gemini CLI (rtk hook gemini) | No (allow/deny only) | allow (limitation — no ask mode in Gemini) |
0 commit comments