@integrity-labs/agt-cli 0.27.140 → 0.27.142
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-5UTHUT4E.js → chunk-OI33LV54.js} +132 -1
- package/dist/chunk-OI33LV54.js.map +1 -0
- package/dist/lib/manager-worker.js +8 -2
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/slack-channel.js +5 -2
- package/package.json +1 -1
- package/dist/chunk-5UTHUT4E.js.map +0 -1
|
@@ -12,12 +12,13 @@ import {
|
|
|
12
12
|
getHostId,
|
|
13
13
|
getIntegration,
|
|
14
14
|
provision,
|
|
15
|
+
provisionAutoKanbanProgressHook,
|
|
15
16
|
provisionIsolationHook,
|
|
16
17
|
provisionOrientHook,
|
|
17
18
|
provisionStopHook,
|
|
18
19
|
requireHost,
|
|
19
20
|
safeWriteJsonAtomic
|
|
20
|
-
} from "../chunk-
|
|
21
|
+
} from "../chunk-OI33LV54.js";
|
|
21
22
|
import {
|
|
22
23
|
getProjectDir as getProjectDir2,
|
|
23
24
|
getReadyTasks,
|
|
@@ -4757,7 +4758,7 @@ var cachedMaintenanceWindow = null;
|
|
|
4757
4758
|
var lastVersionCheckAt = 0;
|
|
4758
4759
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
4759
4760
|
var lastResponsivenessProbeAt = 0;
|
|
4760
|
-
var agtCliVersion = true ? "0.27.
|
|
4761
|
+
var agtCliVersion = true ? "0.27.142" : "dev";
|
|
4761
4762
|
function resolveBrewPath(execFileSync4) {
|
|
4762
4763
|
try {
|
|
4763
4764
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -9069,6 +9070,11 @@ ${truncateForLog(ctx.tail)}` : `; pane_tail_hash=sha256:${createHash3("sha256").
|
|
|
9069
9070
|
} catch (err) {
|
|
9070
9071
|
log(`[persistent-session] Failed to provision orient hook for '${codeName}': ${err.message}`);
|
|
9071
9072
|
}
|
|
9073
|
+
try {
|
|
9074
|
+
provisionAutoKanbanProgressHook(codeName);
|
|
9075
|
+
} catch (err) {
|
|
9076
|
+
log(`[persistent-session] Failed to provision auto-progress hook for '${codeName}': ${err.message}`);
|
|
9077
|
+
}
|
|
9072
9078
|
const sessionRunResult = await startRun({
|
|
9073
9079
|
agent_id: agent.agent_id,
|
|
9074
9080
|
source_type: "system",
|