@integrity-labs/agt-cli 0.28.150 → 0.28.152
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 +3 -3
- package/dist/{chunk-LCKA5XPX.js → chunk-2K6DIZXU.js} +54 -10
- package/dist/chunk-2K6DIZXU.js.map +1 -0
- package/dist/lib/manager-worker.js +9 -4
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/remote-oauth-proxy.js +168 -0
- package/dist/mcp/slack-channel.js +52 -3
- package/package.json +2 -2
- package/dist/chunk-LCKA5XPX.js.map +0 -1
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
requireHost,
|
|
29
29
|
safeWriteJsonAtomic,
|
|
30
30
|
setConfigHash
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-2K6DIZXU.js";
|
|
32
32
|
import {
|
|
33
33
|
getProjectDir as getProjectDir2,
|
|
34
34
|
getReadyTasks,
|
|
@@ -937,7 +937,7 @@ function buildOnboardingDirective(step, completed = [], opts = {}) {
|
|
|
937
937
|
const { channel, reminder = false, standDown = false, freshRestart = false, code } = opts;
|
|
938
938
|
const doneAreas = completed.filter(isOnboardingArea);
|
|
939
939
|
const alreadyCovered = doneAreas.length > 0 ? `You've already covered ${doneAreas.join(", ")} \u2014 re-orient, don't re-ask about those. ` : "";
|
|
940
|
-
const where = channel ? `your
|
|
940
|
+
const where = channel ? `whoever is guiding your onboarding in ${describeOnboardingChannel(channel)} (the channel onboarding was triggered from)` : "your manager over your usual channel";
|
|
941
941
|
const waitClause = `WAIT for their reply. Do NOT self-answer, and do NOT call \`onboarding_advance\` until they respond. ${AREA_DIRECTIVE[step]} only once they have. `;
|
|
942
942
|
const askAndWait = `Ask ${where} this area's question and ${waitClause}`;
|
|
943
943
|
const mustAskNow = `Post this area's question to ${where} as a NEW message in THIS turn. Even if you think you asked in an earlier round, do NOT "stand down" to wait unless you have just asked it now; a previous round's ask does not count. Once it is out, ${waitClause}`;
|
|
@@ -6949,7 +6949,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
6949
6949
|
var lastVersionCheckAt = 0;
|
|
6950
6950
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6951
6951
|
var lastResponsivenessProbeAt = 0;
|
|
6952
|
-
var agtCliVersion = true ? "0.28.
|
|
6952
|
+
var agtCliVersion = true ? "0.28.152" : "dev";
|
|
6953
6953
|
function resolveBrewPath(execFileSync4) {
|
|
6954
6954
|
try {
|
|
6955
6955
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -12669,7 +12669,12 @@ function deployMcpAssets() {
|
|
|
12669
12669
|
// so it doesn't drive the channel-restart path; the mcp-presence-reaper
|
|
12670
12670
|
// (re)starts it with the session, and a bundle update applies on the next
|
|
12671
12671
|
// natural session restart.
|
|
12672
|
-
"augmented-admin.js"
|
|
12672
|
+
"augmented-admin.js",
|
|
12673
|
+
// ENG-6859: the remote OAuth MCP proxy (brand-ninja, granola). NOT in
|
|
12674
|
+
// RESTARTABLE_CHANNEL_FILES - it's not a channel; a bundle update applies on
|
|
12675
|
+
// the next natural session restart. It re-reads the token from the secrets
|
|
12676
|
+
// file per request, so it never needs restarting just to pick up a rotation.
|
|
12677
|
+
"remote-oauth-proxy.js"
|
|
12673
12678
|
]) {
|
|
12674
12679
|
const src = join16(mcpSourceDir, file);
|
|
12675
12680
|
const dst = join16(targetDir, file);
|