@karmaniverous/jeeves-meta 0.12.4 → 0.13.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 -4
- package/dist/cli/jeeves-meta/index.js +322 -218
- package/dist/index.d.ts +5 -6
- package/dist/index.js +286 -186
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ HTTP service for the Jeeves knowledge synthesis engine. Provides a Fastify API,
|
|
|
18
18
|
- **Graceful shutdown** — stop scheduler, release locks, close server
|
|
19
19
|
- **Built-in prompts** — default architect and critic prompts ship with the package; optional config overrides via `@file:` or inline strings
|
|
20
20
|
- **Handlebars templates** — prompts compiled with `{ config, meta, scope }` context; architect can write template expressions into builder briefs
|
|
21
|
-
- **Config hot-reload** — all synthesis parameters reload without restart; restart-required fields (port,
|
|
21
|
+
- **Config hot-reload** — all synthesis parameters reload without restart; restart-required fields (port, URLs) warn on change
|
|
22
22
|
- **Auto-seed policy** — config-driven declarative `.meta/` creation via `autoSeed` rules
|
|
23
23
|
- **Token tracking** — per-step counts with exponential moving averages
|
|
24
|
-
- **CLI** — `status`, `list`, `detail`, `preview`, `synthesize`, `seed`, `unlock`, `config`, `service` commands
|
|
24
|
+
- **CLI** — `status`, `list`, `detail`, `preview`, `synthesize`, `seed`, `unlock`, `config`, `abort`, `prune`, `queue`, `service` commands
|
|
25
25
|
- **Zod schemas** — validated meta.json and config with open schema support
|
|
26
26
|
|
|
27
27
|
## Install
|
|
@@ -34,7 +34,7 @@ npm install -g @karmaniverous/jeeves-meta
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
# Start the service
|
|
37
|
-
jeeves-meta start --config /path/to/jeeves-meta
|
|
37
|
+
jeeves-meta start --config /path/to/jeeves-meta/config.json
|
|
38
38
|
|
|
39
39
|
# Check status
|
|
40
40
|
jeeves-meta status
|
|
@@ -46,7 +46,7 @@ jeeves-meta list
|
|
|
46
46
|
jeeves-meta synthesize
|
|
47
47
|
|
|
48
48
|
# Install as a system service (prints OS-specific instructions)
|
|
49
|
-
jeeves-meta service install --config /path/to/jeeves-meta
|
|
49
|
+
jeeves-meta service install --config /path/to/jeeves-meta/config.json
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
## HTTP API
|