@integrity-labs/agt-cli 0.28.293 → 0.28.294
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
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
success,
|
|
39
39
|
table,
|
|
40
40
|
warn
|
|
41
|
-
} from "../chunk-
|
|
41
|
+
} from "../chunk-5F23HET3.js";
|
|
42
42
|
import {
|
|
43
43
|
CHANNEL_REGISTRY,
|
|
44
44
|
DEFAULT_FRAMEWORK,
|
|
@@ -4826,7 +4826,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4826
4826
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4827
4827
|
import chalk18 from "chalk";
|
|
4828
4828
|
import ora16 from "ora";
|
|
4829
|
-
var cliVersion = true ? "0.28.
|
|
4829
|
+
var cliVersion = true ? "0.28.294" : "dev";
|
|
4830
4830
|
async function fetchLatestVersion() {
|
|
4831
4831
|
const host2 = getHost();
|
|
4832
4832
|
if (!host2) return null;
|
|
@@ -5843,7 +5843,7 @@ function handleError(err) {
|
|
|
5843
5843
|
}
|
|
5844
5844
|
|
|
5845
5845
|
// src/bin/agt.ts
|
|
5846
|
-
var cliVersion2 = true ? "0.28.
|
|
5846
|
+
var cliVersion2 = true ? "0.28.294" : "dev";
|
|
5847
5847
|
var program = new Command();
|
|
5848
5848
|
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");
|
|
5849
5849
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -5882,7 +5882,7 @@ function requireHost() {
|
|
|
5882
5882
|
}
|
|
5883
5883
|
|
|
5884
5884
|
// src/lib/api-client.ts
|
|
5885
|
-
var agtCliVersion = true ? "0.28.
|
|
5885
|
+
var agtCliVersion = true ? "0.28.294" : "dev";
|
|
5886
5886
|
var lastConfigHash = null;
|
|
5887
5887
|
function setConfigHash(hash) {
|
|
5888
5888
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -8181,4 +8181,4 @@ export {
|
|
|
8181
8181
|
managerInstallSystemUnitCommand,
|
|
8182
8182
|
managerUninstallSystemUnitCommand
|
|
8183
8183
|
};
|
|
8184
|
-
//# sourceMappingURL=chunk-
|
|
8184
|
+
//# sourceMappingURL=chunk-5F23HET3.js.map
|
|
@@ -39,7 +39,7 @@ import {
|
|
|
39
39
|
requireHost,
|
|
40
40
|
safeWriteJsonAtomic,
|
|
41
41
|
setConfigHash
|
|
42
|
-
} from "../chunk-
|
|
42
|
+
} from "../chunk-5F23HET3.js";
|
|
43
43
|
import {
|
|
44
44
|
getProjectDir as getProjectDir2,
|
|
45
45
|
getReadyTasks,
|
|
@@ -6922,7 +6922,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
6922
6922
|
var lastVersionCheckAt = 0;
|
|
6923
6923
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6924
6924
|
var lastResponsivenessProbeAt = 0;
|
|
6925
|
-
var agtCliVersion = true ? "0.28.
|
|
6925
|
+
var agtCliVersion = true ? "0.28.294" : "dev";
|
|
6926
6926
|
function resolveBrewPath(execFileSync2) {
|
|
6927
6927
|
try {
|
|
6928
6928
|
const out = execFileSync2("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
package/dist/mcp/index.js
CHANGED
|
@@ -21748,6 +21748,9 @@ server.tool(
|
|
|
21748
21748
|
source_integration: external_exports.string().optional().describe('Integration name (e.g., "linear", "github") when source is "integration"'),
|
|
21749
21749
|
source_external_id: external_exports.string().optional().describe('ID in the external system (e.g., "ENG-123")'),
|
|
21750
21750
|
source_url: external_exports.string().optional().describe("Deep link URL to the external source"),
|
|
21751
|
+
deliver_to: external_exports.string().optional().describe(
|
|
21752
|
+
"Optional: the Slack user id of the person who asked for this (the requester), so you can notify/deliver to them when the task needs their input or is done. Omit to default to whoever you are talking to right now (auto-detected from the conversation this card came from)."
|
|
21753
|
+
),
|
|
21751
21754
|
project_id: external_exports.string().uuid().optional().describe(
|
|
21752
21755
|
"Optional project to file this task under (id from projects_list). Groups the task with related tasks/artefacts across agents. Reuse an existing project where one fits; use projects_create only after checking projects_list and confirming with the human."
|
|
21753
21756
|
)
|
|
@@ -21768,6 +21771,7 @@ server.tool(
|
|
|
21768
21771
|
source_integration: params.source_integration,
|
|
21769
21772
|
source_external_id: params.source_external_id,
|
|
21770
21773
|
source_url: params.source_url,
|
|
21774
|
+
deliver_to: params.deliver_to,
|
|
21771
21775
|
project_id: params.project_id
|
|
21772
21776
|
}
|
|
21773
21777
|
]
|
package/package.json
CHANGED
|
File without changes
|