@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.
Files changed (2) hide show
  1. package/README.md +9 -15
  2. 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
- The installer does three things:
73
+ This installs KKT for all detected supported agents:
74
74
 
75
- - installs the KKT skills into supported coding-agent skill directories
76
- - installs `ast-grep` for syntax-aware structural discovery when it is missing
77
- - installs the `kkt` CLI used by those skills for deterministic workflow and validation
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
- Pi users who only want the skills can install the package directly:
87
+ Upgrade or customize the CLI location:
91
88
 
92
89
  ```bash
93
- pi install npm:@dannylee1020/kkt
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
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dannylee1020/kkt",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "KKT constrained-optimization workflow skills and CLI installer for coding agents.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",