@integrity-labs/agt-cli 0.27.51 → 0.27.53
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 +4 -4
- package/dist/{chunk-UOHGOS3O.js → chunk-2NOH5XB5.js} +13 -1
- package/dist/chunk-2NOH5XB5.js.map +1 -0
- package/dist/{chunk-5S322IC7.js → chunk-4ZKBMJ3Y.js} +2 -2
- package/dist/{chunk-Y4KVZGPE.js → chunk-GPBGRRCV.js} +50 -34
- package/dist/chunk-GPBGRRCV.js.map +1 -0
- package/dist/{claude-pair-runtime-PZBLMYVH.js → claude-pair-runtime-OOVDC4YK.js} +2 -2
- package/dist/lib/manager-worker.js +442 -198
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/{persistent-session-JRF3JXTC.js → persistent-session-6TWTADQN.js} +3 -3
- package/dist/{responsiveness-probe-JZLGWZFN.js → responsiveness-probe-KBUKS7PN.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-UOHGOS3O.js.map +0 -1
- package/dist/chunk-Y4KVZGPE.js.map +0 -1
- /package/dist/{chunk-5S322IC7.js.map → chunk-4ZKBMJ3Y.js.map} +0 -0
- /package/dist/{claude-pair-runtime-PZBLMYVH.js.map → claude-pair-runtime-OOVDC4YK.js.map} +0 -0
- /package/dist/{persistent-session-JRF3JXTC.js.map → persistent-session-6TWTADQN.js.map} +0 -0
- /package/dist/{responsiveness-probe-JZLGWZFN.js.map → responsiveness-probe-KBUKS7PN.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
success,
|
|
28
28
|
table,
|
|
29
29
|
warn
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-GPBGRRCV.js";
|
|
31
31
|
import {
|
|
32
32
|
CHANNEL_REGISTRY,
|
|
33
33
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
renderTemplate,
|
|
54
54
|
resolveChannels,
|
|
55
55
|
serializeManifestForSlackCli
|
|
56
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-2NOH5XB5.js";
|
|
57
57
|
|
|
58
58
|
// src/bin/agt.ts
|
|
59
59
|
import { join as join18 } from "path";
|
|
@@ -4710,7 +4710,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4710
4710
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4711
4711
|
import chalk18 from "chalk";
|
|
4712
4712
|
import ora16 from "ora";
|
|
4713
|
-
var cliVersion = true ? "0.27.
|
|
4713
|
+
var cliVersion = true ? "0.27.53" : "dev";
|
|
4714
4714
|
async function fetchLatestVersion() {
|
|
4715
4715
|
const host2 = getHost();
|
|
4716
4716
|
if (!host2) return null;
|
|
@@ -5488,7 +5488,7 @@ function handleError(err) {
|
|
|
5488
5488
|
}
|
|
5489
5489
|
|
|
5490
5490
|
// src/bin/agt.ts
|
|
5491
|
-
var cliVersion2 = true ? "0.27.
|
|
5491
|
+
var cliVersion2 = true ? "0.27.53" : "dev";
|
|
5492
5492
|
var program = new Command();
|
|
5493
5493
|
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");
|
|
5494
5494
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -3909,6 +3909,18 @@ function attributeTranscriptUsageByRun(jsonl) {
|
|
|
3909
3909
|
return { perRunModel: [...agg.values()], runIds: [...runIds] };
|
|
3910
3910
|
}
|
|
3911
3911
|
|
|
3912
|
+
// ../../packages/core/dist/kanban/state-machine.js
|
|
3913
|
+
var KANBAN_STATUSES = [
|
|
3914
|
+
"backlog",
|
|
3915
|
+
"todo",
|
|
3916
|
+
"in_progress",
|
|
3917
|
+
"done",
|
|
3918
|
+
"failed",
|
|
3919
|
+
"cancelled",
|
|
3920
|
+
"needs_attention"
|
|
3921
|
+
];
|
|
3922
|
+
var KANBAN_STATUS_SET = new Set(KANBAN_STATUSES);
|
|
3923
|
+
|
|
3912
3924
|
// ../../packages/core/dist/conversations/metrics.js
|
|
3913
3925
|
var PERIOD_CONFIG = {
|
|
3914
3926
|
"24h": { windowMs: 24 * 60 * 60 * 1e3, bucket: "hour" },
|
|
@@ -3967,4 +3979,4 @@ export {
|
|
|
3967
3979
|
attributeTranscriptUsageByRun,
|
|
3968
3980
|
KANBAN_CHECK_COMMAND
|
|
3969
3981
|
};
|
|
3970
|
-
//# sourceMappingURL=chunk-
|
|
3982
|
+
//# sourceMappingURL=chunk-2NOH5XB5.js.map
|