@lambdacurry/arbor 0.21.45 → 0.21.47

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 +7 -5
  2. package/package.json +1 -1
package/dist/arbor.js CHANGED
@@ -16,7 +16,7 @@ var __export = (target, all) => {
16
16
  // package.json
17
17
  var package_default = {
18
18
  name: "@lambdacurry/arbor",
19
- version: "0.21.45",
19
+ version: "0.21.47",
20
20
  description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
21
21
  keywords: [
22
22
  "agents",
@@ -18604,7 +18604,7 @@ var MCP_OUTPUT_SCHEMAS = {
18604
18604
  computerSessionId: id,
18605
18605
  computerId: id,
18606
18606
  status: exports_external.enum(["running", "dormant"]),
18607
- readiness: exports_external.enum(["ready", "sleeping", "decision-required"]).optional(),
18607
+ readiness: exports_external.enum(["ready", "sleeping"]).optional(),
18608
18608
  backend: exports_external.enum(["worker-shell", "container"]),
18609
18609
  profile: computerProfile.nullable(),
18610
18610
  capabilities: computerCapabilityCard,
@@ -22137,7 +22137,8 @@ function legacyTarget() {
22137
22137
  path: envPath ?? defaultPath,
22138
22138
  defaultPath,
22139
22139
  isolated: Boolean(envPath),
22140
- named: false
22140
+ named: false,
22141
+ explicitProfile: false
22141
22142
  };
22142
22143
  }
22143
22144
  function resolveTarget(opts) {
@@ -22171,7 +22172,8 @@ function resolveTarget(opts) {
22171
22172
  defaultPath: defaultConfigPath(),
22172
22173
  isolated: true,
22173
22174
  profile: selected2,
22174
- named: true
22175
+ named: true,
22176
+ explicitProfile: profileFlag !== undefined
22175
22177
  };
22176
22178
  }
22177
22179
  function configureConfigTarget(opts) {
@@ -22266,7 +22268,7 @@ function defaultConfigOverwriteBlocked(opts) {
22266
22268
  }
22267
22269
  function loadConfig() {
22268
22270
  const target = currentTarget();
22269
- const envToken = process.env.ARBOR_TOKEN || undefined;
22271
+ const envToken = target.explicitProfile ? undefined : process.env.ARBOR_TOKEN || undefined;
22270
22272
  const envUrl = process.env.ARBOR_API_URL || undefined;
22271
22273
  if (target.named)
22272
22274
  rejectSymlink(target.path, `Arbor profile ${target.profile}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambdacurry/arbor",
3
- "version": "0.21.45",
3
+ "version": "0.21.47",
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",