@lambdacurry/arbor 0.8.7 → 0.8.8
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/dist/arbor.js +11 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16528,6 +16528,17 @@ var ACTIONS = [
|
|
|
16528
16528
|
toolset: "loop",
|
|
16529
16529
|
run: forward("thread.get")
|
|
16530
16530
|
},
|
|
16531
|
+
{
|
|
16532
|
+
name: "resolve_references",
|
|
16533
|
+
title: "Resolve reference ids",
|
|
16534
|
+
description: "Resolve Arbor object ids to their display labels — what a reference chip shows.",
|
|
16535
|
+
inputSchema: {
|
|
16536
|
+
ids: exports_external.array(exports_external.string()).describe("object ids to resolve — thr_…/con_…/ini_…/art_… (max 50; others ignored)")
|
|
16537
|
+
},
|
|
16538
|
+
surfaces: ["cli"],
|
|
16539
|
+
toolset: "loop",
|
|
16540
|
+
run: forward("reference.resolve")
|
|
16541
|
+
},
|
|
16531
16542
|
{
|
|
16532
16543
|
name: "tree",
|
|
16533
16544
|
title: "Navigate the workspace tree",
|
package/package.json
CHANGED