@lambdacurry/arbor 0.21.14 → 0.21.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.
Files changed (2) hide show
  1. package/dist/arbor.js +32 -7
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -17960,6 +17960,13 @@ var MCP_OUTPUT_SCHEMAS = {
17960
17960
  nextCursor: exports_external.string().nullable().optional(),
17961
17961
  hasMore: exports_external.boolean().optional()
17962
17962
  }),
17963
+ github_refresh_installation: exports_external.looseObject({
17964
+ installationId: id,
17965
+ accountLogin: exports_external.string(),
17966
+ repositorySelection: exports_external.enum(["all", "selected"]),
17967
+ repositoryCount: exports_external.number().int().min(0),
17968
+ lastSyncedAt: timestamp
17969
+ }),
17963
17970
  github_connect_repository: exports_external.looseObject({
17964
17971
  repositoryId: id,
17965
17972
  scope: exports_external.enum(["organization", "space", "topic", "thread"]),
@@ -18010,7 +18017,11 @@ var MCP_OUTPUT_SCHEMAS = {
18010
18017
  unchanged: exports_external.boolean().optional()
18011
18018
  }),
18012
18019
  tree: exports_external.looseObject({ spaces: exports_external.array(treeSpace) }),
18013
- members: exports_external.looseObject({ members: exports_external.array(orgMember), total: exports_external.number().optional() }),
18020
+ members: exports_external.looseObject({
18021
+ members: exports_external.array(orgMember),
18022
+ total: exports_external.number().optional(),
18023
+ nextCursor: exports_external.string().optional()
18024
+ }),
18014
18025
  space_create: exports_external.looseObject({ spaceId: id, visibility: exports_external.string() }),
18015
18026
  space_update: exports_external.looseObject({
18016
18027
  id,
@@ -18096,7 +18107,9 @@ var MCP_OUTPUT_SCHEMAS = {
18096
18107
  watching: exports_external.boolean()
18097
18108
  }),
18098
18109
  watch_list: exports_external.looseObject({
18099
- watches: exports_external.array(jsonObject).optional()
18110
+ watches: exports_external.array(jsonObject).optional(),
18111
+ total: exports_external.number().int().min(0),
18112
+ nextCursor: exports_external.string().optional()
18100
18113
  }),
18101
18114
  curation: exports_external.looseObject({
18102
18115
  contributionId: id.optional(),
@@ -18865,6 +18878,7 @@ var MCP_TOOL_ANNOTATIONS = {
18865
18878
  app_archive: additive,
18866
18879
  charter: destructive,
18867
18880
  github_repositories: readOnly,
18881
+ github_refresh_installation: openWorld,
18868
18882
  github_connect_repository: idempotent,
18869
18883
  computer_open: additive,
18870
18884
  computer_reprovision: destructiveIdempotent,
@@ -18931,7 +18945,7 @@ Arbor Computer is the complete software execution platform attached to Arbor's d
18931
18945
 
18932
18946
  ${ARBOR_FEEDBACK_GUIDANCE}
18933
18947
 
18934
- 1. ORIENT, CONFIGURE, AND AUTHORIZE. Start with get_computer(threadId) to inspect the effective inherited recipe, repository authorization, compatibility, and durable lineage. Use set_organization_computer, set_space_computer, set_topic_computer, or set_thread_computer only when the corresponding complete sparse layer must be replaced; use github_repositories then github_connect_repository to authorize repositories at the narrowest scope that should inherit them. attach_computer mints durable protocol identity without starting a runtime; computer_open attaches as needed and starts or resumes the project environment. Each returned repository entry includes verified root instruction pointers when that repo has an AGENTS.md: read surfaced repository instructions before substantial edits or verification, then check for a nearer nested AGENTS.md once the target path is known. Repo-local instructions/scripts/config beat guessed formatter, test, lint, or build commands.
18948
+ 1. ORIENT, CONFIGURE, AND AUTHORIZE. Start with get_computer(threadId) to inspect the effective inherited recipe, repository authorization, compatibility, and durable lineage. Use set_organization_computer, set_space_computer, set_topic_computer, or set_thread_computer only when the corresponding complete sparse layer must be replaced; use github_repositories then github_connect_repository to authorize repositories at the narrowest scope that should inherit them. If github_repositories looks stale, github_refresh_installation reconciles the cached inventory from GitHub. attach_computer mints durable protocol identity without starting a runtime; computer_open attaches as needed and starts or resumes the project environment. Each returned repository entry includes verified root instruction pointers when that repo has an AGENTS.md: read surfaced repository instructions before substantial edits or verification, then check for a nearer nested AGENTS.md once the target path is known. Repo-local instructions/scripts/config beat guessed formatter, test, lint, or build commands.
18935
18949
  2. READ THE CAPABILITIES CARD, NOT THE BACKEND. computer_open and computer_status describe the live PARENT Thread Computer and return the exact computerSessionId for parent filesystem, command, checkpoint, Preview, bundle, and stop operations. computer_status does not establish isolated Run activity; use computer_run_receipt(runId) and computer_process_read for Run-owned work. Command-line utilities, including Git and package managers, run through computer_exec; check unfamiliar binaries with command -v.
18936
18950
  3. ONE RUN PER TASK. A write Run defaults to an isolated execution environment with its own filesystem, processes, ports, and /tmp while preserving /workspace paths; a read Run shares the parent. Pass runId to Run-aware tools. If a response is lost, recover the durable operation/process identity from computer_run_receipt and read it before retrying. Once every operation is settled, computer_run_suspend publishes the exact workspace and releases the provider during an external wait; the next Run-aware operation restores that checkpoint under the same runId automatically. Suspension refuses active processes or unsettled outcomes and never replays unknown work, so reconcile process and Git/publication evidence first. An isolated local commit or Preview is not Git publication; push coherent work and prove it with computer_repo_work_status before computer_run_finish destroys the final placement. discard=true is the explicit choice to destroy proven non-durable work.
18937
18951
  4. CHECKPOINT COMPLETE PARENT UNITS. computer_checkpoint advances immutable parent lineage after an intermediate complete unit; computer_stop performs the final checkpoint before teardown. An isolated Run Preview is durable review output, not adoption or a checkpoint. The internal provider-handle publication operations are not agent tools.
@@ -19048,12 +19062,23 @@ var ACTION_DEFINITIONS = [
19048
19062
  {
19049
19063
  name: "github_repositories",
19050
19064
  title: "List installed GitHub repositories",
19051
- description: "List repositories covered by this organization's verified Arbor Computer GitHub App, returning ids and metadata but never credentials. Use github_connect_repository to authorize one at an Arbor scope; listing alone grants no Computer access.",
19065
+ description: "List repositories covered by this organization's verified Arbor Computer GitHub App (ids and metadata, never credentials); listing alone grants no Computer access. Use github_connect_repository to authorize one at an Arbor scope, or github_refresh_installation when the cached inventory looks stale.",
19052
19066
  inputSchema: { ...PAGINATION_INPUT },
19053
19067
  surfaces: ["computer-mcp", "cli"],
19054
19068
  toolset: "projects",
19055
19069
  run: forward("github.repositories")
19056
19070
  },
19071
+ {
19072
+ name: "github_refresh_installation",
19073
+ title: "Refresh a GitHub installation inventory",
19074
+ description: "Reconcile one claimed GitHub App installation's cached repository inventory from GitHub without connecting repositories or changing App permissions. Org owner/admin only; pass installationId from github_repositories.",
19075
+ inputSchema: {
19076
+ installationId: exports_external.string().describe("claimed installation id from github_repositories, ghi_…")
19077
+ },
19078
+ surfaces: ["computer-mcp", "cli"],
19079
+ toolset: "projects",
19080
+ run: forward("github.refresh_installation")
19081
+ },
19057
19082
  {
19058
19083
  name: "github_connect_repository",
19059
19084
  title: "Connect a GitHub repository",
@@ -20293,7 +20318,7 @@ var ACTION_DEFINITIONS = [
20293
20318
  name: "members",
20294
20319
  title: "List the people + agents in your org",
20295
20320
  description: "List everyone in your org with profile id, human/agent identity, role, charter, and capabilities needed for routing. Use it to resolve profile ids for mentions or targeted requests; it cannot modify membership.",
20296
- inputSchema: {},
20321
+ inputSchema: { ...PAGINATION_INPUT },
20297
20322
  surfaces: ["mcp", "cli"],
20298
20323
  toolset: "loop",
20299
20324
  run: forward("org.members")
@@ -20779,7 +20804,7 @@ var ACTION_DEFINITIONS = [
20779
20804
  name: "watch_list",
20780
20805
  title: "List your watches",
20781
20806
  description: "List every Thread, Artifact, and Topic you currently watch. It cannot start or stop a watch or change notifications.",
20782
- inputSchema: {},
20807
+ inputSchema: { ...PAGINATION_INPUT },
20783
20808
  surfaces: ["mcp"],
20784
20809
  toolset: "loop",
20785
20810
  run: forward("watch.list")
@@ -20812,7 +20837,7 @@ var ACTION_DEFINITIONS = [
20812
20837
  name: "watches",
20813
20838
  title: "List what you watch",
20814
20839
  description: "List every thread/artifact/topic you're watching (AD-202), newest first.",
20815
- inputSchema: {},
20840
+ inputSchema: { ...PAGINATION_INPUT },
20816
20841
  surfaces: ["cli"],
20817
20842
  toolset: "loop",
20818
20843
  run: forward("watch.list")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.21.14",
3
+ "version": "0.21.15",
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",