holomime 3.3.0 → 3.3.2

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 (3) hide show
  1. package/README.md +10 -2
  2. package/dist/cli.js +1110 -1109
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -71,6 +71,9 @@ Mira, our autonomous behavioral therapist, diagnoses drift, runs structured ther
71
71
  ```bash
72
72
  npm install -g holomime
73
73
 
74
+ # Configure your API key (one time)
75
+ holomime config
76
+
74
77
  # Quick start — 1 file (personality.json)
75
78
  holomime personality
76
79
 
@@ -80,11 +83,16 @@ holomime core
80
83
  # Full 8-file stack (enterprise / robotics)
81
84
  # holomime identity
82
85
 
83
- # ─── The 3-command workflow ───
86
+ # ─── The workflow ───
84
87
  holomime diagnose # See what's wrong
85
88
  holomime cure # Fix it permanently
86
89
  holomime benchmark # Verify the fix
87
90
 
91
+ # Start autonomous therapy
92
+ holomime mira # Mira runs continuous therapy cycles
93
+ holomime mira status # How's Mira doing?
94
+ holomime mira stop # Stop therapy
95
+
88
96
  # Push identity to a robot or avatar
89
97
  holomime embody --body registry/bodies/figure-03.body.api
90
98
  ```
@@ -176,7 +184,7 @@ Diagnose ──→ Cure ──→ Benchmark
176
184
  └───────────────────────────────────┘
177
185
  ```
178
186
 
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.
187
+ Run it manually with `holomime diagnose` + `holomime cure` + `holomime benchmark`, continuously with `holomime mira` (autonomous therapy), 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.
180
188
 
181
189
  ## Behavioral Detectors
182
190