@integrity-labs/agt-cli 0.28.222 → 0.28.224
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-B3E4B7JF.js → chunk-S43WVYAF.js} +16 -3
- package/dist/chunk-S43WVYAF.js.map +1 -0
- package/dist/{chunk-XNMPRL76.js → chunk-TPL4KIC5.js} +142 -3
- package/dist/chunk-TPL4KIC5.js.map +1 -0
- package/dist/{claude-pair-runtime-AEPVKQNP.js → claude-pair-runtime-JFP2N723.js} +2 -2
- package/dist/lib/manager-worker.js +29 -15
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +127 -0
- package/dist/mcp/teams-channel.js +105 -0
- package/dist/mcp/telegram-channel.js +113 -0
- package/dist/{persistent-session-M4ZTLCDP.js → persistent-session-I4CQEDME.js} +2 -2
- package/dist/{responsiveness-probe-E25HFGJL.js → responsiveness-probe-MIUMXKV4.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-B3E4B7JF.js.map +0 -1
- package/dist/chunk-XNMPRL76.js.map +0 -1
- /package/dist/{claude-pair-runtime-AEPVKQNP.js.map → claude-pair-runtime-JFP2N723.js.map} +0 -0
- /package/dist/{persistent-session-M4ZTLCDP.js.map → persistent-session-I4CQEDME.js.map} +0 -0
- /package/dist/{responsiveness-probe-E25HFGJL.js.map → responsiveness-probe-MIUMXKV4.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-TPL4KIC5.js";
|
|
42
42
|
import {
|
|
43
43
|
CHANNEL_REGISTRY,
|
|
44
44
|
DEFAULT_FRAMEWORK,
|
|
@@ -67,7 +67,7 @@ import {
|
|
|
67
67
|
renderTemplate,
|
|
68
68
|
resolveChannels,
|
|
69
69
|
serializeManifestForSlackCli
|
|
70
|
-
} from "../chunk-
|
|
70
|
+
} from "../chunk-S43WVYAF.js";
|
|
71
71
|
import "../chunk-XWVM4KPK.js";
|
|
72
72
|
|
|
73
73
|
// src/bin/agt.ts
|
|
@@ -4826,7 +4826,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4826
4826
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4827
4827
|
import chalk18 from "chalk";
|
|
4828
4828
|
import ora16 from "ora";
|
|
4829
|
-
var cliVersion = true ? "0.28.
|
|
4829
|
+
var cliVersion = true ? "0.28.224" : "dev";
|
|
4830
4830
|
async function fetchLatestVersion() {
|
|
4831
4831
|
const host2 = getHost();
|
|
4832
4832
|
if (!host2) return null;
|
|
@@ -5840,7 +5840,7 @@ function handleError(err) {
|
|
|
5840
5840
|
}
|
|
5841
5841
|
|
|
5842
5842
|
// src/bin/agt.ts
|
|
5843
|
-
var cliVersion2 = true ? "0.28.
|
|
5843
|
+
var cliVersion2 = true ? "0.28.224" : "dev";
|
|
5844
5844
|
var program = new Command();
|
|
5845
5845
|
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");
|
|
5846
5846
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -3383,8 +3383,14 @@ var ASSET_TYPES = {
|
|
|
3383
3383
|
"image/jpeg": { ext: "jpg", maxBytes: 5 * MB, enabled: true },
|
|
3384
3384
|
"image/webp": { ext: "webp", maxBytes: 5 * MB, enabled: true },
|
|
3385
3385
|
"image/gif": { ext: "gif", maxBytes: 10 * MB, enabled: true },
|
|
3386
|
-
//
|
|
3387
|
-
|
|
3386
|
+
// Video (guided-tour narration clips). Inert ISO-BMFF / EBML containers — like
|
|
3387
|
+
// the rasters and mp3 above, not active content — so serving them as top-level
|
|
3388
|
+
// same-origin asset URLs is safe (the SVG/HTML-polyglot risk in the module
|
|
3389
|
+
// header doesn't apply; publish-time magic-byte sniffing enforces it). Uploads
|
|
3390
|
+
// are presigned-PUT straight to S3, and S3+CloudFront serve range requests so
|
|
3391
|
+
// <video> seeking works.
|
|
3392
|
+
"video/mp4": { ext: "mp4", maxBytes: 100 * MB, enabled: true },
|
|
3393
|
+
"video/webm": { ext: "webm", maxBytes: 100 * MB, enabled: true },
|
|
3388
3394
|
// ENG-7048: enabled for server-generated ElevenLabs voiceover (text-to-speech).
|
|
3389
3395
|
// MP3 is an inert binary container (like the rasters above), so serving it as a
|
|
3390
3396
|
// top-level same-origin asset URL is safe — the SVG/HTML-polyglot risk in the
|
|
@@ -6917,6 +6923,13 @@ var FLAG_REGISTRY = [
|
|
|
6917
6923
|
defaultValue: false,
|
|
6918
6924
|
envVar: "AGT_GHOST_REPLY_INTENT_CLASSIFIER_ENABLED"
|
|
6919
6925
|
},
|
|
6926
|
+
{
|
|
6927
|
+
key: "compaction-notice",
|
|
6928
|
+
description: 'Compaction courtesy notice (ENG-7339): when a managed Claude Code session compacts its context, the persistent session pauses and stops replying for a stretch, which looks identical to a dead agent from the channel. When ON, the generated PreCompact hook finds the conversation the user is actively on (the last <channel ...> tag in the transcript) and drops a notice into the matching <channel>-notice-outbox; the channel MCP server (alive while the Claude process compacts) posts a short "reorganizing my memory, back shortly" line. The notice path never clears the pending-inbound marker, so the genuine reply the agent still owes after compaction is unaffected. No active channel tag \u21D2 silent (idle agents never broadcast). Boolean gate; ships dark, canary per host before any fleet flip. When OFF the hook writes nothing and the consumer drops any stray notice unsent.',
|
|
6929
|
+
flagType: "boolean",
|
|
6930
|
+
defaultValue: false,
|
|
6931
|
+
envVar: "AGT_COMPACTION_NOTICE_ENABLED"
|
|
6932
|
+
},
|
|
6920
6933
|
{
|
|
6921
6934
|
key: "channel-live-progress",
|
|
6922
6935
|
description: 'Live in-channel progress indicator (ENG-6567 Phase 2): while an agent is mid-task on a pending channel inbound, the channel server maintains a slimline Block Kit "\u23F3 working\u2026 (last: <step>)" context message on the thread, driven by a throttled PostToolUse heartbeat, and clears it the moment the final reply lands. Answers "is it still working or done?" without the agent having to narrate. Boolean gate; ships dark \u2014 canary per host before any fleet flip. When OFF the heartbeat is still written (cheap, local) but nothing is ever posted, so behaviour is exactly as today.',
|
|
@@ -8971,4 +8984,4 @@ export {
|
|
|
8971
8984
|
stopAllSessionsAndWait,
|
|
8972
8985
|
getProjectDir
|
|
8973
8986
|
};
|
|
8974
|
-
//# sourceMappingURL=chunk-
|
|
8987
|
+
//# sourceMappingURL=chunk-S43WVYAF.js.map
|