@integrity-labs/agt-cli 0.27.8 → 0.27.9-test.12
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/assets/impersonate-statusline.sh +7 -2
- package/dist/bin/agt.js +946 -129
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-YSBGIXJG.js → chunk-I2OTQJH3.js} +361 -26
- package/dist/chunk-I2OTQJH3.js.map +1 -0
- package/dist/{chunk-GN4XPQWJ.js → chunk-MQJ5DMPT.js} +535 -94
- package/dist/chunk-MQJ5DMPT.js.map +1 -0
- package/dist/{chunk-IB655E5U.js → chunk-SXBZDUKN.js} +1086 -285
- package/dist/chunk-SXBZDUKN.js.map +1 -0
- package/dist/{claude-pair-runtime-ZBQKBBMT.js → claude-pair-runtime-F6USL3EW.js} +2 -2
- package/dist/lib/manager-worker.js +2071 -517
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/direct-chat-channel.js +49 -455
- package/dist/mcp/index.js +232 -137
- package/dist/mcp/slack-channel.js +1379 -856
- package/dist/mcp/teams-channel.js +16018 -0
- package/dist/mcp/telegram-channel.js +1264 -618
- package/dist/{persistent-session-ICYFLUAM.js → persistent-session-OL5EDYB4.js} +5 -3
- package/dist/responsiveness-probe-B6LJJRUD.js +74 -0
- package/dist/responsiveness-probe-B6LJJRUD.js.map +1 -0
- package/package.json +2 -2
- package/dist/chunk-GN4XPQWJ.js.map +0 -1
- package/dist/chunk-IB655E5U.js.map +0 -1
- package/dist/chunk-YSBGIXJG.js.map +0 -1
- package/dist/responsiveness-probe-WZNQ2762.js +0 -33
- package/dist/responsiveness-probe-WZNQ2762.js.map +0 -1
- /package/dist/{claude-pair-runtime-ZBQKBBMT.js.map → claude-pair-runtime-F6USL3EW.js.map} +0 -0
- /package/dist/{persistent-session-ICYFLUAM.js.map → persistent-session-OL5EDYB4.js.map} +0 -0
|
@@ -57,10 +57,15 @@ PY
|
|
|
57
57
|
fi
|
|
58
58
|
fi
|
|
59
59
|
|
|
60
|
+
# Pin an explicit bright-white foreground (97) alongside the coloured
|
|
61
|
+
# background. Without it the badge text falls back to the terminal's
|
|
62
|
+
# default foreground, which is a dark colour on many themes and renders
|
|
63
|
+
# near-illegibly on the magenta/red background (ENG-5818 follow-up —
|
|
64
|
+
# dark-on-magenta reported on Scout's impersonation badge).
|
|
60
65
|
if [ "$expired" = "1" ]; then
|
|
61
|
-
printf "\033[1;41m 🤖 %s EXPIRED \033[0m " "$display_name"
|
|
66
|
+
printf "\033[1;97;41m 🤖 %s EXPIRED \033[0m " "$display_name"
|
|
62
67
|
else
|
|
63
|
-
printf "\033[1;45m 🤖 %s \033[0m " "$display_name"
|
|
68
|
+
printf "\033[1;97;45m 🤖 %s \033[0m " "$display_name"
|
|
64
69
|
fi
|
|
65
70
|
|
|
66
71
|
# Also rename the terminal tab to the agent name so operators with
|