Skip to content

Commit bcf4d80

Browse files
committed
Saturate therapy language across README, package.json, and CLI descriptions
1 parent ee7ec1d commit bcf4d80

3 files changed

Lines changed: 22 additions & 21 deletions

File tree

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<h1 align="center">holomime</h1>
66

77
<p align="center">
8-
Self-improving behavioral alignment for AI agents.<br />
9-
Every correction trains the next version. Every session compounds. Your agents get better at being themselves &mdash; automatically.<br />
8+
Behavioral therapy infrastructure for AI agents.<br />
9+
Every therapy session trains the next version. Every session compounds. Your agents get better at being themselves &mdash; automatically.<br />
1010
<em>Works with OpenTelemetry, Anthropic, OpenAI, ChatGPT, Claude, and any JSONL source.</em>
1111
</p>
1212

@@ -29,7 +29,7 @@ npm install -g holomime
2929
# Create a personality profile (Big Five + behavioral dimensions)
3030
holomime init
3131

32-
# Diagnose drift from any log format
32+
# Diagnose behavioral symptoms from any log format
3333
holomime diagnose --log agent.jsonl
3434

3535
# View your agent's personality
@@ -47,14 +47,14 @@ HoloMime isn't a one-shot evaluation. It's a compounding behavioral flywheel:
4747
┌──────────────────────────────────────────────────┐
4848
│ │
4949
▼ │
50-
Diagnose ──→ Refine ──→ Export DPO ──→ Fine-tune ──→ Evaluate
50+
Diagnose ──→ Treat ──→ Export DPO ──→ Fine-tune ──→ Evaluate
5151
80+ signals dual-LLM preference OpenAI / before/after
5252
7 detectors therapy pairs HuggingFace grade (A-F)
5353
```
5454

5555
Each cycle through the loop:
56-
- **Generates training data** -- every therapist correction becomes a DPO preference pair automatically
57-
- **Reduces drift** -- the fine-tuned model needs fewer corrections next cycle
56+
- **Generates training data** -- every therapy session becomes a DPO preference pair automatically
57+
- **Reduces relapse** -- the fine-tuned model needs fewer interventions next cycle
5858
- **Compounds** -- the 100th alignment session is exponentially more valuable than the first
5959

6060
Run it manually with `holomime session`, automatically with `holomime autopilot`, or recursively with `holomime evolve` (loops until behavior converges). Agents can even self-diagnose mid-conversation via the MCP server.
@@ -103,7 +103,7 @@ This project uses [holomime](https://holomime.dev) for agent behavioral alignmen
103103

104104
- **Spec**: `.personality.json` defines the agent's behavioral profile
105105
- **Readable**: `.personality.md` is a human-readable summary
106-
- **Diagnose**: `holomime diagnose --log <path>` detects behavioral drift
106+
- **Diagnose**: `holomime diagnose --log <path>` detects behavioral symptoms
107107
- **Align**: `holomime evolve --personality .personality.json --log <path>`
108108

109109
The `.personality.json` governs *how the agent behaves*.
@@ -151,7 +151,7 @@ Seven rule-based detectors that analyze real conversations without any LLM calls
151151
<details>
152152
<summary><strong>All Commands</strong></summary>
153153

154-
### Free Tier
154+
### Free Clinic
155155

156156
| Command | What It Does |
157157
|---------|-------------|
@@ -164,9 +164,9 @@ Seven rule-based detectors that analyze real conversations without any LLM calls
164164
| `holomime browse` | Browse community personality hub |
165165
| `holomime pull` | Download a personality from the hub |
166166
| `holomime publish` | Share your personality to the hub |
167-
| `holomime activate` | Activate a Pro license key |
167+
| `holomime activate` | Activate a Practice license key |
168168

169-
### Pro Tier
169+
### Practice
170170

171171
| Command | What It Does |
172172
|---------|-------------|
@@ -183,17 +183,17 @@ Seven rule-based detectors that analyze real conversations without any LLM calls
183183
| `holomime eval` | Before/after behavioral comparison with letter grades |
184184
| `holomime growth` | Track behavioral improvement over time |
185185

186-
[Get a Pro license](https://holomime.dev/#pricing)
186+
[Get a Practice license](https://holomime.dev/#pricing)
187187

188188
</details>
189189

190190
## Continuous Monitoring
191191

192192
```bash
193-
# Watch mode -- alert on drift
193+
# Watch mode -- alert on relapse
194194
holomime watch --dir ./logs --personality agent.personality.json
195195

