@integrity-labs/agt-cli 0.15.6 → 0.15.8
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 +19 -8
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-IGKAMH32.js → chunk-32D5TUSD.js} +8 -1
- package/dist/chunk-32D5TUSD.js.map +1 -0
- package/dist/lib/manager-worker.js +85 -21
- package/dist/lib/manager-worker.js.map +1 -1
- package/mcp/index.js +9 -0
- package/mcp/slack-channel.js +11 -7
- package/mcp/telegram-channel.js +36 -5
- package/package.json +1 -1
- package/dist/chunk-IGKAMH32.js.map +0 -1
|
@@ -3280,6 +3280,13 @@ function buildMcpJson(input) {
|
|
|
3280
3280
|
AGT_API_KEY: process.env["AGT_API_KEY"] ?? "",
|
|
3281
3281
|
AGT_AGENT_ID: input.agent.agent_id,
|
|
3282
3282
|
AGT_AGENT_CODE_NAME: input.agent.code_name,
|
|
3283
|
+
// ENG-4561: Claude Code substitutes `${VAR}` in .mcp.json env values
|
|
3284
|
+
// at MCP-launch time using the spawn environment, not at file-write
|
|
3285
|
+
// time. Manager-worker exports AGT_RUN_ID per Claude spawn so the
|
|
3286
|
+
// bridge can stamp run_id onto inserted rows (kanban, knowledge).
|
|
3287
|
+
// If AGT_RUN_ID isn't set in the environment, Claude leaves the
|
|
3288
|
+
// literal `${AGT_RUN_ID}` — the bridge filters that case out.
|
|
3289
|
+
AGT_RUN_ID: "${AGT_RUN_ID}",
|
|
3283
3290
|
// Console origin so the MCP bridge can build absolute URLs (e.g.
|
|
3284
3291
|
// dashboard links) in tool replies. Falls back to NEXT_PUBLIC_APP_URL
|
|
3285
3292
|
// / AGT_CONSOLE_URL — same chain consoleUrl uses for kanban links.
|
|
@@ -7115,4 +7122,4 @@ export {
|
|
|
7115
7122
|
managerStopCommand,
|
|
7116
7123
|
managerStatusCommand
|
|
7117
7124
|
};
|
|
7118
|
-
//# sourceMappingURL=chunk-
|
|
7125
|
+
//# sourceMappingURL=chunk-32D5TUSD.js.map
|