@dannylee1020/kkt 0.5.0 → 0.5.1
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 +9 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,33 +70,27 @@ Recommended full install via npm:
|
|
|
70
70
|
npx @dannylee1020/kkt install --target all
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
This installs KKT for all detected supported agents:
|
|
74
74
|
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
|
|
79
|
-
Common options:
|
|
75
|
+
- Claude Code: `~/.claude/skills`
|
|
76
|
+
- Codex, Pi, and OpenCode: `~/.agents/skills`
|
|
77
|
+
-
|
|
78
|
+
Install for one agent:
|
|
80
79
|
|
|
81
80
|
```bash
|
|
82
|
-
npx @dannylee1020/kkt install --target codex
|
|
83
81
|
npx @dannylee1020/kkt install --target claude
|
|
82
|
+
npx @dannylee1020/kkt install --target codex
|
|
84
83
|
npx @dannylee1020/kkt install --target pi
|
|
85
84
|
npx @dannylee1020/kkt install --target opencode
|
|
86
|
-
npx @dannylee1020/kkt upgrade --target all
|
|
87
|
-
npx @dannylee1020/kkt install --bin-dir ~/.local/bin
|
|
88
85
|
```
|
|
89
86
|
|
|
90
|
-
|
|
87
|
+
Upgrade or customize the CLI location:
|
|
91
88
|
|
|
92
89
|
```bash
|
|
93
|
-
|
|
90
|
+
npx @dannylee1020/kkt upgrade --target all
|
|
91
|
+
npx @dannylee1020/kkt install --bin-dir ~/.local/bin
|
|
94
92
|
```
|
|
95
93
|
|
|
96
|
-
The Pi package path loads skills but does not install the companion Go CLI. Use the full `npx` installer when you need durable `.kkt/` state, guardrails, and validation commands.
|
|
97
|
-
|
|
98
|
-
Alternative curl installer:
|
|
99
|
-
|
|
100
94
|
```bash
|
|
101
95
|
curl -fsSL https://raw.githubusercontent.com/dannylee1020/kkt/main/scripts/install.sh | bash
|
|
102
96
|
```
|