@integrity-labs/agt-cli 0.28.598 → 0.28.599
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
CHANGED
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
success,
|
|
41
41
|
table,
|
|
42
42
|
warn
|
|
43
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-MQCSDRD3.js";
|
|
44
44
|
import {
|
|
45
45
|
readDirectChatSessionState
|
|
46
46
|
} from "../chunk-4E3L4U34.js";
|
|
@@ -4910,7 +4910,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4910
4910
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4911
4911
|
import chalk18 from "chalk";
|
|
4912
4912
|
import ora16 from "ora";
|
|
4913
|
-
var cliVersion = true ? "0.28.
|
|
4913
|
+
var cliVersion = true ? "0.28.599" : "dev";
|
|
4914
4914
|
async function fetchLatestVersion() {
|
|
4915
4915
|
const host2 = getHost();
|
|
4916
4916
|
if (!host2) return null;
|
|
@@ -6090,7 +6090,7 @@ function handleError(err) {
|
|
|
6090
6090
|
}
|
|
6091
6091
|
|
|
6092
6092
|
// src/bin/agt.ts
|
|
6093
|
-
var cliVersion2 = true ? "0.28.
|
|
6093
|
+
var cliVersion2 = true ? "0.28.599" : "dev";
|
|
6094
6094
|
var program = new Command();
|
|
6095
6095
|
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");
|
|
6096
6096
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -6030,7 +6030,7 @@ function exchangeFailureKind(err) {
|
|
|
6030
6030
|
}
|
|
6031
6031
|
|
|
6032
6032
|
// src/lib/api-client.ts
|
|
6033
|
-
var agtCliVersion = true ? "0.28.
|
|
6033
|
+
var agtCliVersion = true ? "0.28.599" : "dev";
|
|
6034
6034
|
var lastConfigHash = null;
|
|
6035
6035
|
function setConfigHash(hash) {
|
|
6036
6036
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -9485,4 +9485,4 @@ export {
|
|
|
9485
9485
|
managerInstallSystemUnitCommand,
|
|
9486
9486
|
managerUninstallSystemUnitCommand
|
|
9487
9487
|
};
|
|
9488
|
-
//# sourceMappingURL=chunk-
|
|
9488
|
+
//# sourceMappingURL=chunk-MQCSDRD3.js.map
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
safeWriteJsonAtomic,
|
|
54
54
|
setConfigHash,
|
|
55
55
|
tripClass
|
|
56
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-MQCSDRD3.js";
|
|
57
57
|
import {
|
|
58
58
|
getProjectDir as getProjectDir2,
|
|
59
59
|
getReadyTasks,
|
|
@@ -11880,7 +11880,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
11880
11880
|
var lastVersionCheckAt = 0;
|
|
11881
11881
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
11882
11882
|
var lastResponsivenessProbeAt = 0;
|
|
11883
|
-
var agtCliVersion = true ? "0.28.
|
|
11883
|
+
var agtCliVersion = true ? "0.28.599" : "dev";
|
|
11884
11884
|
function resolveBrewPath(execFileSync3) {
|
|
11885
11885
|
try {
|
|
11886
11886
|
const out = execFileSync3("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
package/dist/mcp/index.js
CHANGED
|
@@ -22700,6 +22700,16 @@ server.tool(
|
|
|
22700
22700
|
title: external_exports.string().optional().describe("Item title for fuzzy match (if no id)"),
|
|
22701
22701
|
result: external_exports.string().optional().describe("What was produced/delivered"),
|
|
22702
22702
|
notes: external_exports.string().optional().describe("Completion notes"),
|
|
22703
|
+
// ENG-8798 (CS-1540): what `result` IS, so a human scanning the board can
|
|
22704
|
+
// tell a delivered artefact from a note about the run. Agent-asserted
|
|
22705
|
+
// because it cannot be derived — the manager's classifyOutput is a
|
|
22706
|
+
// <no-delivery/> sentinel detector that answers "deliver" for essentially
|
|
22707
|
+
// every card; see migration 20260816000002. Optional on purpose: an
|
|
22708
|
+
// omission is the honest "not stated", and a required field would break
|
|
22709
|
+
// every host that has not self-updated yet.
|
|
22710
|
+
result_kind: external_exports.enum(["deliverable", "status"]).optional().describe(
|
|
22711
|
+
'What the `result` field IS. "deliverable" = the result text IS the thing they asked for (a brief, an analysis, copy, a list they will act on or paste elsewhere). "status" = a note ABOUT the run ("no changes this week", "checked, nothing to report", "3 items processed, no action needed"). Judge the result you are writing, not the effort behind it: a long explanation of why there was nothing to do is still "status", and a two-line answer to the question they asked is still "deliverable". Omit it if genuinely unsure \u2014 an omission reads as "not stated", which is better than a wrong label.'
|
|
22712
|
+
),
|
|
22703
22713
|
// ENG-6094 / ENG-6839: conditional scheduled-task delivery assertion.
|
|
22704
22714
|
// Ignored for normal cards; only meaningful on a scheduled routine whose
|
|
22705
22715
|
// delivery_policy is 'conditional' ("only when it matters").
|
|
@@ -22726,6 +22736,7 @@ server.tool(
|
|
|
22726
22736
|
status: "done",
|
|
22727
22737
|
result: params.result,
|
|
22728
22738
|
notes: params.notes,
|
|
22739
|
+
result_kind: params.result_kind,
|
|
22729
22740
|
suppress_delivery: params.suppress_delivery,
|
|
22730
22741
|
delivery_reason: params.delivery_reason
|
|
22731
22742
|
}
|
package/package.json
CHANGED
|
File without changes
|