@sunasteriskrnd/takumi 1.0.0-dev.5 → 1.0.0-dev.7

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.
Files changed (3) hide show
  1. package/README.md +10 -6
  2. package/dist/index.js +27761 -24916
  3. package/package.json +1 -1
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 # Interactive
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)
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