anima-cli 1.0.3 → 1.0.5
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 +14 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -112,6 +112,20 @@ is the archetype's update equations behaving as designed, not a bug —
|
|
|
112
112
|
export` flags saturated dimensions explicitly in its output. If you want more
|
|
113
113
|
gradual, mid-range trajectories, use the `calm` preset or fewer turns.
|
|
114
114
|
|
|
115
|
+
## Known behavior: seed only matters once irruption is reachable
|
|
116
|
+
|
|
117
|
+
The engine's random component is consumed **only** when internal pressure (`P`) crosses
|
|
118
|
+
the archetype's irruption threshold (`θ_irr`). If it never crosses — for example under the
|
|
119
|
+
`calm` preset, or with few turns — the trajectory up to that point is fully deterministic
|
|
120
|
+
from the signals alone, and **different seeds will produce identical output**. This is
|
|
121
|
+
correct, documented behavior in `@af199/anima-core`, not a bug: it means the same signals
|
|
122
|
+
always produce the same trajectory regardless of seed, and only diverge once the
|
|
123
|
+
stochastic irruption check actually fires.
|
|
124
|
+
|
|
125
|
+
If you're testing whether the seed "does anything," use a preset that reaches the
|
|
126
|
+
threshold (`clinical-crisis` or `chaotic`, with enough turns) — under `calm`, seed
|
|
127
|
+
independence is expected.
|
|
128
|
+
|
|
115
129
|
## Troubleshooting
|
|
116
130
|
|
|
117
131
|
**`profile not found: <name>`** — you ran `run`/`verify`/`export` from a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anima-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Deterministic psychodynamic profiles for LLM agents \u2014 7-dimensional state, seeded RNG, byte-reproducible traces, exportable to system prompts.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://github.com/Peroroii/anima-cli#readme",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@af199/anima-core": "
|
|
40
|
-
"@af199/anima-trace": "
|
|
39
|
+
"@af199/anima-core": "0.2.4",
|
|
40
|
+
"@af199/anima-trace": "1.0.2",
|
|
41
41
|
"chalk": "^4.1.2",
|
|
42
42
|
"commander": "^15.0.0",
|
|
43
43
|
"inquirer": "^8.2.7"
|