omnius 1.0.379 → 1.0.380
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 +3 -0
- package/dist/index.js +3327 -2873
- package/docs/reference/rest-api.md +2 -0
- package/docs/rest/INDEX.md +1 -1
- package/docs/rest/endpoints/memory.md +6 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -292,9 +292,12 @@ The same registration accepts an MCP transport, e.g. `"transport":{"type":"mcp",
|
|
|
292
292
|
| `GET` | `/v1/memory/episodes` · `/v1/memory/failures` | List episodes · failures |
|
|
293
293
|
| `GET` | `/v1/sessions` · `/v1/sessions/{id}` | List task sessions · get history |
|
|
294
294
|
| `GET` | `/v1/context` | Current context snapshot |
|
|
295
|
+
| `GET` | `/v1/context/window-dumps` · `/v1/context/window-dumps/{id}` | List/fetch full outbound model context-window dumps |
|
|
295
296
|
| `POST` | `/v1/context/save` · `/v1/context/compact` | Save entry · request compaction |
|
|
296
297
|
| `GET` | `/v1/context/restore` | Build restore prompt |
|
|
297
298
|
|
|
299
|
+
Context-window dumps are written for main agents, sub-agents, internal runners, and adversary audits before backend inference. Use `GET /v1/context/window-dumps?agent_type=main` for summaries with signal/noise metrics, or `GET /v1/context/window-dumps/latest` for the full request payload. Set `OMNIUS_CONTEXT_WINDOW_DUMP_DIR` to relocate dumps, or `OMNIUS_DISABLE_CONTEXT_WINDOW_DUMPS=1` to disable them.
|
|
300
|
+
|
|
298
301
|
### Files, nexus, ollama pool
|
|
299
302
|
|
|
300
303
|
| Method | Path | Purpose |
|