@tendrilapp/cli 0.1.31 → 0.1.32

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.
@@ -225,7 +225,8 @@ var TOOLS = [
225
225
  // choose, declare, and state the reason in your report.
226
226
  model: str("the model that will WRITE the implementation \u2014 ask the user when interactive; declare your reasoned choice when not"),
227
227
  bar: optStr("pass (default) or cert"),
228
- out: optStr("payload file path override")
228
+ out: optStr("payload file path override"),
229
+ library: optStr("workspace root holding confirmed partners generated bundles (ADR-013 composed pins; default: the server's working directory)")
229
230
  }),
230
231
  argv: (i) => [
231
232
  "engine",
@@ -234,7 +235,8 @@ var TOOLS = [
234
235
  "--model",
235
236
  i["model"],
236
237
  ...i["bar"] !== void 0 ? ["--bar", i["bar"]] : [],
237
- ...i["out"] !== void 0 ? ["--out", i["out"]] : []
238
+ ...i["out"] !== void 0 ? ["--out", i["out"]] : [],
239
+ ...i["library"] !== void 0 ? ["--library", i["library"]] : []
238
240
  ]
239
241
  },
240
242
  {
@@ -246,7 +248,8 @@ var TOOLS = [
246
248
  bar: optStr("pass (default) or cert"),
247
249
  host: optStr("your host identity (e.g. claude-code, cursor, codex) \u2014 recorded as self-reported provenance"),
248
250
  model: str("the model that proposed the candidate \u2014 REQUIRED; recorded as self-reported provenance, and the CLI refuses to score without it"),
249
- rebind: z.boolean().optional().describe("explicitly re-bind an already-bound bundle to a DIFFERENT recording set \u2014 scoring refuses this otherwise, because rebinding silently rewrites the bundle's verification identity; only pass after telling the user")
251
+ rebind: z.boolean().optional().describe("explicitly re-bind an already-bound bundle to a DIFFERENT recording set \u2014 scoring refuses this otherwise, because rebinding silently rewrites the bundle's verification identity; only pass after telling the user"),
252
+ library: optStr("workspace root holding confirmed partners generated bundles (ADR-013 composed pins; default: the server's working directory) \u2014 pass the same root the brief used")
250
253
  }),
251
254
  argv: (i) => [
252
255
  "engine",
@@ -257,7 +260,8 @@ var TOOLS = [
257
260
  ...i["host"] !== void 0 ? ["--host", i["host"]] : [],
258
261
  "--model",
259
262
  i["model"],
260
- ...i["rebind"] === true ? ["--rebind"] : []
263
+ ...i["rebind"] === true ? ["--rebind"] : [],
264
+ ...i["library"] !== void 0 ? ["--library", i["library"]] : []
261
265
  ]
262
266
  },
263
267
  {
@@ -284,13 +288,15 @@ var TOOLS = [
284
288
  schema: z.object({
285
289
  bundleDir: str("bundle directory to verify"),
286
290
  bar: optStr("pass (default) or cert"),
287
- set: optStr("recording-set directory override")
291
+ set: optStr("recording-set directory override"),
292
+ library: optStr("workspace root holding confirmed partners generated bundles (ADR-013 composed pins; default: the server's working directory)")
288
293
  }),
289
294
  argv: (i) => [
290
295
  "verify",
291
296
  i["bundleDir"],
292
297
  ...i["bar"] !== void 0 ? ["--bar", i["bar"]] : [],
293
- ...i["set"] !== void 0 ? ["--set", i["set"]] : []
298
+ ...i["set"] !== void 0 ? ["--set", i["set"]] : [],
299
+ ...i["library"] !== void 0 ? ["--library", i["library"]] : []
294
300
  ]
295
301
  },
296
302
  {