@lambdacurry/arbor 0.20.16 → 0.20.17

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.
Files changed (2) hide show
  1. package/dist/arbor.js +17 -29
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -17802,21 +17802,14 @@ var MCP_OUTPUT_SCHEMAS = {
17802
17802
  replayed: exports_external.boolean()
17803
17803
  }),
17804
17804
  computer_stop: exports_external.looseObject({ checkpoint, stopped: jsonObject }),
17805
- code_symbols: exports_external.looseObject({
17806
- computerSessionId: id,
17807
- path: exports_external.string(),
17805
+ code_symbols: exports_external.object({
17808
17806
  symbols: exports_external.array(codeSymbol)
17809
17807
  }),
17810
- code_find_symbol: exports_external.looseObject({
17811
- computerSessionId: id,
17812
- namePath: exports_external.string(),
17808
+ code_find_symbol: exports_external.object({
17813
17809
  symbols: exports_external.array(codeSymbol)
17814
17810
  }),
17815
- code_references: exports_external.looseObject({
17816
- computerSessionId: id,
17817
- namePath: exports_external.string(),
17818
- path: exports_external.string(),
17819
- references: exports_external.array(exports_external.looseObject({
17811
+ code_references: exports_external.object({
17812
+ references: exports_external.array(exports_external.object({
17820
17813
  path: exports_external.string(),
17821
17814
  namePath: exports_external.string().optional(),
17822
17815
  startLine: exports_external.number().optional(),
@@ -17824,16 +17817,11 @@ var MCP_OUTPUT_SCHEMAS = {
17824
17817
  })),
17825
17818
  truncated: exports_external.boolean()
17826
17819
  }),
17827
- code_implementations: exports_external.looseObject({
17828
- computerSessionId: id,
17829
- namePath: exports_external.string(),
17830
- path: exports_external.string(),
17820
+ code_implementations: exports_external.object({
17831
17821
  symbols: exports_external.array(codeSymbol)
17832
17822
  }),
17833
- code_diagnostics: exports_external.looseObject({
17834
- computerSessionId: id,
17835
- path: exports_external.string(),
17836
- diagnostics: exports_external.array(exports_external.looseObject({
17823
+ code_diagnostics: exports_external.object({
17824
+ diagnostics: exports_external.array(exports_external.object({
17837
17825
  severity: exports_external.enum(["error", "warning", "information", "hint"]),
17838
17826
  message: exports_external.string(),
17839
17827
  path: exports_external.string(),
@@ -18713,8 +18701,8 @@ var ACTION_DEFINITIONS = [
18713
18701
  title: "Outline a file's symbols",
18714
18702
  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.",
18715
18703
  inputSchema: {
18716
- computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18717
- runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
18704
+ computerSessionId: exports_external.string().optional().describe("parent Computer target; optional when runId is supplied, otherwise required; if both are supplied they must agree"),
18705
+ runId: exports_external.string().optional().describe("Run target that resolves its owning Computer session, run_…"),
18718
18706
  path: exports_external.string().max(512).describe("file or directory, absolute under /workspace or workspace-relative")
18719
18707
  },
18720
18708
  surfaces: ["computer-mcp", "computer-cli"],
@@ -18726,8 +18714,8 @@ var ACTION_DEFINITIONS = [
18726
18714
  title: "Find a symbol by name path",
18727
18715
  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.",
18728
18716
  inputSchema: {
18729
- computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18730
- runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
18717
+ computerSessionId: exports_external.string().optional().describe("parent Computer target; optional when runId is supplied, otherwise required; if both are supplied they must agree"),
18718
+ runId: exports_external.string().optional().describe("Run target that resolves its owning Computer session, run_…"),
18731
18719
  namePath: exports_external.string().min(1).max(200).describe("symbol name path within a file, e.g. MyClass/myMethod"),
18732
18720
  path: exports_external.string().max(512).optional().describe("optional file or directory to restrict the search to"),
18733
18721
  includeBody: exports_external.boolean().optional().describe("include each symbol's source body"),
@@ -18742,8 +18730,8 @@ var ACTION_DEFINITIONS = [
18742
18730
  title: "Find what references a symbol",
18743
18731
  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.",
18744
18732
  inputSchema: {
18745
- computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18746
- runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
18733
+ computerSessionId: exports_external.string().optional().describe("parent Computer target; optional when runId is supplied, otherwise required; if both are supplied they must agree"),
18734
+ runId: exports_external.string().optional().describe("Run target that resolves its owning Computer session, run_…"),
18747
18735
  namePath: exports_external.string().min(1).max(200).describe("name path of the symbol to trace"),
18748
18736
  path: exports_external.string().max(512).describe("the file declaring that symbol, absolute under /workspace or workspace-relative")
18749
18737
  },
@@ -18756,8 +18744,8 @@ var ACTION_DEFINITIONS = [
18756
18744
  title: "Find implementations of a symbol",
18757
18745
  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.",
18758
18746
  inputSchema: {
18759
- computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18760
- runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
18747
+ computerSessionId: exports_external.string().optional().describe("parent Computer target; optional when runId is supplied, otherwise required; if both are supplied they must agree"),
18748
+ runId: exports_external.string().optional().describe("Run target that resolves its owning Computer session, run_…"),
18761
18749
  namePath: exports_external.string().min(1).max(200).describe("name path of the interface, type, or method"),
18762
18750
  path: exports_external.string().max(512).describe("the file declaring that symbol, absolute under /workspace or workspace-relative")
18763
18751
  },
@@ -18770,8 +18758,8 @@ var ACTION_DEFINITIONS = [
18770
18758
  title: "Read language-server diagnostics for a file",
18771
18759
  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.",
18772
18760
  inputSchema: {
18773
- computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
18774
- runId: exports_external.string().optional().describe("route this semantic read according to this Run execution placement, run_…"),
18761
+ computerSessionId: exports_external.string().optional().describe("parent Computer target; optional when runId is supplied, otherwise required; if both are supplied they must agree"),
18762
+ runId: exports_external.string().optional().describe("Run target that resolves its owning Computer session, run_…"),
18775
18763
  path: exports_external.string().max(512).describe("the file to inspect, absolute under /workspace or workspace-relative")
18776
18764
  },
18777
18765
  surfaces: ["computer-mcp", "computer-cli"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.20.16",
3
+ "version": "0.20.17",
4
4
  "description": "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
5
5
  "keywords": [
6
6
  "agents",