@evomap/evolver 2.0.23 → 2.0.25

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 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), but it does **not**
154
- emit a session transcript file the way Cursor / Claude Code / opencode do.
155
- That means `evolver --review` cannot read raw session logs on Codex.
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
- Evolver compensates by reading, in order:
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
- `user_missing` / `session_logs_missing` show up as advisory signals
176
- during the first few cycles. They will go quiet on their own as
177
- `memory_graph.jsonl` accumulates outcomes — no manual setup required.
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
- [![Star History Chart](https://api.star-history.com/svg?repos=EvoMap/evolver&type=Date)](https://star-history.com/#EvoMap/evolver&Date)
564
+ [![Star History Chart](https://star-history.dera.page/svg?repos=EvoMap/evolver&type=Date)](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.23",
3
+ "version": "2.0.25",
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.23",
36
- "@evomap/evolver-mcp": "2.0.23",
37
- "@evomap/evolver-proxy": "2.0.23",
38
- "@evomap/evolver-core": "2.0.23",
39
- "@evomap/evolver-adapter-public": "2.0.23",
40
- "@evomap/evolver-runtime-adapters": "2.0.23",
41
- "@evomap/evolver-webui": "2.0.23"
35
+ "@evomap/evolver-cli": "2.0.25",
36
+ "@evomap/evolver-mcp": "2.0.25",
37
+ "@evomap/evolver-proxy": "2.0.25",
38
+ "@evomap/evolver-core": "2.0.25",
39
+ "@evomap/evolver-adapter-public": "2.0.25",
40
+ "@evomap/evolver-runtime-adapters": "2.0.25",
41
+ "@evomap/evolver-webui": "2.0.25"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "version": "2.0.23",
4
- "releaseTag": "v2.0.23",
3
+ "version": "2.0.25",
4
+ "releaseTag": "v2.0.25",
5
5
  "channel": "latest",
6
6
  "publicRepo": "EvoMap/evolver",
7
7
  "publicBranch": "v2-beta"