@karmaniverous/jeeves-meta 0.11.2 → 0.12.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 CHANGED
@@ -4,7 +4,7 @@ HTTP service for the Jeeves knowledge synthesis engine. Provides a Fastify API,
4
4
 
5
5
  ## Features
6
6
 
7
- - **Fastify HTTP API** — `/status`, `/metas`, `/preview`, `/synthesize`, `/seed`, `/unlock`, `/config`
7
+ - **Fastify HTTP API** — `/status`, `/metas`, `/preview`, `/synthesize`, `/synthesize/abort`, `/seed`, `/unlock`, `/config`, `/config/apply`, `/queue`, `/queue/clear`
8
8
  - **Built-in scheduler** — croner-based cron with adaptive backoff
9
9
  - **Synthesis queue** — single-threaded, priority-aware, deduplicated
10
10
  - **Three-step orchestration** — architect, builder, critic with conditional re-architecture
@@ -58,9 +58,13 @@ jeeves-meta service install --config /path/to/jeeves-meta.config.json
58
58
  | GET | `/metas/:path` | Single meta detail with optional archive |
59
59
  | GET | `/preview` | Dry-run: preview inputs for next synthesis |
60
60
  | POST | `/synthesize` | Enqueue synthesis (stalest or specific path) |
61
+ | POST | `/synthesize/abort` | Abort the currently running synthesis |
61
62
  | POST | `/seed` | Create `.meta/` directory + meta.json (optional `crossRefs`, `steer`) |
62
63
  | POST | `/unlock` | Remove `.lock` file from a meta entity |
63
64
  | GET | `/config` | Query sanitized config with optional JSONPath (`?path=$.schedule`) |
65
+ | POST | `/config/apply` | Apply a config patch (merge or replace) |
66
+ | GET | `/queue` | Current queue state (current, pending, stats) |
67
+ | POST | `/queue/clear` | Remove all pending queue items |
64
68
 
65
69
  ## Configuration
66
70