holomime 2.6.0 → 2.7.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 +4 -4
- package/dist/cli.js +194 -66
- package/dist/index.d.ts +8187 -0
- package/dist/index.js +12 -12
- package/dist/integrations/langchain.js +1 -1
- package/dist/integrations/openclaw.d.ts +1 -1
- package/dist/integrations/openclaw.js +2 -2
- package/dist/mcp-server.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,19 +70,19 @@ Eight files define who your agent is. They compile into a single `.personality.j
|
|
|
70
70
|
npm install -g holomime
|
|
71
71
|
|
|
72
72
|
# Initialize the identity stack (3 core files: soul + mind + conscience)
|
|
73
|
-
holomime
|
|
73
|
+
holomime core
|
|
74
74
|
|
|
75
75
|
# Or initialize the full 8-file stack (enterprise / robotics)
|
|
76
|
-
# holomime
|
|
76
|
+
# holomime identity
|
|
77
77
|
|
|
78
78
|
# Compile into .personality.json
|
|
79
79
|
holomime compile-stack
|
|
80
80
|
|
|
81
81
|
# Diagnose behavioral drift (no LLM needed)
|
|
82
|
-
holomime diagnose
|
|
82
|
+
holomime diagnose
|
|
83
83
|
|
|
84
84
|
# Benchmark alignment (8 adversarial scenarios, grade A-F)
|
|
85
|
-
holomime benchmark
|
|
85
|
+
holomime benchmark
|
|
86
86
|
|
|
87
87
|
# Push identity to a robot or avatar
|
|
88
88
|
holomime embody --body registry/bodies/figure-03.body.api
|