@evomap/evolver 2.0.23 → 2.0.24
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 +18 -9
- package/package.json +8 -8
- package/release-provenance.json +2 -2
package/README.md
CHANGED
|
@@ -150,9 +150,18 @@ Evolver integrates with major agent runtimes through `setup-hooks`. Run it once
|
|
|
150
150
|
#### Codex caveats
|
|
151
151
|
|
|
152
152
|
The Codex CLI exposes `SessionStart` / `Stop` / `PostToolUse` hooks (which is
|
|
153
|
-
how `setup-hooks --platform=codex` wires Evolver in)
|
|
154
|
-
|
|
155
|
-
|
|
153
|
+
how `setup-hooks --platform=codex` wires Evolver in). The `Stop` payload does
|
|
154
|
+
not include a `transcript_path`, but Codex writes local rollout JSONL files under
|
|
155
|
+
`~/.codex/sessions/**/*.jsonl`. V2 does not silently scan these files during a
|
|
156
|
+
normal review; request local trajectory ingestion explicitly:
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
evolver trajectory-export --runtime-sessions --output ./codex-trajectories.jsonl
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Discovery is marker-gated by default and stays local. Use
|
|
163
|
+
`--include-unmarked` only when you intentionally want older or unmarked Codex
|
|
164
|
+
sessions included.
|
|
156
165
|
|
|
157
166
|
`setup-hooks --platform=codex` is lifecycle integration only; it does not route
|
|
158
167
|
Codex model requests through Evolver Proxy. To route Codex model traffic, run
|
|
@@ -162,7 +171,7 @@ command-backed auth runs `evolver proxy-token` or the absolute `node index.js
|
|
|
162
171
|
proxy-token --settings ...` helper emitted by `scripts/internal-proxy-env.sh
|
|
163
172
|
--codex-config` from a source checkout.
|
|
164
173
|
|
|
165
|
-
|
|
174
|
+
For the normal lifecycle path, Evolver reads additional local context in order:
|
|
166
175
|
|
|
167
176
|
1. `MEMORY.md` / `USER.md` in the workspace root (if you maintain them);
|
|
168
177
|
2. the `<!-- evolver-evolution-memory -->` section that
|
|
@@ -171,10 +180,10 @@ Evolver compensates by reading, in order:
|
|
|
171
180
|
3. the tail of the local `memory_graph.jsonl` (the per-cycle outcome log
|
|
172
181
|
that Evolver writes itself).
|
|
173
182
|
|
|
174
|
-
If none of those have content yet, you'll see `memory_missing` /
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
183
|
+
If none of those have content yet, you'll see `memory_missing` / `user_missing`
|
|
184
|
+
or `session_logs_missing` as advisory signals during the first few cycles.
|
|
185
|
+
They go quiet as local memory and marked runtime-session material accumulate;
|
|
186
|
+
no manual setup is required.
|
|
178
187
|
|
|
179
188
|
## Run from Source (Contributors Only)
|
|
180
189
|
|
|
@@ -552,7 +561,7 @@ Directional, not commitments — the live backlog lives in [GitHub Issues](https
|
|
|
552
561
|
|
|
553
562
|
## Star History
|
|
554
563
|
|
|
555
|
-
[](https://star-history.dera.page/#EvoMap/evolver&Date)
|
|
556
565
|
|
|
557
566
|
## Acknowledgments
|
|
558
567
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evomap/evolver",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.24",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Evolver v2 public distribution package.",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"node": "^22.13.0 || >=23.4.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@evomap/evolver-cli": "2.0.
|
|
36
|
-
"@evomap/evolver-mcp": "2.0.
|
|
37
|
-
"@evomap/evolver-proxy": "2.0.
|
|
38
|
-
"@evomap/evolver-core": "2.0.
|
|
39
|
-
"@evomap/evolver-adapter-public": "2.0.
|
|
40
|
-
"@evomap/evolver-runtime-adapters": "2.0.
|
|
41
|
-
"@evomap/evolver-webui": "2.0.
|
|
35
|
+
"@evomap/evolver-cli": "2.0.24",
|
|
36
|
+
"@evomap/evolver-mcp": "2.0.24",
|
|
37
|
+
"@evomap/evolver-proxy": "2.0.24",
|
|
38
|
+
"@evomap/evolver-core": "2.0.24",
|
|
39
|
+
"@evomap/evolver-adapter-public": "2.0.24",
|
|
40
|
+
"@evomap/evolver-runtime-adapters": "2.0.24",
|
|
41
|
+
"@evomap/evolver-webui": "2.0.24"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public",
|