@integrity-labs/agt-cli 0.28.205 → 0.28.206
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-7VPPMJA6.js → chunk-ELBYWACS.js} +15 -1
- package/dist/chunk-ELBYWACS.js.map +1 -0
- package/dist/{chunk-P2VXGL63.js → chunk-GWBOA7ZY.js} +2 -2
- package/dist/{chunk-46I4PFYV.js → chunk-WALP3HBE.js} +3 -3
- package/dist/{claude-pair-runtime-K2G3ZQGH.js → claude-pair-runtime-Q4Q2OTTV.js} +2 -2
- package/dist/lib/manager-worker.js +197 -9
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-4B36WJ4A.js → persistent-session-6662WBSH.js} +3 -3
- package/dist/{responsiveness-probe-JPUF2QPK.js → responsiveness-probe-TOLTTG6I.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-7VPPMJA6.js.map +0 -1
- /package/dist/{chunk-P2VXGL63.js.map → chunk-GWBOA7ZY.js.map} +0 -0
- /package/dist/{chunk-46I4PFYV.js.map → chunk-WALP3HBE.js.map} +0 -0
- /package/dist/{claude-pair-runtime-K2G3ZQGH.js.map → claude-pair-runtime-Q4Q2OTTV.js.map} +0 -0
- /package/dist/{persistent-session-4B36WJ4A.js.map → persistent-session-6662WBSH.js.map} +0 -0
- /package/dist/{responsiveness-probe-JPUF2QPK.js.map → responsiveness-probe-TOLTTG6I.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
success,
|
|
38
38
|
table,
|
|
39
39
|
warn
|
|
40
|
-
} from "../chunk-
|
|
40
|
+
} from "../chunk-WALP3HBE.js";
|
|
41
41
|
import {
|
|
42
42
|
CHANNEL_REGISTRY,
|
|
43
43
|
DEFAULT_FRAMEWORK,
|
|
@@ -65,7 +65,7 @@ import {
|
|
|
65
65
|
renderTemplate,
|
|
66
66
|
resolveChannels,
|
|
67
67
|
serializeManifestForSlackCli
|
|
68
|
-
} from "../chunk-
|
|
68
|
+
} from "../chunk-ELBYWACS.js";
|
|
69
69
|
|
|
70
70
|
// src/bin/agt.ts
|
|
71
71
|
import { join as join22 } from "path";
|
|
@@ -4749,7 +4749,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4749
4749
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4750
4750
|
import chalk18 from "chalk";
|
|
4751
4751
|
import ora16 from "ora";
|
|
4752
|
-
var cliVersion = true ? "0.28.
|
|
4752
|
+
var cliVersion = true ? "0.28.206" : "dev";
|
|
4753
4753
|
async function fetchLatestVersion() {
|
|
4754
4754
|
const host2 = getHost();
|
|
4755
4755
|
if (!host2) return null;
|
|
@@ -5763,7 +5763,7 @@ function handleError(err) {
|
|
|
5763
5763
|
}
|
|
5764
5764
|
|
|
5765
5765
|
// src/bin/agt.ts
|
|
5766
|
-
var cliVersion2 = true ? "0.28.
|
|
5766
|
+
var cliVersion2 = true ? "0.28.206" : "dev";
|
|
5767
5767
|
var program = new Command();
|
|
5768
5768
|
program.name("agt").description("Augmented CLI \u2014 agent provisioning and management").version(cliVersion2).option("--json", "Emit machine-readable JSON output (suppress spinners and colors)").option("--skip-update-check", "Skip the automatic update check on startup");
|
|
5769
5769
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -2185,6 +2185,20 @@ var FLAG_REGISTRY = [
|
|
|
2185
2185
|
// operational decision with blast radius, so mutations require confirmation.
|
|
2186
2186
|
sensitive: true
|
|
2187
2187
|
},
|
|
2188
|
+
{
|
|
2189
|
+
key: "connectivity-probe",
|
|
2190
|
+
description: "Host-side rolling integration connectivity probe (ENG-5641): when ON, the manager probes each integration ~hourly using the agent's real creds/MCP and reports to /host/integration-connectivity, which populates last_connectivity_* and feeds the central escalation evaluator (integration-connectivity-escalation) and reconnect notifications. It is the only continuous writer of last_connectivity_status (the monitor cron only reads it). Migrated from the raw AGT_CONNECTIVITY_PROBE_ENABLED env gate to this registry flag (ENG-7220) so both halves of the connectivity subsystem are flag-managed; the env var is retained as the highest-precedence operator override (env override > flag value > this default). Boolean gate; ships dark.",
|
|
2191
|
+
flagType: "boolean",
|
|
2192
|
+
defaultValue: false,
|
|
2193
|
+
envVar: "AGT_CONNECTIVITY_PROBE_ENABLED"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
key: "session-tool-probe",
|
|
2197
|
+
description: `Host-side live-session tool-bind probe (ENG-7053 / ENG-7220): when ON, the manager periodically checks whether each integration's MCP tools are actually bound in the running agent session (stdio child alive / remote MCP answers tools/list) and reports a bound|missing|unreachable|unknown verdict to /host/session-tool-bind. This is the signal the Add Integration modal polls to confirm a newly-added integration came online after the agent's next restart, rather than resolving at "credentials verified". Observational only (no auto rebind). Boolean gate; ships dark. AGT_SESSION_TOOL_PROBE_ENABLED is the highest-precedence operator override; precedence is env override > flag value > this default.`,
|
|
2198
|
+
flagType: "boolean",
|
|
2199
|
+
defaultValue: false,
|
|
2200
|
+
envVar: "AGT_SESSION_TOOL_PROBE_ENABLED"
|
|
2201
|
+
},
|
|
2188
2202
|
{
|
|
2189
2203
|
key: "channel-skip-reaction",
|
|
2190
2204
|
description: 'Seen-but-skipping reaction (ENG-6464): the agent adds a configured emoji (e.g. \u2796 / \u{1FAE1}) to a DM or thread message it saw but deliberately chose not to reply to, so the sender can tell "seen and skipped" from "never received". Explicit-agent-verb model (no Stop-hook inference). Boolean gate; ships dark \u2014 inert until flipped on per host/org.',
|
|
@@ -7298,4 +7312,4 @@ export {
|
|
|
7298
7312
|
parseEnvIntegrations,
|
|
7299
7313
|
probeMcpEnvSubstitution
|
|
7300
7314
|
};
|
|
7301
|
-
//# sourceMappingURL=chunk-
|
|
7315
|
+
//# sourceMappingURL=chunk-ELBYWACS.js.map
|