@integrity-labs/agt-cli 0.22.2 → 0.22.3
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
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
success,
|
|
27
27
|
table,
|
|
28
28
|
warn
|
|
29
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-QGP4XD7R.js";
|
|
30
30
|
import {
|
|
31
31
|
CHANNEL_REGISTRY,
|
|
32
32
|
DEPLOYMENT_TEMPLATES,
|
|
@@ -3736,7 +3736,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
3736
3736
|
import { existsSync as existsSync5, realpathSync } from "fs";
|
|
3737
3737
|
import chalk17 from "chalk";
|
|
3738
3738
|
import ora15 from "ora";
|
|
3739
|
-
var cliVersion = true ? "0.22.
|
|
3739
|
+
var cliVersion = true ? "0.22.3" : "dev";
|
|
3740
3740
|
async function fetchLatestVersion() {
|
|
3741
3741
|
const host2 = getHost();
|
|
3742
3742
|
if (!host2) return null;
|
|
@@ -4268,7 +4268,7 @@ function handleError(err) {
|
|
|
4268
4268
|
}
|
|
4269
4269
|
|
|
4270
4270
|
// src/bin/agt.ts
|
|
4271
|
-
var cliVersion2 = true ? "0.22.
|
|
4271
|
+
var cliVersion2 = true ? "0.22.3" : "dev";
|
|
4272
4272
|
var program = new Command();
|
|
4273
4273
|
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");
|
|
4274
4274
|
program.hook("preAction", (thisCommand) => {
|
|
@@ -2592,8 +2592,16 @@ nothing; interrupting active work to satisfy it costs the user.
|
|
|
2592
2592
|
Each row you started must reach a terminal state on the same or a
|
|
2593
2593
|
later tick:
|
|
2594
2594
|
|
|
2595
|
-
- **\`kanban_done\` with
|
|
2596
|
-
expected output.
|
|
2595
|
+
- **\`kanban_done\` with the deliverable as the result** when the work
|
|
2596
|
+
produced its expected output. The \`result\` field is what the user
|
|
2597
|
+
will see in completion notifications (Telegram/Slack/email), so put
|
|
2598
|
+
the **deliverable itself** there, not a description of it.
|
|
2599
|
+
- BAD: \`result: "Email summary \u2014 last 48h"\` (a label).
|
|
2600
|
+
- GOOD: \`result: "Inbox last 48h: 3 unread from <addr> re budget;
|
|
2601
|
+
1 from <addr> re Q3 plan; \u2026"\` (the actual summary).
|
|
2602
|
+
- For long-form output (>500 chars), lead with a one-line summary,
|
|
2603
|
+
then a blank line, then the full content. Channel formatters
|
|
2604
|
+
truncate gracefully but the lede always lands.
|
|
2597
2605
|
- **\`kanban_fail\` with a reason** when something went wrong
|
|
2598
2606
|
(missing access, credential failure, tool error). The work was
|
|
2599
2607
|
attempted but failed.
|
|
@@ -6604,4 +6612,4 @@ export {
|
|
|
6604
6612
|
managerInstallSystemUnitCommand,
|
|
6605
6613
|
managerUninstallSystemUnitCommand
|
|
6606
6614
|
};
|
|
6607
|
-
//# sourceMappingURL=chunk-
|
|
6615
|
+
//# sourceMappingURL=chunk-QGP4XD7R.js.map
|