196-
# Daemon mode -- auto-heal drift without intervention
196+
# Daemon mode -- auto-heal relapse without intervention
197197
holomime daemon --dir ./logs --personality agent.personality.json
198198

199199
# Fleet mode -- monitor multiple agents simultaneously
@@ -219,7 +219,7 @@ Supports DPO, RLHF, Alpaca, HuggingFace, and OpenAI fine-tuning formats. See [sc
219219

220220
## Architecture
221221

222-
The pipeline is a closed loop -- output feeds back as input, compounding with every cycle:
222+
The pipeline is a closed loop -- output feeds back as input, compounding with every therapy cycle:
223223

224224
```
225225
.personality.json ─────────────────────────────────────────────────┐
@@ -251,7 +251,7 @@ Expose the full pipeline as MCP tools for self-healing agents:
251251
holomime-mcp
252252
```
253253

254-
Four tools: `holomime_diagnose`, `holomime_assess`, `holomime_profile`, `holomime_autopilot`. Your agents can self-diagnose behavioral drift and trigger their own alignment sessions.
254+
Four tools: `holomime_diagnose`, `holomime_assess`, `holomime_profile`, `holomime_autopilot`. Your agents can self-diagnose behavioral symptoms and trigger their own therapy sessions.
255255

256256
## Voice Agent
257257

@@ -274,7 +274,7 @@ Benchmark results: [BENCHMARK_RESULTS.md](BENCHMARK_RESULTS.md)
274274
- [Integration Docs](https://holomime.dev/docs) -- Export instructions and code examples for all 7 formats
275275
- [Blog](https://holomime.dev/blog) -- Articles on behavioral alignment, AGENTS.md, and agent personality
276276
- [Research Paper](https://holomime.dev/research) -- Behavioral Alignment for Autonomous AI Agents
277-
- [Pricing](https://holomime.dev/#pricing) -- Free tier + Pro license details
277+
- [Pricing](https://holomime.dev/#pricing) -- Free Clinic + Practice license details
278278

279279
## Contributing
280280

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "holomime",
33
"version": "1.1.1",
4-
"description": "Behavioral alignment infrastructure for AI agents — Big Five psychology, guided refinement, DPO training data",
4+
"description": "Behavioral therapy infrastructure for AI agents — Big Five psychology, structured treatment, DPO training data",
55
"type": "module",
66
"bin": {
77
"holomime": "dist/cli.js",
@@ -46,6 +46,7 @@
4646
"psychology",
4747
"alignment",
4848
"behavioral-analysis",
49+
"behavioral-therapy",
4950
"agent-training",
5051
"system-prompt",
5152
"opentelemetry",

src/cli.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ program
240240

241241
program
242242
.command("watch")
243-
.description("Continuous drift detection — monitor logs and auto-align [Pro]")
243+
.description("Continuous relapse detection — monitor logs and auto-align [Pro]")
244244
.requiredOption("--personality <path>", "Path to .personality.json")
245245
.requiredOption("--dir <path>", "Directory to watch for conversation logs")
246246
.option("--provider <provider>", "LLM provider (ollama, anthropic, openai)", "ollama")
@@ -262,7 +262,7 @@ program
262262

263263
program
264264
.command("daemon")
265-
.description("Background drift detection with auto-evolve — proactive alignment [Pro]")
265+
.description("Background relapse detection with auto-evolve — proactive alignment [Pro]")
266266
.requiredOption("--dir <path>", "Directory to watch for conversation logs")
267267
.option("--personality <path>", "Path to .personality.json", ".personality.json")
268268
.option("--provider <provider>", "LLM provider (ollama, anthropic, openai)", "ollama")
@@ -312,12 +312,12 @@ program
312312

313313
program
314314
.command("prescribe")
315-
.description("Diagnose and prescribe DPO corrections from the behavioral corpus [Pro]")
315+
.description("Diagnose and prescribe DPO treatments from the behavioral corpus [Pro]")
316316
.requiredOption("--personality <path>", "Path to .personality.json")
317317
.requiredOption("--log <path>", "Path to conversation log")
318318
.option("--format <format>", "Log format (holomime, chatgpt, claude, openai-api, anthropic-api, otel, jsonl)")
319319
.option("--source <source>", "Correction source (corpus, marketplace, both)", "corpus")
320-
.option("--apply", "Apply found corrections")
320+
.option("--apply", "Apply found treatments")
321321
.option("-o, --output <path>", "Write prescription to file")
322322
.action(prescribeCommand);
323323

0 commit comments

Comments
 (0)