@esoteric-logic/praxis-harness 2.3.0 → 2.3.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 +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,11 +74,14 @@ For technical research: `/discover` (structured options evaluation before decisi
|
|
|
74
74
|
| `verify-app` | End-to-end verification with regression analysis |
|
|
75
75
|
| `session-retro` | End-of-session retrospective with learnings extraction |
|
|
76
76
|
| `status-update` | Manual vault status.md update |
|
|
77
|
+
| `repair` | Structured 3-attempt fix-and-verify loop for failed milestones |
|
|
78
|
+
| `sync-memory` | Bridge auto-memory insights to Obsidian vault |
|
|
79
|
+
| `context-probe` | Assess context health and recommend action |
|
|
77
80
|
| `context-reset` | Reload context from vault without clearing session |
|
|
78
81
|
|
|
79
82
|
## Rules
|
|
80
83
|
|
|
81
|
-
|
|
84
|
+
16 rules across universal and scoped categories. Universal rules load every session. Scoped rules load only when matching file patterns are detected.
|
|
82
85
|
|
|
83
86
|
Key additions in this version:
|
|
84
87
|
- **context-management** — context brackets (FRESH/MODERATE/DEPLETED/CRITICAL) adapt behavior to session stage
|
|
@@ -113,6 +116,9 @@ Key additions in this version:
|
|
|
113
116
|
|-----|----------|-------------|
|
|
114
117
|
| web-designer | `/kit:web-designer` | Design system init → component build → accessibility audit → production lint |
|
|
115
118
|
| infrastructure | `/kit:infrastructure` | Terraform plan → apply → drift detection → compliance check |
|
|
119
|
+
| api | `/kit:api` | RESTful conventions → OpenAPI specs → contract testing |
|
|
120
|
+
| security | `/kit:security` | Threat modeling → IAM review → OWASP audit |
|
|
121
|
+
| data | `/kit:data` | Schema design → migration planning → query optimization |
|
|
116
122
|
|
|
117
123
|
More kits coming. See `docs/creating-a-kit.md` to build your own.
|
|
118
124
|
|
|
@@ -205,6 +211,12 @@ bash install.sh
|
|
|
205
211
|
|
|
206
212
|
The git-clone + `install.sh` path uses symlinks instead of copies, so edits in the repo are immediately reflected.
|
|
207
213
|
|
|
214
|
+
**Testing:**
|
|
215
|
+
```bash
|
|
216
|
+
bash scripts/lint-harness.sh . # structure, frontmatter, placeholders, registry
|
|
217
|
+
bash scripts/test-harness.sh . # shellcheck, JSON, cross-skill refs, hook wiring, kit structure
|
|
218
|
+
```
|
|
219
|
+
|
|
208
220
|
## Requirements
|
|
209
221
|
|
|
210
222
|
- macOS or Linux
|
package/package.json
CHANGED