@integrity-labs/agt-cli 0.28.221 → 0.28.223
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-SMV5PL54.js → chunk-7GJGGLKZ.js} +142 -3
- package/dist/chunk-7GJGGLKZ.js.map +1 -0
- package/dist/{chunk-M2PGJQP3.js → chunk-MJ2TQQOO.js} +15 -1
- package/dist/{chunk-M2PGJQP3.js.map → chunk-MJ2TQQOO.js.map} +1 -1
- package/dist/{claude-pair-runtime-U3ZFSZA2.js → claude-pair-runtime-VBCNGNZW.js} +2 -2
- package/dist/lib/manager-worker.js +112 -9
- 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-S2REZDHF.js → persistent-session-JGBNCAKI.js} +2 -2
- package/dist/{responsiveness-probe-BHFLFXY5.js → responsiveness-probe-3AYQX6CL.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-SMV5PL54.js.map +0 -1
- /package/dist/{claude-pair-runtime-U3ZFSZA2.js.map → claude-pair-runtime-VBCNGNZW.js.map} +0 -0
- /package/dist/{persistent-session-S2REZDHF.js.map → persistent-session-JGBNCAKI.js.map} +0 -0
- /package/dist/{responsiveness-probe-BHFLFXY5.js.map → responsiveness-probe-3AYQX6CL.js.map} +0 -0
|
@@ -6862,6 +6862,13 @@ var FLAG_REGISTRY = [
|
|
|
6862
6862
|
defaultValue: true,
|
|
6863
6863
|
envVar: "AGT_CHANNEL_REPLAY_ENABLED"
|
|
6864
6864
|
},
|
|
6865
|
+
{
|
|
6866
|
+
key: "restart-doorbell",
|
|
6867
|
+
description: "Fast agent-restart lane (ENG-7335): when ON, the manager subscribes to host_agents restart_requested_at changes over its existing Realtime channel and services a dashboard-issued restart on a narrow per-agent lane (kill + respawn the one agent) within a few seconds, instead of waiting up to 50-110s for the next full poll cycle to notice it. The slow poll remains the durable backstop, so a missed doorbell only costs latency, never correctness. Ships dark (default off); staged on the agt-aws-1 canary before fleet enable. The AGT_RESTART_DOORBELL_ENABLED env override is the per-host escape hatch and kill switch; precedence is env override > flag value > this default.",
|
|
6868
|
+
flagType: "boolean",
|
|
6869
|
+
defaultValue: false,
|
|
6870
|
+
envVar: "AGT_RESTART_DOORBELL_ENABLED"
|
|
6871
|
+
},
|
|
6865
6872
|
{
|
|
6866
6873
|
key: "channel-silent-loss-alarm",
|
|
6867
6874
|
description: "Channel silent-loss alarm (ENG-6728): when ON, the responsiveness-probe route creates a per-agent CloudWatch alarm that pages on a `ChannelDeflections` Cause=replay_orphaned datapoint (a recoverable inbound aged out without delivery). Observe-first rollout gate, flipped stage-wide from the admin Feature Flags page; the underlying metric ships since ENG-6355. The AUGMENTED_CHANNEL_SILENT_LOSS_ALARM_ENABLED env var is retained as the highest-precedence operator override; precedence is env override > flag value > this default.",
|
|
@@ -6910,6 +6917,13 @@ var FLAG_REGISTRY = [
|
|
|
6910
6917
|
defaultValue: false,
|
|
6911
6918
|
envVar: "AGT_GHOST_REPLY_INTENT_CLASSIFIER_ENABLED"
|
|
6912
6919
|
},
|
|
6920
|
+
{
|
|
6921
|
+
key: "compaction-notice",
|
|
6922
|
+
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.',
|
|
6923
|
+
flagType: "boolean",
|
|
6924
|
+
defaultValue: false,
|
|
6925
|
+
envVar: "AGT_COMPACTION_NOTICE_ENABLED"
|
|
6926
|
+
},
|
|
6913
6927
|
{
|
|
6914
6928
|
key: "channel-live-progress",
|
|
6915
6929
|
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.',
|
|
@@ -8964,4 +8978,4 @@ export {
|
|
|
8964
8978
|
stopAllSessionsAndWait,
|
|
8965
8979
|
getProjectDir
|
|
8966
8980
|
};
|
|
8967
|
-
//# sourceMappingURL=chunk-
|
|
8981
|
+
//# sourceMappingURL=chunk-MJ2TQQOO.js.map
|