@integrity-labs/agt-cli 0.28.327 → 0.28.329
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-EQMRT6OT.js → chunk-AOSBSVNB.js} +100 -8
- package/dist/chunk-AOSBSVNB.js.map +1 -0
- package/dist/{chunk-BSTFCC62.js → chunk-J2WYEOBH.js} +23 -2
- package/dist/{chunk-BSTFCC62.js.map → chunk-J2WYEOBH.js.map} +1 -1
- package/dist/{claude-pair-runtime-BOFTEAQC.js → claude-pair-runtime-T7EFAWS5.js} +2 -2
- package/dist/lib/manager-worker.js +10 -10
- package/dist/mcp/direct-chat-channel.js +274 -37
- package/dist/mcp/origami.js +22 -1
- package/dist/{persistent-session-BICDYHOC.js → persistent-session-ENQXJNBJ.js} +2 -2
- package/dist/{responsiveness-probe-FEAFPNUF.js → responsiveness-probe-OJJESVVX.js} +2 -2
- package/package.json +1 -1
- package/dist/chunk-EQMRT6OT.js.map +0 -1
- /package/dist/{claude-pair-runtime-BOFTEAQC.js.map → claude-pair-runtime-T7EFAWS5.js.map} +0 -0
- /package/dist/{persistent-session-BICDYHOC.js.map → persistent-session-ENQXJNBJ.js.map} +0 -0
- /package/dist/{responsiveness-probe-FEAFPNUF.js.map → responsiveness-probe-OJJESVVX.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-AOSBSVNB.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-J2WYEOBH.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.329" : "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.329" : "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) => {
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
resolveConnectivityProbe,
|
|
20
20
|
worseConnectivityOutcome,
|
|
21
21
|
wrapScheduledTaskPrompt
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-J2WYEOBH.js";
|
|
23
23
|
import {
|
|
24
24
|
parsePsRows
|
|
25
25
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -2616,6 +2616,13 @@ function provisionStopHook(codeName) {
|
|
|
2616
2616
|
'TG_MARKER_DIR="${AGENT_DIR}/telegram-pending-inbound"',
|
|
2617
2617
|
'SL_MARKER_DIR="${AGENT_DIR}/slack-pending-inbound"',
|
|
2618
2618
|
'MS_MARKER_DIR="${AGENT_DIR}/msteams-pending-inbound/.markers"',
|
|
2619
|
+
"# ENG-7808 (ENG-6722 fm4): direct-chat markers (written by the direct-chat MCP",
|
|
2620
|
+
"# into the CODE-NAME dir, at parity with the others). direct-chat has no",
|
|
2621
|
+
"# recovery-outbox yet (that's ENG-7814/E), so it participates only in the",
|
|
2622
|
+
"# block-turn-end paths, never in recover_*_for. Its markers carry neither",
|
|
2623
|
+
"# discretionary nor undeliverable, so the owed-reply predicate always treats",
|
|
2624
|
+
"# them as owed.",
|
|
2625
|
+
'DC_MARKER_DIR="${AGENT_DIR}/direct-chat-pending-inbound"',
|
|
2619
2626
|
"# CodeRabbit ENG-4569 round-3: latest-marker correlation could leak chat",
|
|
2620
2627
|
"# A's composed reply into chat B if B arrived later. Now correlate by",
|
|
2621
2628
|
"# scanning the transcript for the LAST channel-source <channel ...> tag",
|
|
@@ -2632,7 +2639,8 @@ function provisionStopHook(codeName) {
|
|
|
2632
2639
|
'TG_PENDING=$(pending_markers_count "$TG_MARKER_DIR")',
|
|
2633
2640
|
'SL_PENDING=$(pending_markers_count "$SL_MARKER_DIR")',
|
|
2634
2641
|
'MS_PENDING=$(pending_markers_count "$MS_MARKER_DIR")',
|
|
2635
|
-
'
|
|
2642
|
+
'DC_PENDING=$(pending_markers_count "$DC_MARKER_DIR")',
|
|
2643
|
+
'if [ "$TG_PENDING" = "0" ] && [ "$SL_PENDING" = "0" ] && [ "$MS_PENDING" = "0" ] && [ "$DC_PENDING" = "0" ]; then exit 0; fi',
|
|
2636
2644
|
"# ENG-6727 (failure mode 3 \u2014 hook slowness): read the transcript tail ONCE",
|
|
2637
2645
|
"# into a temp file and reuse it for every jq pass below (last-assistant text,",
|
|
2638
2646
|
"# channel-tag scan, and the per-source recency check). The old hook re-ran",
|
|
@@ -2697,7 +2705,7 @@ function provisionStopHook(codeName) {
|
|
|
2697
2705
|
"# 'marker present but never recovered' mystery (no <channel> tag correlated).",
|
|
2698
2706
|
"REPLY_IN_LAST=no",
|
|
2699
2707
|
`if echo "$TOOL_NAMES" | grep -qE '(^|__)(slack|telegram|teams)[._](reply|send_message)$'; then REPLY_IN_LAST=yes; fi`,
|
|
2700
|
-
'log_ghost "stop source=${TAG_SOURCE:-none} pending(tg=$TG_PENDING sl=$SL_PENDING ms=$MS_PENDING) text_len=${#TEXT} reply_tool_in_final_turn=$REPLY_IN_LAST"',
|
|
2708
|
+
'log_ghost "stop source=${TAG_SOURCE:-none} pending(tg=$TG_PENDING sl=$SL_PENDING ms=$MS_PENDING dc=$DC_PENDING) text_len=${#TEXT} reply_tool_in_final_turn=$REPLY_IN_LAST"',
|
|
2701
2709
|
'extract_attr() { echo "$1" | grep -oE "$2=\\"[^\\"]+\\"" | head -1 | sed -E "s/$2=\\"(.*)\\"/\\\\1/"; }',
|
|
2702
2710
|
"# Atomic write helper: jq \u2192 tmp file in same dir, then rename. The",
|
|
2703
2711
|
"# channel-side fs.watch only fires on rename, so the file is never",
|
|
@@ -2735,6 +2743,16 @@ function provisionStopHook(codeName) {
|
|
|
2735
2743
|
` hit=$(printf '%s' "$LAST_ASSISTANT" | jq -r --arg cid "$conversation_id" '(.message.content // .content // []) | (if type=="array" then . else [] end) | (if any(.[]; (type=="object") and (.type=="tool_use") and ((.name|tostring)|test("(^|__)teams[._]reply$")) and (((.input.conversation_id // "")|tostring)==$cid)) then "yes" else "no" end)' 2>/dev/null || echo no)`,
|
|
2736
2744
|
' [ "$hit" = "yes" ]',
|
|
2737
2745
|
"}",
|
|
2746
|
+
'# ENG-7808 (ENG-6722 fm4): "did the agent reply to THIS direct-chat session in',
|
|
2747
|
+
'# the final turn?" A direct_chat.reply OR direct_chat.consume settles the',
|
|
2748
|
+
"# obligation (consume is the explicit handled-without-reply ack, the same",
|
|
2749
|
+
"# session-scoped drain the MCP applies), so either counts as answered. session_id",
|
|
2750
|
+
"# is unambiguous (one session per marker), so there is no cross-thread class here.",
|
|
2751
|
+
"replied_this_conv_directchat() {",
|
|
2752
|
+
' local session_id="$1" hit',
|
|
2753
|
+
` hit=$(printf '%s' "$LAST_ASSISTANT" | jq -r --arg sid "$session_id" '(.message.content // .content // []) | (if type=="array" then . else [] end) | (if any(.[]; (type=="object") and (.type=="tool_use") and ((.name|tostring)|test("(^|__)direct_chat[._](reply|consume)$")) and (((.input.session_id // "")|tostring)==$sid)) then "yes" else "no" end)' 2>/dev/null || echo no)`,
|
|
2754
|
+
' [ "$hit" = "yes" ]',
|
|
2755
|
+
"}",
|
|
2738
2756
|
"recover_telegram_for() {",
|
|
2739
2757
|
' local chat_id="$1" msg_id="$2"',
|
|
2740
2758
|
' if [ -z "$chat_id" ] || [ -z "$msg_id" ]; then return; fi',
|
|
@@ -2888,6 +2906,39 @@ function provisionStopHook(codeName) {
|
|
|
2888
2906
|
' rm -f "$marker_path" 2>/dev/null || true',
|
|
2889
2907
|
' log_ghost "teams RECOVERED conv=$(safe_id "$conversation_id") text_len=${#TEXT}"',
|
|
2890
2908
|
"}",
|
|
2909
|
+
"# ENG-7814 (ENG-6722 slice E): always-on direct-chat recovery. Re-send the last",
|
|
2910
|
+
"# assistant text to the (unambiguous) session via a direct-chat-recovery-outbox the",
|
|
2911
|
+
"# direct-chat MCP consumes. NO recency/replied_other guard: session_id is unambiguous",
|
|
2912
|
+
"# (one session per marker), so there is no cross-thread mis-correlation risk that the",
|
|
2913
|
+
"# recover_slack_for recency guard exists to prevent. Confirm-before-clear: unlike the",
|
|
2914
|
+
"# slack/telegram/teams recover_*_for above (which rm the marker here), this leaves the",
|
|
2915
|
+
"# marker armed and caps re-fire with a per-marker ledger; the MCP consumer clears the",
|
|
2916
|
+
"# marker only after /host/direct-chat/reply confirms, and removes the ledger entry on",
|
|
2917
|
+
"# success OR failure (re-arm), so a failed re-send retries on a later Stop.",
|
|
2918
|
+
"recover_directchat_for() {",
|
|
2919
|
+
' local session_id="$1" hex_session="$2"',
|
|
2920
|
+
' if [ -z "$session_id" ] || [ -z "$hex_session" ]; then return; fi',
|
|
2921
|
+
' local marker_path=""',
|
|
2922
|
+
" shopt -s nullglob",
|
|
2923
|
+
' for f in "$DC_MARKER_DIR"/${hex_session}__*.json; do',
|
|
2924
|
+
' if [ -z "$marker_path" ]; then marker_path="$f"; fi',
|
|
2925
|
+
" done",
|
|
2926
|
+
' if [ -z "$marker_path" ]; then log_ghost "direct-chat skip=no_pending_marker session=$(safe_id "$session_id")"; return; fi',
|
|
2927
|
+
' local marker_name; marker_name="$(basename "$marker_path")"',
|
|
2928
|
+
" # Already recovered once and awaiting delivery confirmation \u21D2 do not re-send.",
|
|
2929
|
+
' if [ -f "${DC_RECOVERY_LEDGER_DIR}/${marker_name}" ]; then log_ghost "direct-chat skip=recovery_in_flight session=$(safe_id "$session_id")"; return; fi',
|
|
2930
|
+
" # Persist the per-marker cap BEFORE the side effect (same fail-safe as",
|
|
2931
|
+
" # block-turn-end): if the ledger dir/file write fails we could re-recover every",
|
|
2932
|
+
" # Stop, so degrade to a logged skip and write no payload.",
|
|
2933
|
+
' if ! mkdir -p "$DC_RECOVERY_LEDGER_DIR" 2>/dev/null; then log_ghost "direct-chat skip=recovery_ledger_unwritable session=$(safe_id "$session_id")"; return; fi',
|
|
2934
|
+
' if ! : > "${DC_RECOVERY_LEDGER_DIR}/${marker_name}" 2>/dev/null; then log_ghost "direct-chat skip=recovery_ledger_unwritable session=$(safe_id "$session_id")"; return; fi',
|
|
2935
|
+
" local TS",
|
|
2936
|
+
" TS=$(date -u +%Y%m%dT%H%M%S%N)",
|
|
2937
|
+
' atomic_write_payload "$DC_RECOVERY_OUTBOX_DIR" "${TS}.json" \\',
|
|
2938
|
+
` '{session_id:$s, text:$t, marker_name:$mn, source:"ghost-reply-recovery"}' \\`,
|
|
2939
|
+
' --arg s "$session_id" --arg t "$TEXT" --arg mn "$marker_name"',
|
|
2940
|
+
' log_ghost "direct-chat RECOVERED session=$(safe_id "$session_id") text_len=${#TEXT}"',
|
|
2941
|
+
"}",
|
|
2891
2942
|
'# ENG-6467 / ADR-0024 Slice 2.5 \u2014 block-turn-end (the D1 "composed-but-unsent"',
|
|
2892
2943
|
"# fix), gated dark behind AGT_CHANNEL_BLOCK_TURN_END_ENABLED (registry flag",
|
|
2893
2944
|
"# channel-block-turn-end; the env var is the operator/canary override the bash",
|
|
@@ -2915,6 +2966,21 @@ function provisionStopHook(codeName) {
|
|
|
2915
2966
|
'BLOCK_LEDGER_DIR="${AGENT_DIR}/.agt-block-turn-end-ledger"',
|
|
2916
2967
|
"# GC stale ledger entries (>1 day) so the per-marker cap dir cannot grow unbounded.",
|
|
2917
2968
|
'if [ -d "$BLOCK_LEDGER_DIR" ]; then find "$BLOCK_LEDGER_DIR" -type f -mtime +1 -delete 2>/dev/null || true; fi',
|
|
2969
|
+
"# ENG-7814 (ENG-6722 slice E): always-on direct-chat recovery. When ON, an owed",
|
|
2970
|
+
"# and unanswered direct-chat inbound that block-turn-end did NOT handle gets its",
|
|
2971
|
+
"# last assistant text written to a direct-chat-recovery-outbox that the direct-chat",
|
|
2972
|
+
"# MCP re-sends via /host/direct-chat/reply. Registry flag direct-chat-recovery; the",
|
|
2973
|
+
"# env var is the operator/host override the bash reads directly. OFF (default) keeps",
|
|
2974
|
+
"# today's behavior (direct-chat gets block-turn-end only, no recovery).",
|
|
2975
|
+
"DC_RECOVERY_ON=0",
|
|
2976
|
+
'case "${AGT_DIRECT_CHAT_RECOVERY_ENABLED:-}" in true|1|TRUE|True) DC_RECOVERY_ON=1;; esac',
|
|
2977
|
+
'DC_RECOVERY_OUTBOX_DIR="${AGENT_DIR}/direct-chat-recovery-outbox"',
|
|
2978
|
+
"# Per-marker recovery ledger: caps ONE in-flight recovery per inbound (so a marker",
|
|
2979
|
+
"# left pending for confirm-before-clear is not re-recovered every Stop). The MCP",
|
|
2980
|
+
"# consumer removes the entry on delivery success OR failure (re-arm); we GC stale",
|
|
2981
|
+
"# entries here as a backstop, same as the block ledger.",
|
|
2982
|
+
'DC_RECOVERY_LEDGER_DIR="${AGENT_DIR}/.agt-direct-chat-recovery-ledger"',
|
|
2983
|
+
'if [ -d "$DC_RECOVERY_LEDGER_DIR" ]; then find "$DC_RECOVERY_LEDGER_DIR" -type f -mtime +1 -delete 2>/dev/null || true; fi',
|
|
2918
2984
|
"# Returns 0 (after printing the block JSON to stdout) when it blocked; 1 otherwise.",
|
|
2919
2985
|
'# $1 = "yes"/"no" \u2014 did the agent reply to THIS conversation in the final turn?',
|
|
2920
2986
|
"# (ENG-6727: per-conversation, computed by the caller via replied_this_conv_*)",
|
|
@@ -2972,8 +3038,8 @@ function provisionStopHook(codeName) {
|
|
|
2972
3038
|
' if [ "$BLOCK_TURN_END_ON" != "1" ] || [ "$BLOCK_ALL_MARKERS_ON" != "1" ]; then return 1; fi',
|
|
2973
3039
|
' if [ "$STOP_ACTIVE" = "true" ]; then return 1; fi',
|
|
2974
3040
|
" local -a owed_paths=()",
|
|
2975
|
-
' local owed_lines="" owed_count=0 any_capped=0 entry src dir m d u replied ch th cid conv iid key led_name',
|
|
2976
|
-
' for entry in "slack:$SL_MARKER_DIR" "telegram:$TG_MARKER_DIR" "msteams:$MS_MARKER_DIR"; do',
|
|
3041
|
+
' local owed_lines="" owed_count=0 any_capped=0 entry src dir m d u replied ch th cid conv sess iid key led_name',
|
|
3042
|
+
' for entry in "slack:$SL_MARKER_DIR" "telegram:$TG_MARKER_DIR" "msteams:$MS_MARKER_DIR" "direct-chat:$DC_MARKER_DIR"; do',
|
|
2977
3043
|
' src="${entry%%:*}"; dir="${entry#*:}"',
|
|
2978
3044
|
' if [ ! -d "$dir" ]; then continue; fi',
|
|
2979
3045
|
" shopt -s nullglob",
|
|
@@ -2982,11 +3048,12 @@ function provisionStopHook(codeName) {
|
|
|
2982
3048
|
` d=$(jq -r '.discretionary // false' "$m" 2>/dev/null || echo true)`,
|
|
2983
3049
|
` u=$(jq -r '.undeliverable // false' "$m" 2>/dev/null || echo true)`,
|
|
2984
3050
|
' if [ "$d" = "true" ] || [ "$u" = "true" ]; then continue; fi',
|
|
2985
|
-
' replied=no; ch=""; th=""; cid=""; conv=""',
|
|
3051
|
+
' replied=no; ch=""; th=""; cid=""; conv=""; sess=""',
|
|
2986
3052
|
' case "$src" in',
|
|
2987
3053
|
` slack) ch=$(jq -r '.channel // ""' "$m" 2>/dev/null || echo ""); th=$(jq -r '.thread_ts // ""' "$m" 2>/dev/null || echo ""); if replied_this_conv_slack "$ch" "$th"; then replied=yes; fi ;;`,
|
|
2988
3054
|
` telegram) cid=$(jq -r '.chat_id // ""' "$m" 2>/dev/null || echo ""); if replied_this_conv_telegram "$cid"; then replied=yes; fi ;;`,
|
|
2989
3055
|
` msteams) conv=$(jq -r '.conversation_id // ""' "$m" 2>/dev/null || echo ""); if replied_this_conv_teams "$conv"; then replied=yes; fi ;;`,
|
|
3056
|
+
` direct-chat) sess=$(jq -r '.session_id // ""' "$m" 2>/dev/null || echo ""); if replied_this_conv_directchat "$sess"; then replied=yes; fi ;;`,
|
|
2990
3057
|
" esac",
|
|
2991
3058
|
' if [ "$replied" = "yes" ]; then continue; fi',
|
|
2992
3059
|
' led_name="$(basename "$m")"',
|
|
@@ -2996,6 +3063,7 @@ function provisionStopHook(codeName) {
|
|
|
2996
3063
|
' slack) key="thread=$(safe_id "$th")" ;;',
|
|
2997
3064
|
' telegram) key="chat=$(safe_id "$cid")" ;;',
|
|
2998
3065
|
' msteams) key="conv=$(safe_id "$conv")" ;;',
|
|
3066
|
+
' direct-chat) key="session=$(safe_id "$sess")" ;;',
|
|
2999
3067
|
' *) key="" ;;',
|
|
3000
3068
|
" esac",
|
|
3001
3069
|
" owed_count=$((owed_count + 1))",
|
|
@@ -3061,6 +3129,30 @@ function provisionStopHook(codeName) {
|
|
|
3061
3129
|
` if emit_block_if_obligated "$MS_REPLIED" "$MS_CAND" 'teams.reply'; then exit 0; fi`,
|
|
3062
3130
|
" fi",
|
|
3063
3131
|
' recover_teams_for "$CONVERSATION_ID" "$REPLY_TO_ID" "$SERVICE_URL"',
|
|
3132
|
+
'elif [ "$TAG_SOURCE" = "direct-chat" ]; then',
|
|
3133
|
+
" # ENG-7808 (ENG-6722 fm4) + ENG-7814 (slice E): direct-chat backstop. First try",
|
|
3134
|
+
" # block-turn-end (make the MODEL re-send). If that does not fire and the flag",
|
|
3135
|
+
" # direct-chat-recovery is ON, re-send the composed text via the recovery-outbox",
|
|
3136
|
+
" # (ENG-7814). session_id is unambiguous (one session per marker), so there is no",
|
|
3137
|
+
" # cross-thread class and no recency guard is needed. With both off we just log the",
|
|
3138
|
+
" # miss and stand down.",
|
|
3139
|
+
' SESSION_ID=$(extract_attr "$CHANNEL_TAG" "session_id")',
|
|
3140
|
+
' if [ -n "$SESSION_ID" ]; then',
|
|
3141
|
+
" shopt -s nullglob",
|
|
3142
|
+
" # Marker filenames hex-encode the session (injective; matches the MCP",
|
|
3143
|
+
" # writer + the msteams pattern). Reproduce that hex here for the glob.",
|
|
3144
|
+
' HEX_SESSION=$(printf %s "$SESSION_ID" | od -An -tx1 | tr -d " \\n")',
|
|
3145
|
+
" DC_CAND=$(printf '%s\\n' \"${DC_MARKER_DIR}/${HEX_SESSION}__\"*.json)",
|
|
3146
|
+
' DC_REPLIED=no; if replied_this_conv_directchat "$SESSION_ID"; then DC_REPLIED=yes; fi',
|
|
3147
|
+
` if emit_block_if_obligated "$DC_REPLIED" "$DC_CAND" 'direct_chat.reply'; then exit 0; fi`,
|
|
3148
|
+
' if [ "$DC_REPLIED" = "no" ]; then',
|
|
3149
|
+
' if [ "$DC_RECOVERY_ON" = "1" ]; then',
|
|
3150
|
+
' recover_directchat_for "$SESSION_ID" "$HEX_SESSION"',
|
|
3151
|
+
" else",
|
|
3152
|
+
' log_ghost "direct-chat skip=no_recovery_path session=$(safe_id "$SESSION_ID") (block-turn-end off/capped; direct-chat-recovery off)"',
|
|
3153
|
+
" fi",
|
|
3154
|
+
" fi",
|
|
3155
|
+
" fi",
|
|
3064
3156
|
'elif [ -z "$TAG_SOURCE" ]; then',
|
|
3065
3157
|
" # ENG-6467: TAG_SOURCE=none fallback (AC1). Guarded on an EMPTY source, not",
|
|
3066
3158
|
" # a catch-all else: a parsed-but-unsupported source (e.g. direct-chat, which",
|
|
@@ -6705,7 +6797,7 @@ function requireHost() {
|
|
|
6705
6797
|
}
|
|
6706
6798
|
|
|
6707
6799
|
// src/lib/api-client.ts
|
|
6708
|
-
var agtCliVersion = true ? "0.28.
|
|
6800
|
+
var agtCliVersion = true ? "0.28.329" : "dev";
|
|
6709
6801
|
var lastConfigHash = null;
|
|
6710
6802
|
function setConfigHash(hash) {
|
|
6711
6803
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -9102,4 +9194,4 @@ export {
|
|
|
9102
9194
|
managerInstallSystemUnitCommand,
|
|
9103
9195
|
managerUninstallSystemUnitCommand
|
|
9104
9196
|
};
|
|
9105
|
-
//# sourceMappingURL=chunk-
|
|
9197
|
+
//# sourceMappingURL=chunk-AOSBSVNB.js.map
|