@karmaniverous/jeeves-meta 0.16.0 → 0.16.2
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 +2 -0
- package/dist/cli/jeeves-meta/index.js +158 -261
- package/dist/executor/GatewayExecutor.d.ts +13 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +158 -261
- package/dist/queue/index.d.ts +25 -66
- package/dist/routes/queue.d.ts +2 -2
- package/dist/schema/config.d.ts +4 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@ HTTP service for the Jeeves knowledge synthesis engine. Provides a Fastify API,
|
|
|
14
14
|
- **Cross-meta references** — `_crossRefs` declares relationships to other metas; referenced `_content` included as architect/builder context
|
|
15
15
|
- **Archive management** — timestamped snapshots with configurable pruning
|
|
16
16
|
- **Lock staging** — write to `.lock` → copy to `meta.json` → archive (crash-safe)
|
|
17
|
+
- **Staging file retry** — configurable retries (`stagingRetries`, `stagingRetryDelayMs`) when sub-agent output file is not yet visible after session completion (network/NFS latency)
|
|
18
|
+
- **Preview delta cap** — `/preview` response includes `deltaFilesTruncated` flag and `deltaCount` total when delta files exceed `previewDeltaFilesCap`
|
|
17
19
|
- **Virtual rule registration** — registers 3 watcher inference rules at startup with retry
|
|
18
20
|
- **Progress reporting** — real-time synthesis events via gateway channel messages
|
|
19
21
|
- **Graceful shutdown** — stop scheduler, release locks, close server
|