@integrity-labs/agt-cli 0.28.197 → 0.28.198
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-WBTOXOUC.js → chunk-75XCRB6E.js} +2 -2
- package/dist/lib/manager-worker.js +4 -4
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +13 -13
- package/package.json +1 -1
- /package/dist/{chunk-WBTOXOUC.js.map → chunk-75XCRB6E.js.map} +0 -0
package/dist/bin/agt.js
CHANGED
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
success,
|
|
38
38
|
table,
|
|
39
39
|
warn
|
|
40
|
-
} from "../chunk-
|
|
40
|
+
} from "../chunk-75XCRB6E.js";
|
|
41
41
|
import {
|
|
42
42
|
CHANNEL_REGISTRY,
|
|
43
43
|
DEFAULT_FRAMEWORK,
|
|
@@ -4749,7 +4749,7 @@ import { execFileSync, execSync } from "child_process";
|
|
|
4749
4749
|
import { existsSync as existsSync10, realpathSync as realpathSync2 } from "fs";
|
|
4750
4750
|
import chalk18 from "chalk";
|
|
4751
4751
|
import ora16 from "ora";
|
|
4752
|
-
var cliVersion = true ? "0.28.
|
|
4752
|
+
var cliVersion = true ? "0.28.198" : "dev";
|
|
4753
4753
|
async function fetchLatestVersion() {
|
|
4754
4754
|
const host2 = getHost();
|
|
4755
4755
|
if (!host2) return null;
|
|
@@ -5763,7 +5763,7 @@ function handleError(err) {
|
|
|
5763
5763
|
}
|
|
5764
5764
|
|
|
5765
5765
|
// src/bin/agt.ts
|
|
5766
|
-
var cliVersion2 = true ? "0.28.
|
|
5766
|
+
var cliVersion2 = true ? "0.28.198" : "dev";
|
|
5767
5767
|
var program = new Command();
|
|
5768
5768
|
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");
|
|
5769
5769
|
program.hook("preAction", async (thisCommand, actionCommand) => {
|
|
@@ -5525,7 +5525,7 @@ function requireHost() {
|
|
|
5525
5525
|
}
|
|
5526
5526
|
|
|
5527
5527
|
// src/lib/api-client.ts
|
|
5528
|
-
var agtCliVersion = true ? "0.28.
|
|
5528
|
+
var agtCliVersion = true ? "0.28.198" : "dev";
|
|
5529
5529
|
var lastConfigHash = null;
|
|
5530
5530
|
function setConfigHash(hash) {
|
|
5531
5531
|
lastConfigHash = hash && hash.length > 0 ? hash : null;
|
|
@@ -6829,4 +6829,4 @@ export {
|
|
|
6829
6829
|
managerInstallSystemUnitCommand,
|
|
6830
6830
|
managerUninstallSystemUnitCommand
|
|
6831
6831
|
};
|
|
6832
|
-
//# sourceMappingURL=chunk-
|
|
6832
|
+
//# sourceMappingURL=chunk-75XCRB6E.js.map
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
requireHost,
|
|
28
28
|
safeWriteJsonAtomic,
|
|
29
29
|
setConfigHash
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-75XCRB6E.js";
|
|
31
31
|
import {
|
|
32
32
|
getProjectDir as getProjectDir2,
|
|
33
33
|
getReadyTasks,
|
|
@@ -6681,7 +6681,7 @@ var agentRestartTimezoneInputs = /* @__PURE__ */ new Map();
|
|
|
6681
6681
|
var lastVersionCheckAt = 0;
|
|
6682
6682
|
var VERSION_CHECK_INTERVAL_MS = 5 * 60 * 1e3;
|
|
6683
6683
|
var lastResponsivenessProbeAt = 0;
|
|
6684
|
-
var agtCliVersion = true ? "0.28.
|
|
6684
|
+
var agtCliVersion = true ? "0.28.198" : "dev";
|
|
6685
6685
|
function resolveBrewPath(execFileSync4) {
|
|
6686
6686
|
try {
|
|
6687
6687
|
const out = execFileSync4("which", ["brew"], { timeout: 5e3 }).toString().trim();
|
|
@@ -7465,9 +7465,9 @@ Integration skills under \`.claude/skills/integration-*/SKILL.md\` are **read-on
|
|
|
7465
7465
|
|
|
7466
7466
|
**Never edit \`.claude/skills/integration-*/SKILL.md\` files directly.** If you do, your edit will be silently overwritten on the next manager refresh, AND it won't propagate to other agents using the same integration.
|
|
7467
7467
|
|
|
7468
|
-
To change an integration's behavior (add a rule, update a default, tell the integration not to do something), call the **\`
|
|
7468
|
+
To change an integration's behavior (add a rule, update a default, tell the integration not to do something), call the **\`integration_improve\`** MCP tool with the user's request. The tool calls the platform API, which uses an LLM to translate the request into a structured update of the integration's typed context fields and/or freeform overrides text. You'll get a diff back to show the user; on confirmation, call the tool again with \`auto_apply: true\` to apply.
|
|
7469
7469
|
|
|
7470
|
-
Examples of when to use \`
|
|
7470
|
+
Examples of when to use \`integration_improve\`:
|
|
7471
7471
|
- *"Update the Coding integration so we always use trunk instead of main"*
|
|
7472
7472
|
- *"Add a rule to the Coding integration: never merge directly to main, always open a PR"*
|
|
7473
7473
|
- *"Tell the Knowledge Base integration not to return results below 70% relevance"*
|