@sunasteriskrnd/takumi 1.0.0-dev.13 → 1.0.0-dev.15
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 +7 -7
- package/dist/index.js +670 -488
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Verify: `tkm --version`
|
|
|
35
35
|
tkm --help # All commands
|
|
36
36
|
tkm auth login # One-time login (default install path)
|
|
37
37
|
tkm new # Create new project (interactive)
|
|
38
|
-
tkm new --kit
|
|
38
|
+
tkm new --kit core # Create with specific kit
|
|
39
39
|
tkm init # Initialize/update in current project
|
|
40
40
|
tkm init -g -y # Global install, non-interactive
|
|
41
41
|
```
|
|
@@ -49,7 +49,7 @@ flow is still available via `--use-gh` for archived tags.
|
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
51
|
tkm new # Interactive
|
|
52
|
-
tkm new --dir my-project --kit
|
|
52
|
+
tkm new --dir my-project --kit core # With options
|
|
53
53
|
tkm new --archive ~/kit.zip # Offline install
|
|
54
54
|
tkm new --install-skills # Auto-install skill deps
|
|
55
55
|
tkm new --prefix # /tkm: namespace for commands
|
|
@@ -62,7 +62,7 @@ Run from project root:
|
|
|
62
62
|
```bash
|
|
63
63
|
tkm init # Interactive (claude-code default)
|
|
64
64
|
tkm init -y # Non-interactive, latest version
|
|
65
|
-
tkm init -g --kit
|
|
65
|
+
tkm init -g --kit core -y # Global install
|
|
66
66
|
tkm init --fresh # Clean reinstall (destructive)
|
|
67
67
|
tkm init --archive ~/kit.zip # Offline install
|
|
68
68
|
tkm init --local # From local monorepo (development)
|
|
@@ -91,7 +91,7 @@ tkm doctor --report # Shareable diagnostic report
|
|
|
91
91
|
### Install to Other Coding Agents
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
tkm init -a codex --kit
|
|
94
|
+
tkm init -a codex --kit core # Install for Codex
|
|
95
95
|
tkm init -a claude-code -a codex # Install for multiple agents
|
|
96
96
|
```
|
|
97
97
|
|
|
@@ -101,7 +101,7 @@ tkm init -a claude-code -a codex # Install for multiple agents
|
|
|
101
101
|
tkm versions # List available versions
|
|
102
102
|
tkm uninstall # Remove Takumi
|
|
103
103
|
tkm config get defaults.kit # Read config
|
|
104
|
-
tkm config set defaults.kit
|
|
104
|
+
tkm config set defaults.kit core # Write config
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
### Debugging
|
|
@@ -128,7 +128,7 @@ Global config stored in `~/.claude/.takumi.json`; project config at `<project>/.
|
|
|
128
128
|
|
|
129
129
|
```json
|
|
130
130
|
{
|
|
131
|
-
"defaults": { "kit": "
|
|
131
|
+
"defaults": { "kit": "core", "dir": "." }
|
|
132
132
|
}
|
|
133
133
|
```
|
|
134
134
|
|
|
@@ -140,7 +140,7 @@ Never overwritten during updates: `.env*`, `*.key`, `*.pem`, `node_modules/**`,
|
|
|
140
140
|
|
|
141
141
|
```bash
|
|
142
142
|
bun install # Install deps
|
|
143
|
-
bun run dev new --kit
|
|
143
|
+
bun run dev new --kit core # Run locally
|
|
144
144
|
bun test # Run tests (3600+ tests)
|
|
145
145
|
bun run lint:fix # Auto-fix lint
|
|
146
146
|
bun run typecheck # Type check
|