holomime 3.1.0 → 3.3.0
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 -16
- package/dist/cli.js +1516 -1096
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,14 +80,10 @@ holomime core
|
|
|
80
80
|
# Full 8-file stack (enterprise / robotics)
|
|
81
81
|
# holomime identity
|
|
82
82
|
|
|
83
|
-
#
|
|
84
|
-
holomime
|
|
85
|
-
|
|
86
|
-
#
|
|
87
|
-
holomime diagnose
|
|
88
|
-
|
|
89
|
-
# Benchmark alignment (8 adversarial scenarios, grade A-F)
|
|
90
|
-
holomime benchmark
|
|
83
|
+
# ─── The 3-command workflow ───
|
|
84
|
+
holomime diagnose # See what's wrong
|
|
85
|
+
holomime cure # Fix it permanently
|
|
86
|
+
holomime benchmark # Verify the fix
|
|
91
87
|
|
|
92
88
|
# Push identity to a robot or avatar
|
|
93
89
|
holomime embody --body registry/bodies/figure-03.body.api
|
|
@@ -170,17 +166,17 @@ holomime embody --swap-body registry/bodies/spot.body.api
|
|
|
170
166
|
|
|
171
167
|
## Self-Improvement Loop
|
|
172
168
|
|
|
173
|
-
Every therapy
|
|
169
|
+
Every therapy cycle produces structured training data. The loop compounds.
|
|
174
170
|
|
|
175
171
|
```
|
|
176
|
-
Diagnose ──→
|
|
177
|
-
|
|
178
|
-
80+ signals
|
|
179
|
-
│
|
|
180
|
-
|
|
172
|
+
Diagnose ──→ Cure ──→ Benchmark
|
|
173
|
+
14 detectors therapy + train 8 adversarial
|
|
174
|
+
80+ signals in one command scenarios (A-F)
|
|
175
|
+
│ │
|
|
176
|
+
└───────────────────────────────────┘
|
|
181
177
|
```
|
|
182
178
|
|
|
183
|
-
Run it manually with `holomime
|
|
179
|
+
Run it manually with `holomime diagnose` + `holomime cure` + `holomime benchmark`, automatically with `holomime autopilot`, or recursively with `holomime evolve` (loops until behavior converges). For power users: `holomime align` runs a single therapy session, `holomime export` extracts DPO pairs, and `holomime train` fine-tunes the model.
|
|
184
180
|
|
|
185
181
|
## Behavioral Detectors
|
|
186
182
|
|
|
@@ -216,7 +212,7 @@ Plus support for custom detectors -- drop `.json` or `.md` files in `.holomime/d
|
|
|
216
212
|
claude plugin add productstein/holomime
|
|
217
213
|
```
|
|
218
214
|
|
|
219
|
-
Slash commands: `/holomime:diagnose`, `/holomime:benchmark`, `/holomime:profile`, `/holomime:brain`, `/holomime:
|
|
215
|
+
Slash commands: `/holomime:diagnose`, `/holomime:benchmark`, `/holomime:profile`, `/holomime:brain`, `/holomime:align`, `/holomime:autopilot`.
|
|
220
216
|
|
|
221
217
|
### MCP Server
|
|
222
218
|
|