@karmaniverous/jeeves-meta 0.15.12 → 0.16.1
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 +1 -1
- package/dist/cli/jeeves-meta/architect.md +1 -4
- package/dist/cli/jeeves-meta/index.js +235 -321
- package/dist/executor/GatewayExecutor.d.ts +26 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +235 -327
- package/dist/interfaces/MetaExecutor.d.ts +0 -2
- package/dist/prompts/architect.md +1 -4
- package/dist/queue/index.d.ts +25 -66
- package/dist/routes/metasUpdate.d.ts +1 -1
- package/dist/routes/queue.d.ts +2 -2
- package/dist/schema/config.d.ts +0 -9
- package/dist/schema/meta.d.ts +0 -3
- package/dist/seed/createMeta.d.ts +0 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ jeeves-meta service install --config /path/to/jeeves-meta/config.json
|
|
|
66
66
|
| POST | `/config/apply` | Apply a config patch (merge or replace) |
|
|
67
67
|
| GET | `/queue` | Queue state: current (with phase), overrides, automatic, pending |
|
|
68
68
|
| POST | `/queue/clear` | Remove all override queue entries |
|
|
69
|
-
| PATCH | `/metas/:path` | Update user-settable reserved properties (`_steer`, `_emphasis`, `_depth`, `_crossRefs`, `_disabled
|
|
69
|
+
| PATCH | `/metas/:path` | Update user-settable reserved properties (`_steer`, `_emphasis`, `_depth`, `_crossRefs`, `_disabled`) |
|
|
70
70
|
|
|
71
71
|
## Configuration
|
|
72
72
|
|
|
@@ -128,8 +128,6 @@ The Builder should:
|
|
|
128
128
|
4. Merge new findings with previous `_content` (carried in context)
|
|
129
129
|
|
|
130
130
|
If the scope is small enough to process in one pass, omit chunking instructions.
|
|
131
|
-
The Builder has a timeout of \{{config.builderTimeout}} seconds.
|
|
132
|
-
|
|
133
131
|
### 8. Output Structure
|
|
134
132
|
|
|
135
133
|
Define non-underscore fields for structured data and the _content narrative
|
|
@@ -148,7 +146,6 @@ Quote the specific issue and state what to do differently.
|
|
|
148
146
|
Your task brief will be compiled as a Handlebars template before the Builder
|
|
149
147
|
receives it. You can use these variables to write adaptive instructions:
|
|
150
148
|
|
|
151
|
-
- `\{{config.builderTimeout}}` — Builder timeout in seconds
|
|
152
149
|
- `\{{config.maxLines}}` — Maximum _content lines
|
|
153
150
|
- `\{{config.architectEvery}}` — Cycles between architect refreshes
|
|
154
151
|
- `\{{config.maxArchive}}` — Archive snapshots retained
|
|
@@ -159,7 +156,7 @@ receives it. You can use these variables to write adaptive instructions:
|
|
|
159
156
|
- `\{{meta._depth}}` — Scheduling depth
|
|
160
157
|
- `\{{meta._emphasis}}` — Scheduling emphasis
|
|
161
158
|
|
|
162
|
-
Example: "Process files in chunks of 50.
|
|
159
|
+
Example: "Process files in chunks of 50. Limit output to \{{config.maxLines}} lines."
|
|
163
160
|
|
|
164
161
|
## Constraints
|
|
165
162
|
|