@lambdacurry/arbor 0.12.7 → 0.12.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.
Files changed (2) hide show
  1. package/dist/arbor.js +15 -0
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -16742,6 +16742,21 @@ var ACTIONS = [
16742
16742
  toolset: "loop",
16743
16743
  run: forward("computer_runtime.clone")
16744
16744
  },
16745
+ {
16746
+ name: "computer_sync",
16747
+ title: "Sync an allowed repository",
16748
+ description: "Fetch, fast-forward pull, or push the checked-out branch of a cloned recipe repository using the working collaborator's GitHub token just in time. The lightweight Computer fixes the allowlisted GitHub URL, never force-pushes or deletes refs, and neither stores nor returns the token.",
16749
+ inputSchema: {
16750
+ computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
16751
+ repository: exports_external.string().describe("allowed owner/repository slug already cloned by computer_clone"),
16752
+ operation: exports_external.enum(["fetch", "pull", "push"]).describe("network operation to perform"),
16753
+ githubToken: exports_external.string().min(1).describe("short-lived GitHub token supplied by the caller"),
16754
+ githubUsername: exports_external.string().optional().describe("GitHub username; defaults to x-access-token")
16755
+ },
16756
+ surfaces: ["computer-mcp", "computer-cli"],
16757
+ toolset: "loop",
16758
+ run: forward("computer_runtime.sync")
16759
+ },
16745
16760
  {
16746
16761
  name: "computer_checkpoint",
16747
16762
  title: "Checkpoint completed work",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.12.7",
3
+ "version": "0.12.8",
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",