@karmaniverous/jeeves-meta 0.7.0 → 0.9.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 +2 -1
- package/dist/cli/jeeves-meta/index.js +175 -8562
- package/dist/index.d.ts +3 -0
- package/dist/index.js +175 -8562
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ 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
|
|
@@ -54,7 +55,7 @@ jeeves-meta service install --config /path/to/jeeves-meta.config.json
|
|
|
54
55
|
| GET | `/metas/:path` | Single meta detail with optional archive |
|
|
55
56
|
| GET | `/preview` | Dry-run: preview inputs for next synthesis |
|
|
56
57
|
| POST | `/synthesize` | Enqueue synthesis (stalest or specific path) |
|
|
57
|
-
| POST | `/seed` | Create `.meta/` directory + meta.json |
|
|
58
|
+
| POST | `/seed` | Create `.meta/` directory + meta.json (optional `crossRefs`) |
|
|
58
59
|
| POST | `/unlock` | Remove `.lock` file from a meta entity |
|
|
59
60
|
| GET | `/config` | Query sanitized config with optional JSONPath (`?path=$.schedule`) |
|
|
60
61
|
|