@lambdacurry/arbor 0.20.14 → 0.20.15
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 +24 -24
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18424,7 +18424,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18424
18424
|
{
|
|
18425
18425
|
name: "computer_open",
|
|
18426
18426
|
title: "Open a Thread computer",
|
|
18427
|
-
description: "Open or resume
|
|
18427
|
+
description: "Open or resume a Thread's project environment when you need filesystem, command, Run, checkpoint, Preview, or publication work. Returns the session handle, workspace/repositories/default cwd, Agent Brief, profile/capabilities, active Runs, and any reconciliation notice.",
|
|
18428
18428
|
inputSchema: {
|
|
18429
18429
|
threadId: exports_external.string().describe("the Arbor Thread whose stable computer to open, thr_…"),
|
|
18430
18430
|
vcpus: exports_external.number().int().min(1).max(4).optional().describe("optional container vCPU request"),
|
|
@@ -18437,7 +18437,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18437
18437
|
{
|
|
18438
18438
|
name: "computer_reprovision",
|
|
18439
18439
|
title: "Replace a Thread computer",
|
|
18440
|
-
description: "DESTRUCTIVE RECOVERY:
|
|
18440
|
+
description: "DESTRUCTIVE RECOVERY: Replace an incompatible active Computer generation from the Thread's effective recipe when Arbor reports structural recipe incompatibility. Preserves the old generation unless the successor restores supported state and passes health.",
|
|
18441
18441
|
inputSchema: {
|
|
18442
18442
|
threadId: exports_external.string().describe("the Thread whose active Computer generation is replaced, thr_…"),
|
|
18443
18443
|
idempotencyKey: exports_external.string().min(1).max(200).describe("stable key for this ONE replacement request; reuse it unchanged for retries"),
|
|
@@ -18450,7 +18450,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18450
18450
|
{
|
|
18451
18451
|
name: "computer_run_start",
|
|
18452
18452
|
title: "Start a run",
|
|
18453
|
-
description: "Start one unit of work inside an opened Thread
|
|
18453
|
+
description: "Start one bounded unit of work inside an opened Thread Computer when you need a read or write Run. Returns runId plus placement, base Git/snapshot state, durability facts, and inherited guidance; write Runs default to isolated unless execution='shared' is chosen.",
|
|
18454
18454
|
inputSchema: {
|
|
18455
18455
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18456
18456
|
mode: exports_external.enum(["read", "write"]).describe("write for mutable work; read for shared inspection"),
|
|
@@ -18464,7 +18464,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18464
18464
|
{
|
|
18465
18465
|
name: "computer_repo_work_status",
|
|
18466
18466
|
title: "Inspect repository finish state",
|
|
18467
|
-
description: "READ ONLY:
|
|
18467
|
+
description: "READ ONLY: Inspect an active isolated WRITE Run before a push/PR retry or finish when Git publication, PR, CI, or review state matters. Returns authoritative durability/finishability, retry safety, mismatches, and the next repository action without mutating GitHub.",
|
|
18468
18468
|
inputSchema: {
|
|
18469
18469
|
runId: exports_external.string().describe("the active isolated WRITE Run to inspect, run_…")
|
|
18470
18470
|
},
|
|
@@ -18475,7 +18475,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18475
18475
|
{
|
|
18476
18476
|
name: "computer_run_finish",
|
|
18477
18477
|
title: "Finish a run",
|
|
18478
|
-
description: "
|
|
18478
|
+
description: "Finish a Run with an explicit terminal outcome after its work is complete or intentionally abandoned. Ordinary finish succeeds unless Arbor proves isolated WRITE work non-durable; use discard=true only to intentionally destroy that proven non-durable work; publication can remain unknown, repeating the same outcome is a safe no-op, and the receipt preserves the durability assessment.",
|
|
18479
18479
|
inputSchema: {
|
|
18480
18480
|
runId: exports_external.string().describe("the runId returned by computer_run_start, run_…"),
|
|
18481
18481
|
outcome: exports_external.enum(["finished", "failed", "cancelled"]).optional().describe("terminal outcome; defaults to finished"),
|
|
@@ -18489,7 +18489,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18489
18489
|
{
|
|
18490
18490
|
name: "computer_run_receipt",
|
|
18491
18491
|
title: "Read a run receipt",
|
|
18492
|
-
description: "READ ONLY:
|
|
18492
|
+
description: "READ ONLY: Inspect one Run's durable receipt during or after execution when you need purpose, placement, durability, recoverable operation state, activity, or terminal outcome. Returns compact Run history and assessments, including durable operation receipts, not raw command transcripts or process output.",
|
|
18493
18493
|
inputSchema: {
|
|
18494
18494
|
runId: exports_external.string().describe("the run to read, run_… (from computer_run_start or computer_runs)")
|
|
18495
18495
|
},
|
|
@@ -18500,7 +18500,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18500
18500
|
{
|
|
18501
18501
|
name: "computer_runs",
|
|
18502
18502
|
title: "List runs",
|
|
18503
|
-
description: "READ ONLY:
|
|
18503
|
+
description: "READ ONLY: List active or recent Runs for this Thread Computer when deciding whether to resume existing work or start another unit. Returns each Run's mode, execution placement, workspace identity, and lifecycle status.",
|
|
18504
18504
|
inputSchema: {
|
|
18505
18505
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18506
18506
|
status: exports_external.enum(["active", "finished", "failed", "cancelled"]).optional().describe("filter to one lifecycle status"),
|
|
@@ -18513,12 +18513,12 @@ var ACTION_DEFINITIONS = [
|
|
|
18513
18513
|
{
|
|
18514
18514
|
name: "computer_exec",
|
|
18515
18515
|
title: "Run a command",
|
|
18516
|
-
description: "Run one bounded
|
|
18516
|
+
description: "Run one bounded shell operation in the parent Computer or a Run; connected humans receive ambient GitHub authorization and Git identity without workspace credentials. Background work returns a processId, and a missed isolated-Run foreground response can be recovered from computer_run_receipt.operations with computer_process_read instead of repeating the mutation.",
|
|
18517
18517
|
inputSchema: {
|
|
18518
18518
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18519
18519
|
command: exports_external.string().min(1).describe("the shell command to run"),
|
|
18520
18520
|
runId: exports_external.string().optional().describe("route this command according to this Run execution placement, run_… (from computer_run_start)"),
|
|
18521
|
-
cwd: exports_external.string().optional().describe("working directory under /workspace, or under the run"),
|
|
18521
|
+
cwd: exports_external.string().optional().describe("working directory under /workspace, or under the run; omit to use defaultCwd"),
|
|
18522
18522
|
timeout: exports_external.number().int().min(1000).max(1800000).optional().describe("timeout in milliseconds, from 1,000 through 1,800,000"),
|
|
18523
18523
|
background: exports_external.boolean().optional().describe("start a container process and return its pid"),
|
|
18524
18524
|
activityLabel: exports_external.string().min(1).max(COMPUTER_RUN_ACTIVITY_LABEL_MAX).optional().describe("short human-readable label for run-scoped background work; Arbor records this label instead of the raw command or output"),
|
|
@@ -18532,7 +18532,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18532
18532
|
{
|
|
18533
18533
|
name: "computer_process_read",
|
|
18534
18534
|
title: "Read a background process",
|
|
18535
|
-
description: "READ ONLY: Read
|
|
18535
|
+
description: "READ ONLY: Read a provider-owned process from computer_exec, including a foreground operation recovered from a Run receipt, and use nextCursor for incremental output. Returns compact activity or recovery state plus the final exit result when observable.",
|
|
18536
18536
|
inputSchema: {
|
|
18537
18537
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18538
18538
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
@@ -18547,7 +18547,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18547
18547
|
{
|
|
18548
18548
|
name: "computer_process_terminate",
|
|
18549
18549
|
title: "Terminate a background process",
|
|
18550
|
-
description: "Terminate
|
|
18550
|
+
description: "Terminate a background process started by computer_exec when it should no longer run. Stops the provider-owned process tree and returns the observed terminal state without requiring shell PIDs or ps/kill.",
|
|
18551
18551
|
inputSchema: {
|
|
18552
18552
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18553
18553
|
runId: exports_external.string().optional().describe("the Run that owns this process, if it was started inside a Run"),
|
|
@@ -18560,7 +18560,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18560
18560
|
{
|
|
18561
18561
|
name: "computer_status",
|
|
18562
18562
|
title: "Inspect a computer",
|
|
18563
|
-
description: "READ ONLY:
|
|
18563
|
+
description: "READ ONLY: Inspect live Computer capabilities, runtime/process state, and the declared profile when computer_open did not answer a current operational question. Use get_computer instead for durable recipe, generation, and snapshot lineage.",
|
|
18564
18564
|
inputSchema: {
|
|
18565
18565
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…")
|
|
18566
18566
|
},
|
|
@@ -18571,7 +18571,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18571
18571
|
{
|
|
18572
18572
|
name: "computer_verify",
|
|
18573
18573
|
title: "Capture public visual evidence",
|
|
18574
|
-
description: "Capture
|
|
18574
|
+
description: "Capture a 1280×720 screenshot of one public HTTPS URL as Thread evidence without opening the project runtime. Returns capture metadata plus ready-to-place attachments[].markdown; put that Markdown exactly where the image belongs and bind the matching attachmentIds, while localhost and authenticated pages remain unavailable and the capture does not judge correctness.",
|
|
18575
18575
|
inputSchema: {
|
|
18576
18576
|
threadId: exports_external.string().describe("the Arbor Thread that will own the evidence, thr_…"),
|
|
18577
18577
|
targetUrl: exports_external.url().refine((value) => value.startsWith("https://"), "targetUrl must use HTTPS").describe("one public HTTPS URL to capture")
|
|
@@ -18583,7 +18583,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18583
18583
|
{
|
|
18584
18584
|
name: "code_symbols",
|
|
18585
18585
|
title: "Outline a file's symbols",
|
|
18586
|
-
description: "Outline
|
|
18586
|
+
description: "READ ONLY: Outline real declarations in a file or directory when you need structure without reading or searching the whole source. Uses the language server to return symbols and kinds, distinguishing declarations from textual matches.",
|
|
18587
18587
|
inputSchema: {
|
|
18588
18588
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18589
18589
|
runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
|
|
@@ -18596,7 +18596,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18596
18596
|
{
|
|
18597
18597
|
name: "code_find_symbol",
|
|
18598
18598
|
title: "Find a symbol by name path",
|
|
18599
|
-
description: "Locate a declaration by
|
|
18599
|
+
description: "READ ONLY: Locate a declaration by name path when you need the definition rather than text matches. Uses the language server and can include the symbol body and bounded child depth.",
|
|
18600
18600
|
inputSchema: {
|
|
18601
18601
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18602
18602
|
runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
|
|
@@ -18612,7 +18612,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18612
18612
|
{
|
|
18613
18613
|
name: "code_references",
|
|
18614
18614
|
title: "Find what references a symbol",
|
|
18615
|
-
description:
|
|
18615
|
+
description: "READ ONLY: Find semantic references to a declaration when you need to know what actually depends on it before a change. Uses the language server to return resolved references with snippets, excluding unrelated textual matches.",
|
|
18616
18616
|
inputSchema: {
|
|
18617
18617
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18618
18618
|
runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
|
|
@@ -18626,7 +18626,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18626
18626
|
{
|
|
18627
18627
|
name: "code_implementations",
|
|
18628
18628
|
title: "Find implementations of a symbol",
|
|
18629
|
-
description: "
|
|
18629
|
+
description: "READ ONLY: Find concrete implementations or subtypes of an interface, abstract type, or method. Uses the language server to resolve type relationships that text search cannot follow.",
|
|
18630
18630
|
inputSchema: {
|
|
18631
18631
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18632
18632
|
runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
|
|
@@ -18640,7 +18640,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18640
18640
|
{
|
|
18641
18641
|
name: "code_diagnostics",
|
|
18642
18642
|
title: "Read language-server diagnostics for a file",
|
|
18643
|
-
description: "
|
|
18643
|
+
description: "READ ONLY: Check live language-server errors and warnings for one file, especially after an edit. Returns diagnostics mapped to symbols for fast local feedback; it does not replace a whole-project build or typecheck.",
|
|
18644
18644
|
inputSchema: {
|
|
18645
18645
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18646
18646
|
runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
|
|
@@ -18653,7 +18653,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18653
18653
|
{
|
|
18654
18654
|
name: "computer_export",
|
|
18655
18655
|
title: "Export a Thread file",
|
|
18656
|
-
description: "
|
|
18656
|
+
description: "Export one bounded file from the parent Computer or a Run into a durable Thread Attachment when the file itself is evidence. Returns attachment ids and ready-to-place attachments[].markdown; put that Markdown exactly where the media belongs and bind the matching ids, while idempotencyKey controls safe retry identity.",
|
|
18657
18657
|
inputSchema: {
|
|
18658
18658
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18659
18659
|
runId: exports_external.string().optional().describe("route this export according to this Run execution placement, run_…"),
|
|
@@ -18668,7 +18668,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18668
18668
|
{
|
|
18669
18669
|
name: "computer_write",
|
|
18670
18670
|
title: "Write a project file",
|
|
18671
|
-
description: "Write one file
|
|
18671
|
+
description: "Write or replace one file in the parent Computer or a Run when the Computer surface is your filesystem editing path. Routes by runId when supplied and supports UTF-8 or explicit base64 bytes.",
|
|
18672
18672
|
inputSchema: {
|
|
18673
18673
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required unless runId is supplied"),
|
|
18674
18674
|
path: exports_external.string().describe("absolute path under /workspace, or a path inside the run"),
|
|
@@ -18683,7 +18683,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18683
18683
|
{
|
|
18684
18684
|
name: "computer_checkpoint",
|
|
18685
18685
|
title: "Checkpoint completed work",
|
|
18686
|
-
description: "
|
|
18686
|
+
description: "Checkpoint a completed unit from the live parent Thread Computer into durable Thread lineage when more parent work will follow. It is not Run-scoped; isolated Run work must be made durable through its repository workflow, and running background processes can block the checkpoint.",
|
|
18687
18687
|
inputSchema: {
|
|
18688
18688
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…")
|
|
18689
18689
|
},
|
|
@@ -18694,7 +18694,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18694
18694
|
{
|
|
18695
18695
|
name: "computer_publish_preview",
|
|
18696
18696
|
title: "Publish an immutable static Preview",
|
|
18697
|
-
description: "Publish one checked HTML file or bounded static
|
|
18697
|
+
description: "Publish one checked HTML file or bounded static directory as a private immutable Preview for review. Parent publication checkpoints first; isolated Run publication freezes that Run's bytes without adopting it, and the returned arborthreads.dev URL survives teardown.",
|
|
18698
18698
|
inputSchema: {
|
|
18699
18699
|
computerSessionId: exports_external.string().optional().describe("the computerSessionId returned by computer_open, cms_…; required for parent publication, optional when runId is supplied"),
|
|
18700
18700
|
runId: exports_external.string().optional().describe("active isolated write Run whose static workspace bytes should be published as review output"),
|
|
@@ -18709,7 +18709,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18709
18709
|
{
|
|
18710
18710
|
name: "computer_publish_app_bundle",
|
|
18711
18711
|
title: "Publish an immutable AppBundle",
|
|
18712
|
-
description: "
|
|
18712
|
+
description: "Publish a content-addressed AppBundle from the live parent Computer after a green build when an ArtifactVersion is ready for app deployment. Verifies entry bytes against the ArtifactVersion, captures source/Git provenance and static assets, and returns bundleId; isolated Runs are not accepted.",
|
|
18713
18713
|
inputSchema: {
|
|
18714
18714
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18715
18715
|
artifactVersionId: exports_external.string().describe("the source ArtifactVersion, artv_…"),
|
|
@@ -18731,7 +18731,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18731
18731
|
{
|
|
18732
18732
|
name: "computer_stop",
|
|
18733
18733
|
title: "Checkpoint and stop",
|
|
18734
|
-
description: "
|
|
18734
|
+
description: "Checkpoint and stop an opened parent Computer after the final unit of work. Teardown is refused if checkpoint durability fails or a background process is still running, so state is not silently discarded.",
|
|
18735
18735
|
inputSchema: {
|
|
18736
18736
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…")
|
|
18737
18737
|
},
|
package/package.json
CHANGED