@integrity-labs/agt-cli 0.28.503 → 0.28.504
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/bin/agt.js +4 -4
- package/dist/{chunk-GR375XXG.js → chunk-GXEXHVNW.js} +55 -13
- package/dist/{chunk-GR375XXG.js.map → chunk-GXEXHVNW.js.map} +1 -1
- package/dist/{chunk-GBSMIV4P.js → chunk-HEUDF73X.js} +48 -2
- package/dist/chunk-HEUDF73X.js.map +1 -0
- package/dist/{claude-pair-runtime-JEMJAZPB.js → claude-pair-runtime-E3KMHKQQ.js} +2 -2
- package/dist/lib/manager-worker.js +112 -21
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +17 -0
- package/dist/mcp/origami.js +17 -0
- package/dist/mcp/slack-channel.js +17 -0
- package/dist/mcp/telegram-channel.js +17 -0
- package/dist/{persistent-session-4PVEGHA5.js → persistent-session-AB4SAH5B.js} +2 -2
- package/dist/{responsiveness-probe-PNKFXRVF.js → responsiveness-probe-O4SCSCKC.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-GBSMIV4P.js.map +0 -1
- /package/dist/{claude-pair-runtime-JEMJAZPB.js.map → claude-pair-runtime-E3KMHKQQ.js.map} +0 -0
- /package/dist/{persistent-session-4PVEGHA5.js.map → persistent-session-AB4SAH5B.js.map} +0 -0
- /package/dist/{responsiveness-probe-PNKFXRVF.js.map → responsiveness-probe-O4SCSCKC.js.map} +0 -0
|
@@ -35121,6 +35121,23 @@ var FLAG_REGISTRY = [
|
|
|
35121
35121
|
// safety control, so mutations require explicit confirmation.
|
|
35122
35122
|
sensitive: true
|
|
35123
35123
|
},
|
|
35124
|
+
{
|
|
35125
|
+
key: "docker-hygiene",
|
|
35126
|
+
description: "Manager-side docker hygiene on Docker-isolated hosts (ENG-8401): off = no-op, reap-superseded = after a successful agt-runtime retag, remove the prior untagged agt-runtime images that retag orphaned (Layer 1), full = reap-superseded plus a daily dangling-only image+builder prune (Layer 2). agt-runtime:latest and the just-pulled image are never removed and -a/--volumes are never used. Read host-side via hostFlagStore (getString); ships dark.",
|
|
35127
|
+
flagType: "enum",
|
|
35128
|
+
allowedValues: ["off", "reap-superseded", "full"],
|
|
35129
|
+
// Declared safe value is `off`: this flag introduces NEW janitorial behaviour
|
|
35130
|
+
// (the pre-flag compiled behaviour is "never reap"), so off preserves fleet
|
|
35131
|
+
// behaviour on rollout. Not `sensitive` — weakening it (full → off) only stops
|
|
35132
|
+
// cleanup; it relaxes no safety/enforcement control. No envVar by design: this
|
|
35133
|
+
// gate is flag-managed only, with no operator env override.
|
|
35134
|
+
defaultValue: "off",
|
|
35135
|
+
// New host-side reader (ENG-8401): its consumer lands in the agt-cli build
|
|
35136
|
+
// this PR publishes (auto-publish patch-bumps from npm's current 0.28.503 →
|
|
35137
|
+
// 0.28.504), so a flip only takes effect on hosts running >= that version.
|
|
35138
|
+
// Best-effort reach estimate only; not part of the schema fingerprint.
|
|
35139
|
+
since: "0.28.504"
|
|
35140
|
+
},
|
|
35124
35141
|
{
|
|
35125
35142
|
key: "composio-hitl-mode",
|
|
35126
35143
|
description: "Composio managed-toolkits HITL gate (ENG-6027): off = kill switch, shadow = resolve + audit the tier decision but never block, enforce = block write_high_risk+ calls and route them to Human Approval (an Approve/Deny card). Since ENG-7828 enforce ALWAYS routes to a Human Approval card by default; set hitl-approval-routing=off to make enforce a hard block with no approval instead. Per-org rollout from the admin Feature Flags page; ENG-7672 migrated this off the fleet-wide COMPOSIO_HITL_MODE env var.",
|
package/dist/mcp/origami.js
CHANGED
|
@@ -41012,6 +41012,23 @@ var FLAG_REGISTRY = [
|
|
|
41012
41012
|
// safety control, so mutations require explicit confirmation.
|
|
41013
41013
|
sensitive: true
|
|
41014
41014
|
},
|
|
41015
|
+
{
|
|
41016
|
+
key: "docker-hygiene",
|
|
41017
|
+
description: "Manager-side docker hygiene on Docker-isolated hosts (ENG-8401): off = no-op, reap-superseded = after a successful agt-runtime retag, remove the prior untagged agt-runtime images that retag orphaned (Layer 1), full = reap-superseded plus a daily dangling-only image+builder prune (Layer 2). agt-runtime:latest and the just-pulled image are never removed and -a/--volumes are never used. Read host-side via hostFlagStore (getString); ships dark.",
|
|
41018
|
+
flagType: "enum",
|
|
41019
|
+
allowedValues: ["off", "reap-superseded", "full"],
|
|
41020
|
+
// Declared safe value is `off`: this flag introduces NEW janitorial behaviour
|
|
41021
|
+
// (the pre-flag compiled behaviour is "never reap"), so off preserves fleet
|
|
41022
|
+
// behaviour on rollout. Not `sensitive` — weakening it (full → off) only stops
|
|
41023
|
+
// cleanup; it relaxes no safety/enforcement control. No envVar by design: this
|
|
41024
|
+
// gate is flag-managed only, with no operator env override.
|
|
41025
|
+
defaultValue: "off",
|
|
41026
|
+
// New host-side reader (ENG-8401): its consumer lands in the agt-cli build
|
|
41027
|
+
// this PR publishes (auto-publish patch-bumps from npm's current 0.28.503 →
|
|
41028
|
+
// 0.28.504), so a flip only takes effect on hosts running >= that version.
|
|
41029
|
+
// Best-effort reach estimate only; not part of the schema fingerprint.
|
|
41030
|
+
since: "0.28.504"
|
|
41031
|
+
},
|
|
41015
41032
|
{
|
|
41016
41033
|
key: "composio-hitl-mode",
|
|
41017
41034
|
description: "Composio managed-toolkits HITL gate (ENG-6027): off = kill switch, shadow = resolve + audit the tier decision but never block, enforce = block write_high_risk+ calls and route them to Human Approval (an Approve/Deny card). Since ENG-7828 enforce ALWAYS routes to a Human Approval card by default; set hitl-approval-routing=off to make enforce a hard block with no approval instead. Per-org rollout from the admin Feature Flags page; ENG-7672 migrated this off the fleet-wide COMPOSIO_HITL_MODE env var.",
|
|
@@ -35290,6 +35290,23 @@ var FLAG_REGISTRY = [
|
|
|
35290
35290
|
// safety control, so mutations require explicit confirmation.
|
|
35291
35291
|
sensitive: true
|
|
35292
35292
|
},
|
|
35293
|
+
{
|
|
35294
|
+
key: "docker-hygiene",
|
|
35295
|
+
description: "Manager-side docker hygiene on Docker-isolated hosts (ENG-8401): off = no-op, reap-superseded = after a successful agt-runtime retag, remove the prior untagged agt-runtime images that retag orphaned (Layer 1), full = reap-superseded plus a daily dangling-only image+builder prune (Layer 2). agt-runtime:latest and the just-pulled image are never removed and -a/--volumes are never used. Read host-side via hostFlagStore (getString); ships dark.",
|
|
35296
|
+
flagType: "enum",
|
|
35297
|
+
allowedValues: ["off", "reap-superseded", "full"],
|
|
35298
|
+
// Declared safe value is `off`: this flag introduces NEW janitorial behaviour
|
|
35299
|
+
// (the pre-flag compiled behaviour is "never reap"), so off preserves fleet
|
|
35300
|
+
// behaviour on rollout. Not `sensitive` — weakening it (full → off) only stops
|
|
35301
|
+
// cleanup; it relaxes no safety/enforcement control. No envVar by design: this
|
|
35302
|
+
// gate is flag-managed only, with no operator env override.
|
|
35303
|
+
defaultValue: "off",
|
|
35304
|
+
// New host-side reader (ENG-8401): its consumer lands in the agt-cli build
|
|
35305
|
+
// this PR publishes (auto-publish patch-bumps from npm's current 0.28.503 →
|
|
35306
|
+
// 0.28.504), so a flip only takes effect on hosts running >= that version.
|
|
35307
|
+
// Best-effort reach estimate only; not part of the schema fingerprint.
|
|
35308
|
+
since: "0.28.504"
|
|
35309
|
+
},
|
|
35293
35310
|
{
|
|
35294
35311
|
key: "composio-hitl-mode",
|
|
35295
35312
|
description: "Composio managed-toolkits HITL gate (ENG-6027): off = kill switch, shadow = resolve + audit the tier decision but never block, enforce = block write_high_risk+ calls and route them to Human Approval (an Approve/Deny card). Since ENG-7828 enforce ALWAYS routes to a Human Approval card by default; set hitl-approval-routing=off to make enforce a hard block with no approval instead. Per-org rollout from the admin Feature Flags page; ENG-7672 migrated this off the fleet-wide COMPOSIO_HITL_MODE env var.",
|
|
@@ -35616,6 +35616,23 @@ var FLAG_REGISTRY = [
|
|
|
35616
35616
|
// safety control, so mutations require explicit confirmation.
|
|
35617
35617
|
sensitive: true
|
|
35618
35618
|
},
|
|
35619
|
+
{
|
|
35620
|
+
key: "docker-hygiene",
|
|
35621
|
+
description: "Manager-side docker hygiene on Docker-isolated hosts (ENG-8401): off = no-op, reap-superseded = after a successful agt-runtime retag, remove the prior untagged agt-runtime images that retag orphaned (Layer 1), full = reap-superseded plus a daily dangling-only image+builder prune (Layer 2). agt-runtime:latest and the just-pulled image are never removed and -a/--volumes are never used. Read host-side via hostFlagStore (getString); ships dark.",
|
|
35622
|
+
flagType: "enum",
|
|
35623
|
+
allowedValues: ["off", "reap-superseded", "full"],
|
|
35624
|
+
// Declared safe value is `off`: this flag introduces NEW janitorial behaviour
|
|
35625
|
+
// (the pre-flag compiled behaviour is "never reap"), so off preserves fleet
|
|
35626
|
+
// behaviour on rollout. Not `sensitive` — weakening it (full → off) only stops
|
|
35627
|
+
// cleanup; it relaxes no safety/enforcement control. No envVar by design: this
|
|
35628
|
+
// gate is flag-managed only, with no operator env override.
|
|
35629
|
+
defaultValue: "off",
|
|
35630
|
+
// New host-side reader (ENG-8401): its consumer lands in the agt-cli build
|
|
35631
|
+
// this PR publishes (auto-publish patch-bumps from npm's current 0.28.503 →
|
|
35632
|
+
// 0.28.504), so a flip only takes effect on hosts running >= that version.
|
|
35633
|
+
// Best-effort reach estimate only; not part of the schema fingerprint.
|
|
35634
|
+
since: "0.28.504"
|
|
35635
|
+
},
|
|
35619
35636
|
{
|
|
35620
35637
|
key: "composio-hitl-mode",
|
|
35621
35638
|
description: "Composio managed-toolkits HITL gate (ENG-6027): off = kill switch, shadow = resolve + audit the tier decision but never block, enforce = block write_high_risk+ calls and route them to Human Approval (an Approve/Deny card). Since ENG-7828 enforce ALWAYS routes to a Human Approval card by default; set hitl-approval-routing=off to make enforce a hard block with no approval instead. Per-org rollout from the admin Feature Flags page; ENG-7672 migrated this off the fleet-wide COMPOSIO_HITL_MODE env var.",
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
writeDirectChatSessionState,
|
|
38
38
|
writeEgressAllowlist,
|
|
39
39
|
writePersistentClaudeWrapper
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-HEUDF73X.js";
|
|
41
41
|
import "./chunk-XWVM4KPK.js";
|
|
42
42
|
export {
|
|
43
43
|
EGRESS_BASELINE_DOMAINS,
|
|
@@ -79,4 +79,4 @@ export {
|
|
|
79
79
|
writeEgressAllowlist,
|
|
80
80
|
writePersistentClaudeWrapper
|
|
81
81
|
};
|
|
82
|
-
//# sourceMappingURL=persistent-session-
|
|
82
|
+
//# sourceMappingURL=persistent-session-AB4SAH5B.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
paneLogPath
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-HEUDF73X.js";
|
|
4
4
|
import "./chunk-XWVM4KPK.js";
|
|
5
5
|
|
|
6
6
|
// src/lib/responsiveness-probe.ts
|
|
@@ -662,4 +662,4 @@ export {
|
|
|
662
662
|
readAndResetSlackReplyBindingClassifications,
|
|
663
663
|
readAndResetSlackReplyTargetClassifications
|
|
664
664
|
};
|
|
665
|
-
//# sourceMappingURL=responsiveness-probe-
|
|
665
|
+
//# sourceMappingURL=responsiveness-probe-O4SCSCKC.js.map
|