@esoteric-logic/praxis-harness 2.1.0 → 2.1.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 +12 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,16 +17,18 @@ Praxis gives Claude Code a three-layer operating system:
|
|
|
17
17
|
## Quick start
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npx praxis-harness
|
|
20
|
+
npx @esoteric-logic/praxis-harness@latest
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
One command. Copies rules, commands, skills, and kits directly into `~/.claude/`. Node.js 18+ must be installed first.
|
|
24
24
|
|
|
25
|
+
> **Always use `@latest`** — `npx` caches packages locally. Without `@latest`, you may get a stale version on machines that installed previously.
|
|
26
|
+
|
|
25
27
|
**Subsequent commands:**
|
|
26
28
|
```bash
|
|
27
|
-
npx praxis-harness update # re-copy from latest npm version
|
|
28
|
-
npx praxis-harness health # verify install integrity
|
|
29
|
-
npx praxis-harness uninstall # remove Praxis-owned files from ~/.claude/
|
|
29
|
+
npx @esoteric-logic/praxis-harness@latest update # re-copy from latest npm version
|
|
30
|
+
npx @esoteric-logic/praxis-harness@latest health # verify install integrity
|
|
31
|
+
npx @esoteric-logic/praxis-harness@latest uninstall # remove Praxis-owned files from ~/.claude/
|
|
30
32
|
```
|
|
31
33
|
|
|
32
34
|
## After install
|
|
@@ -167,18 +169,20 @@ Praxis auto-documents your work in the vault with zero manual effort. Two indepe
|
|
|
167
169
|
### Updating the harness
|
|
168
170
|
|
|
169
171
|
```bash
|
|
170
|
-
npx praxis-harness update
|
|
172
|
+
npx @esoteric-logic/praxis-harness@latest update
|
|
171
173
|
```
|
|
172
174
|
|
|
173
175
|
Re-copies all hooks, skills, rules, and kits from the latest npm package version. Config file is preserved.
|
|
174
176
|
|
|
177
|
+
> **Always use `@latest`** to avoid `npx` serving a cached older version.
|
|
178
|
+
|
|
175
179
|
### Updating existing projects
|
|
176
180
|
|
|
177
181
|
After a harness update that adds new vault files (like `decision-log.md`), run `/scaffold-exist` in a Claude Code session to audit your vault and add any missing files. This is non-destructive — it never overwrites existing content.
|
|
178
182
|
|
|
179
183
|
```
|
|
180
|
-
Step 1: npx praxis-harness update
|
|
181
|
-
Step 2: /scaffold-exist
|
|
184
|
+
Step 1: npx @esoteric-logic/praxis-harness@latest update → deploys new hooks, skills, rules
|
|
185
|
+
Step 2: /scaffold-exist → audits vault, adds missing files
|
|
182
186
|
```
|
|
183
187
|
|
|
184
188
|
New projects get everything automatically via `/scaffold-new`.
|
|
@@ -186,7 +190,7 @@ New projects get everything automatically via `/scaffold-new`.
|
|
|
186
190
|
## Uninstalling
|
|
187
191
|
|
|
188
192
|
```bash
|
|
189
|
-
npx praxis-harness uninstall
|
|
193
|
+
npx @esoteric-logic/praxis-harness@latest uninstall
|
|
190
194
|
```
|
|
191
195
|
|
|
192
196
|
Removes all Praxis-owned files from `~/.claude/`. Does not delete config, vault templates, or installed plugins.
|
package/package.json
CHANGED