@autohq/cli 0.1.327 → 0.1.328

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.
@@ -23434,7 +23434,7 @@ Object.assign(lookup, {
23434
23434
  // package.json
23435
23435
  var package_default = {
23436
23436
  name: "@autohq/cli",
23437
- version: "0.1.327",
23437
+ version: "0.1.328",
23438
23438
  license: "SEE LICENSE IN README.md",
23439
23439
  publishConfig: {
23440
23440
  access: "public"
package/dist/index.js CHANGED
@@ -28558,7 +28558,7 @@ var init_package = __esm({
28558
28558
  "package.json"() {
28559
28559
  package_default = {
28560
28560
  name: "@autohq/cli",
28561
- version: "0.1.327",
28561
+ version: "0.1.328",
28562
28562
  license: "SEE LICENSE IN README.md",
28563
28563
  publishConfig: {
28564
28564
  access: "public"
@@ -30165,7 +30165,9 @@ function assertNoDuplicateFacadeField2(input) {
30165
30165
  }
30166
30166
  }
30167
30167
  function supportedRemovalTargets() {
30168
- return ["tools", "triggers"].filter((key) => AGENT_FIELDS[key]?.remove);
30168
+ return ["tools", "triggers", "env"].filter(
30169
+ (key) => AGENT_FIELDS[key]?.remove
30170
+ );
30169
30171
  }
30170
30172
  var AGENT_FIELDS;
30171
30173
  var init_agent_fields = __esm({
@@ -30189,7 +30191,9 @@ var init_agent_fields = __esm({
30189
30191
  identity: inlineIdentityField(),
30190
30192
  initialPrompt: fileBackedStringField(),
30191
30193
  displayTitle: specField(),
30192
- env: specField(),
30194
+ // Named map so variants can drop inherited env vars (e.g. a lean variant
30195
+ // removing an imported fragment's secret-backed token) with `remove.env`.
30196
+ env: namedMapField(),
30193
30197
  mounts: mountsField(),
30194
30198
  triggers: triggersField(),
30195
30199
  session: specField(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autohq/cli",
3
- "version": "0.1.327",
3
+ "version": "0.1.328",
4
4
  "license": "SEE LICENSE IN README.md",
5
5
  "publishConfig": {
6
6
  "access": "public"