@karmaniverous/jeeves-meta 0.8.0 → 0.10.0
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 +4 -2
- package/dist/cli/jeeves-meta/index.js +482 -225
- package/dist/index.d.ts +85 -55
- package/dist/index.js +478 -225
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,12 +10,14 @@ HTTP service for the Jeeves knowledge synthesis engine. Provides a Fastify API,
|
|
|
10
10
|
- **Three-step orchestration** — architect, builder, critic with conditional re-architecture
|
|
11
11
|
- **Discovery via watcher** — filesystem-based meta discovery via `/walk` endpoint (no Qdrant dependency)
|
|
12
12
|
- **Ownership tree** — hierarchical scoping with child meta rollup
|
|
13
|
+
- **Cross-meta references** — `_crossRefs` declares relationships to other metas; referenced `_content` included as architect/builder context
|
|
13
14
|
- **Archive management** — timestamped snapshots with configurable pruning
|
|
14
15
|
- **Lock staging** — write to `.lock` → copy to `meta.json` → archive (crash-safe)
|
|
15
16
|
- **Virtual rule registration** — registers 3 watcher inference rules at startup with retry
|
|
16
17
|
- **Progress reporting** — real-time synthesis events via gateway channel messages
|
|
17
18
|
- **Graceful shutdown** — stop scheduler, release locks, close server
|
|
18
|
-
- **Config hot-reload** —
|
|
19
|
+
- **Config hot-reload** — all synthesis parameters reload without restart; restart-required fields (port, host, URLs) warn on change
|
|
20
|
+
- **Auto-seed policy** — config-driven declarative `.meta/` creation via `autoSeed` rules
|
|
19
21
|
- **Token tracking** — per-step counts with exponential moving averages
|
|
20
22
|
- **CLI** — `status`, `list`, `detail`, `preview`, `synthesize`, `seed`, `unlock`, `config`, `service` commands
|
|
21
23
|
- **Zod schemas** — validated meta.json and config with open schema support
|
|
@@ -54,7 +56,7 @@ jeeves-meta service install --config /path/to/jeeves-meta.config.json
|
|
|
54
56
|
| GET | `/metas/:path` | Single meta detail with optional archive |
|
|
55
57
|
| GET | `/preview` | Dry-run: preview inputs for next synthesis |
|
|
56
58
|
| POST | `/synthesize` | Enqueue synthesis (stalest or specific path) |
|
|
57
|
-
| POST | `/seed` | Create `.meta/` directory + meta.json |
|
|
59
|
+
| POST | `/seed` | Create `.meta/` directory + meta.json (optional `crossRefs`) |
|
|
58
60
|
| POST | `/unlock` | Remove `.lock` file from a meta entity |
|
|
59
61
|
| GET | `/config` | Query sanitized config with optional JSONPath (`?path=$.schedule`) |
|
|
60
62
|
|