@integrity-labs/agt-cli 0.28.326 → 0.28.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.
- package/dist/bin/agt.js +4 -4
- package/dist/{chunk-BSTFCC62.js → chunk-GAWNDPGM.js} +13 -2
- package/dist/{chunk-BSTFCC62.js.map → chunk-GAWNDPGM.js.map} +1 -1
- package/dist/{chunk-3PT6JAFU.js → chunk-XRO2EOEM.js} +48 -8
- package/dist/chunk-XRO2EOEM.js.map +1 -0
- package/dist/{claude-pair-runtime-BOFTEAQC.js → claude-pair-runtime-LTZRJHKO.js} +2 -2
- package/dist/lib/manager-worker.js +25 -13
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +109 -37
- package/dist/mcp/origami.js +12 -1
- package/dist/mcp/slack-channel.js +10 -7
- package/dist/{persistent-session-BICDYHOC.js → persistent-session-5IV24YKT.js} +2 -2
- package/dist/{responsiveness-probe-FEAFPNUF.js → responsiveness-probe-TTGD44MW.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-3PT6JAFU.js.map +0 -1
- /package/dist/{claude-pair-runtime-BOFTEAQC.js.map → claude-pair-runtime-LTZRJHKO.js.map} +0 -0
- /package/dist/{persistent-session-BICDYHOC.js.map → persistent-session-5IV24YKT.js.map} +0 -0
- /package/dist/{responsiveness-probe-FEAFPNUF.js.map → responsiveness-probe-TTGD44MW.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
success,
|
|
39
39
|
table,
|
|
40
40
|
warn
|
|
41
|
-
} from "../chunk-
|
|
41
|
+
} from "../chunk-XRO2EOEM.js";
|
|
42
42
|
import {
|
|
43
43
|
AnchorSessionClient,
|
|
44
44
|
CHANNEL_REGISTRY,
|
|
@@ -68,7 +68,7 @@ import {
|
|
|
68
68
|
renderTemplate,
|
|
69
69
|
resolveChannels,
|
|
70
70
|
serializeManifestForSlackCli
|
|
71
|
-
} from "../chunk-
|
|
71
|
+
} from "../chunk-GAWNDPGM.js";
|
|
72
72
|
import "../chunk-XWVM4KPK.js";
|
|
73
73
|
|
|
74
74
|
// src/bin/agt.ts
|
|
@@ -4827,7 +4827,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4827
4827
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4828
4828
|
import chalk18 from "chalk";
|
|
4829
4829
|
import ora16 from "ora";
|
|
4830
|
-
var cliVersion = true ? "0.28.
|
|
4830
|
+
var cliVersion = true ? "0.28.328" : "dev";
|
|
4831
4831
|
async function fetchLatestVersion() {
|
|
4832
4832
|
const host2 = getHost();
|
|
4833
4833
|
if (!host2) return null;
|
|
@@ -5931,7 +5931,7 @@ function handleError(err) {
|
|
|
5931
5931
|
}
|
|
5932
5932
|
|
|
5933
5933
|
// src/bin/agt.ts
|
|
5934
|
-
var cliVersion2 = true ? "0.28.
|
|
5934
|
+
var cliVersion2 = true ? "0.28.328" : "dev";
|
|
5935
5935
|
var program = new Command();
|
|
5936
5936
|
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");
|
|
5937
5937
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -7175,7 +7175,8 @@ var WAITING_KINDS = [
|
|
|
7175
7175
|
"pr-merged",
|
|
7176
7176
|
"human",
|
|
7177
7177
|
"external",
|
|
7178
|
-
"other"
|
|
7178
|
+
"other",
|
|
7179
|
+
"approval"
|
|
7179
7180
|
];
|
|
7180
7181
|
var WAITING_KIND_SET = new Set(WAITING_KINDS);
|
|
7181
7182
|
|
|
@@ -7637,6 +7638,16 @@ var FLAG_REGISTRY = [
|
|
|
7637
7638
|
defaultValue: false,
|
|
7638
7639
|
envVar: "AGT_LIVE_STREAM_PRODUCER_ENABLED"
|
|
7639
7640
|
},
|
|
7641
|
+
{
|
|
7642
|
+
key: "auto-provision-agt-live",
|
|
7643
|
+
description: "Auto-provision the Augmented Live integration (free tier, watermarked) into every NEW organization as an org-scoped install (ENG-7819). Consumed in TWO places: the seed_default_live_integration AFTER INSERT trigger on organizations reads the EXPLICIT feature_flags row (a plpgsql trigger cannot see this compiled default, so dark = no row = trigger no-ops; flipping the flag on this page writes the row the trigger reads - GLOBAL value only, per-org overrides are not consulted by the trigger), and the POST /organizations route evaluates it normally to send the owner provisioning notice. Restricted-posture orgs are skipped; opt-out (remove/block) is permanent - no reconciler. Boolean gate; ships dark. Pre-flip gates: docs/operator/default-integrations-admission.md.",
|
|
7644
|
+
flagType: "boolean",
|
|
7645
|
+
defaultValue: false,
|
|
7646
|
+
// Grants every new open org a public-publishing capability by default;
|
|
7647
|
+
// flipping it on is fleet-shaping and worth an explicit confirm (ADR-0022
|
|
7648
|
+
// §4, same treatment as augmented-support-auto-provision).
|
|
7649
|
+
sensitive: true
|
|
7650
|
+
},
|
|
7640
7651
|
{
|
|
7641
7652
|
key: "admin-live-pane",
|
|
7642
7653
|
description: "Live agent pane streaming on the platform-admin surfaces (ENG-6588): the agent Diagnostics tab and the /admin embed poll GET /admin/agents/:id/pane (tmux capture-pane over SSM) ~every 3s for a bounded window. Boolean gate; ships dark; when OFF the route returns feature_disabled and the UI falls back to the 30s static diagnostics snapshot. It is the no-deploy kill switch bounding the shared-SSM blast radius (SSM SendCommand throttles account-wide, shared with incident-response runbooks).",
|
|
@@ -10040,4 +10051,4 @@ export {
|
|
|
10040
10051
|
stopAllSessionsAndWait,
|
|
10041
10052
|
getProjectDir
|
|
10042
10053
|
};
|
|
10043
|
-
//# sourceMappingURL=chunk-
|
|
10054
|
+
//# sourceMappingURL=chunk-GAWNDPGM.js.map
|