@sunasteriskrnd/takumi 1.0.0-dev.1 → 1.0.0-dev.10
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 +16 -6
- package/dist/index.js +28316 -27607
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -33,12 +33,18 @@ Verify: `tkm --version`
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
tkm --help # All commands
|
|
36
|
+
tkm auth login # One-time login (default install path)
|
|
36
37
|
tkm new # Create new project (interactive)
|
|
37
38
|
tkm new --kit engineer # Create with specific kit
|
|
38
39
|
tkm init # Initialize/update in current project
|
|
39
40
|
tkm init -g -y # Global install, non-interactive
|
|
40
41
|
```
|
|
41
42
|
|
|
43
|
+
The default `tkm init` / `new` / `versions` flows download releases
|
|
44
|
+
through the authenticated Takumi server (no `gh` CLI required). Run
|
|
45
|
+
`tkm auth login` once before the first install. The legacy GitHub
|
|
46
|
+
flow is still available via `--use-gh` for archived tags.
|
|
47
|
+
|
|
42
48
|
### Create New Project
|
|
43
49
|
|
|
44
50
|
```bash
|
|
@@ -54,14 +60,18 @@ tkm new --prefix # /tkm: namespace for commands
|
|
|
54
60
|
Run from project root:
|
|
55
61
|
|
|
56
62
|
```bash
|
|
57
|
-
tkm init
|
|
58
|
-
tkm init -y
|
|
59
|
-
tkm init -g --kit engineer -y
|
|
60
|
-
tkm init --fresh
|
|
61
|
-
tkm init --archive ~/kit.zip
|
|
62
|
-
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)
|
|
63
71
|
```
|
|
64
72
|
|
|
73
|
+
`--sync` is currently claude-code-only; combining `--sync` with any other agent is rejected with a clear error.
|
|
74
|
+
|
|
65
75
|
### Update CLI
|
|
66
76
|
|
|
67
77
|
```bash
|