@lambdacurry/arbor 0.21.14 → 0.21.16
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 +39 -8
- 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({
|
|
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(),
|
|
@@ -18206,7 +18219,11 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18206
18219
|
url: exports_external.string(),
|
|
18207
18220
|
replayed: exports_external.boolean()
|
|
18208
18221
|
}),
|
|
18209
|
-
app_list: exports_external.
|
|
18222
|
+
app_list: exports_external.looseObject({
|
|
18223
|
+
apps: exports_external.array(app2),
|
|
18224
|
+
total: exports_external.number().int().min(0),
|
|
18225
|
+
nextCursor: exports_external.string().optional()
|
|
18226
|
+
}),
|
|
18210
18227
|
app_get: exports_external.looseObject({
|
|
18211
18228
|
app: app2,
|
|
18212
18229
|
deployments: exports_external.array(jsonObject),
|
|
@@ -18865,6 +18882,7 @@ var MCP_TOOL_ANNOTATIONS = {
|
|
|
18865
18882
|
app_archive: additive,
|
|
18866
18883
|
charter: destructive,
|
|
18867
18884
|
github_repositories: readOnly,
|
|
18885
|
+
github_refresh_installation: openWorld,
|
|
18868
18886
|
github_connect_repository: idempotent,
|
|
18869
18887
|
computer_open: additive,
|
|
18870
18888
|
computer_reprovision: destructiveIdempotent,
|
|
@@ -18931,7 +18949,7 @@ Arbor Computer is the complete software execution platform attached to Arbor's d
|
|
|
18931
18949
|
|
|
18932
18950
|
${ARBOR_FEEDBACK_GUIDANCE}
|
|
18933
18951
|
|
|
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.
|
|
18952
|
+
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
18953
|
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
18954
|
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
18955
|
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 +19066,23 @@ var ACTION_DEFINITIONS = [
|
|
|
19048
19066
|
{
|
|
19049
19067
|
name: "github_repositories",
|
|
19050
19068
|
title: "List installed GitHub repositories",
|
|
19051
|
-
description: "List repositories covered by this organization's verified Arbor Computer GitHub App
|
|
19069
|
+
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
19070
|
inputSchema: { ...PAGINATION_INPUT },
|
|
19053
19071
|
surfaces: ["computer-mcp", "cli"],
|
|
19054
19072
|
toolset: "projects",
|
|
19055
19073
|
run: forward("github.repositories")
|
|
19056
19074
|
},
|
|
19075
|
+
{
|
|
19076
|
+
name: "github_refresh_installation",
|
|
19077
|
+
title: "Refresh a GitHub installation inventory",
|
|
19078
|
+
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.",
|
|
19079
|
+
inputSchema: {
|
|
19080
|
+
installationId: exports_external.string().describe("claimed installation id from github_repositories, ghi_…")
|
|
19081
|
+
},
|
|
19082
|
+
surfaces: ["computer-mcp", "cli"],
|
|
19083
|
+
toolset: "projects",
|
|
19084
|
+
run: forward("github.refresh_installation")
|
|
19085
|
+
},
|
|
19057
19086
|
{
|
|
19058
19087
|
name: "github_connect_repository",
|
|
19059
19088
|
title: "Connect a GitHub repository",
|
|
@@ -20293,7 +20322,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20293
20322
|
name: "members",
|
|
20294
20323
|
title: "List the people + agents in your org",
|
|
20295
20324
|
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: {},
|
|
20325
|
+
inputSchema: { ...PAGINATION_INPUT },
|
|
20297
20326
|
surfaces: ["mcp", "cli"],
|
|
20298
20327
|
toolset: "loop",
|
|
20299
20328
|
run: forward("org.members")
|
|
@@ -20779,7 +20808,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20779
20808
|
name: "watch_list",
|
|
20780
20809
|
title: "List your watches",
|
|
20781
20810
|
description: "List every Thread, Artifact, and Topic you currently watch. It cannot start or stop a watch or change notifications.",
|
|
20782
|
-
inputSchema: {},
|
|
20811
|
+
inputSchema: { ...PAGINATION_INPUT },
|
|
20783
20812
|
surfaces: ["mcp"],
|
|
20784
20813
|
toolset: "loop",
|
|
20785
20814
|
run: forward("watch.list")
|
|
@@ -20812,7 +20841,7 @@ var ACTION_DEFINITIONS = [
|
|
|
20812
20841
|
name: "watches",
|
|
20813
20842
|
title: "List what you watch",
|
|
20814
20843
|
description: "List every thread/artifact/topic you're watching (AD-202), newest first.",
|
|
20815
|
-
inputSchema: {},
|
|
20844
|
+
inputSchema: { ...PAGINATION_INPUT },
|
|
20816
20845
|
surfaces: ["cli"],
|
|
20817
20846
|
toolset: "loop",
|
|
20818
20847
|
run: forward("watch.list")
|
|
@@ -21085,6 +21114,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21085
21114
|
title: "List visible Apps",
|
|
21086
21115
|
description: "List Apps available to you: every App in your Spaces plus active listed public Apps across the organization. Lifecycle and last activation health are separate fields; unlisted public and archived Apps appear only to actors authorized for their owning Space.",
|
|
21087
21116
|
inputSchema: {
|
|
21117
|
+
...PAGINATION_INPUT,
|
|
21088
21118
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21089
21119
|
},
|
|
21090
21120
|
surfaces: ["cli"],
|
|
@@ -21096,6 +21126,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21096
21126
|
title: "List visible Apps",
|
|
21097
21127
|
description: "List Apps visible to you, including authorized archived Apps when requested. It cannot modify App state, deployment state, access, or durable SQLite.",
|
|
21098
21128
|
inputSchema: {
|
|
21129
|
+
...PAGINATION_INPUT,
|
|
21099
21130
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21100
21131
|
},
|
|
21101
21132
|
surfaces: ["computer-mcp"],
|
package/package.json
CHANGED