@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 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`, `_architectTimeout`, `_builderTimeout`, `_criticTimeout`) |
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. You have \{{config.builderTimeout}} seconds."
159
+ Example: "Process files in chunks of 50. Limit output to \{{config.maxLines}} lines."
163
160
 
164
161
  ## Constraints
165
162