@sunasteriskrnd/takumi 1.0.0-dev.4 → 1.0.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/dist/index.js +27090 -26896
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -60,14 +60,18 @@ tkm new --prefix # /tkm: namespace for commands
|
|
|
60
60
|
Run from project root:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
tkm init
|
|
64
|
-
tkm init -y
|
|
65
|
-
tkm init -g --kit engineer -y
|
|
66
|
-
tkm init --fresh
|
|
67
|
-
tkm init --archive ~/kit.zip
|
|
68
|
-
tkm init --local
|
|
63
|
+
tkm init # Interactive (claude-code default)
|
|
64
|
+
tkm init -y # Non-interactive, latest version
|
|
65
|
+
tkm init -g --kit engineer -y # Global install
|
|
66
|
+
tkm init --fresh # Clean reinstall (destructive)
|
|
67
|
+
tkm init --archive ~/kit.zip # Offline install
|
|
68
|
+
tkm init --local # From local monorepo (development)
|
|
69
|
+
tkm init -a codex # Install only codex agents/commands/skills
|
|
70
|
+
tkm init -a claude-code codex # Install both (sequential)
|
|
69
71
|
```
|
|
70
72
|
|
|
73
|
+
`--sync` is currently claude-code-only; combining `--sync` with any other agent is rejected with a clear error.
|
|
74
|
+
|
|
71
75
|
### Update CLI
|
|
72
76
|
|
|
73
77
|
```bash
|