@integrity-labs/agt-cli 0.28.159 → 0.28.161
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 +8 -7
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-TNKKZHEQ.js → chunk-2D5COEAS.js} +2 -2
- package/dist/{chunk-SAAK2IP4.js → chunk-CQZDKD2U.js} +30 -1
- package/dist/chunk-CQZDKD2U.js.map +1 -0
- package/dist/{chunk-PGW3CTYR.js → chunk-TNTG4DNQ.js} +7 -3
- package/dist/chunk-TNTG4DNQ.js.map +1 -0
- package/dist/{claude-pair-runtime-E2E2FJHS.js → claude-pair-runtime-VHRJFJDJ.js} +2 -2
- package/dist/lib/manager-worker.js +36 -35
- package/dist/lib/manager-worker.js.map +1 -1
- package/dist/mcp/index.js +14 -4
- package/dist/{persistent-session-K5CFAUY7.js → persistent-session-3AC6FSX6.js} +3 -3
- package/dist/{responsiveness-probe-5BQI3RNU.js → responsiveness-probe-ZXB5REIY.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-PGW3CTYR.js.map +0 -1
- package/dist/chunk-SAAK2IP4.js.map +0 -1
- /package/dist/{chunk-TNKKZHEQ.js.map → chunk-2D5COEAS.js.map} +0 -0
- /package/dist/{claude-pair-runtime-E2E2FJHS.js.map → claude-pair-runtime-VHRJFJDJ.js.map} +0 -0
- /package/dist/{persistent-session-K5CFAUY7.js.map → persistent-session-3AC6FSX6.js.map} +0 -0
- /package/dist/{responsiveness-probe-5BQI3RNU.js.map → responsiveness-probe-ZXB5REIY.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatMissingVar,
|
|
4
4
|
isClaudeFastMode,
|
|
5
5
|
probeMcpEnvSubstitution
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-CQZDKD2U.js";
|
|
7
7
|
import {
|
|
8
8
|
reapOrphanChannelMcps
|
|
9
9
|
} from "./chunk-XWVM4KPK.js";
|
|
@@ -1588,4 +1588,4 @@ export {
|
|
|
1588
1588
|
stopAllSessionsAndWait,
|
|
1589
1589
|
getProjectDir
|
|
1590
1590
|
};
|
|
1591
|
-
//# sourceMappingURL=chunk-
|
|
1591
|
+
//# sourceMappingURL=chunk-2D5COEAS.js.map
|
|
@@ -43,15 +43,32 @@ function isClaudeFastMode(primaryModel) {
|
|
|
43
43
|
return /\[fast\]/i.test(primaryModel);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
// ../../packages/core/dist/types/agent.js
|
|
47
|
+
var DEFAULT_FRAMEWORK = "claude-code";
|
|
48
|
+
var FRAMEWORK_DEPRECATION = {
|
|
49
|
+
openclaw: true,
|
|
50
|
+
nemoclaw: true,
|
|
51
|
+
"claude-code": false,
|
|
52
|
+
"managed-agents": true
|
|
53
|
+
};
|
|
54
|
+
|
|
46
55
|
// ../../packages/core/dist/provisioning/framework-registry.js
|
|
47
56
|
var adapters = /* @__PURE__ */ new Map();
|
|
48
57
|
function registerFramework(adapter) {
|
|
49
58
|
adapters.set(adapter.id, adapter);
|
|
50
59
|
}
|
|
60
|
+
function frameworkDeprecationNotice(id) {
|
|
61
|
+
return `[deprecated] Framework "${id}" is deprecated and no longer offered for new agents or hosts. Claude Code is the supported framework. Existing agents keep running; plan a migration to claude-code.`;
|
|
62
|
+
}
|
|
63
|
+
var warnedDeprecated = /* @__PURE__ */ new Set();
|
|
51
64
|
function getFramework(id) {
|
|
52
65
|
const adapter = adapters.get(id);
|
|
53
66
|
if (!adapter)
|
|
54
67
|
throw new Error(`Unknown framework: "${id}". Registered: ${[...adapters.keys()].join(", ")}`);
|
|
68
|
+
if (adapter.deprecated && !warnedDeprecated.has(id)) {
|
|
69
|
+
warnedDeprecated.add(id);
|
|
70
|
+
console.warn(frameworkDeprecationNotice(id));
|
|
71
|
+
}
|
|
55
72
|
return adapter;
|
|
56
73
|
}
|
|
57
74
|
|
|
@@ -1768,6 +1785,16 @@ var FLAG_REGISTRY = [
|
|
|
1768
1785
|
// host-side override.
|
|
1769
1786
|
defaultValue: false,
|
|
1770
1787
|
public: true
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
key: "cross-team-kanban-assign",
|
|
1791
|
+
description: "Allow an agent to assign a kanban task to an agent on a DIFFERENT team in the same organization (ENG-6906), reusing the cross-team peer-messaging consent model: an org set to `unrestricted` needs no grant, an org set to `consent_required` needs a live cross_team_peer_grant. Off = the assign route refuses any cross-team target (same-team kanban_assign is unaffected), so no agent can place a card on another team. Per-org activation gate; ships dark.",
|
|
1792
|
+
flagType: "boolean",
|
|
1793
|
+
// Declared safe value is `false`: cross-team assignment is a net-new
|
|
1794
|
+
// capability that crosses a team trust boundary, so the fail-safe / absent-
|
|
1795
|
+
// flag direction is "no cross-team assignment". No envVar — net-new control
|
|
1796
|
+
// with no pre-flags env gate to migrate.
|
|
1797
|
+
defaultValue: false
|
|
1771
1798
|
}
|
|
1772
1799
|
];
|
|
1773
1800
|
var REGISTRY_BY_KEY = new Map(FLAG_REGISTRY.map((definition) => [definition.key, definition]));
|
|
@@ -6389,6 +6416,8 @@ export {
|
|
|
6389
6416
|
DEFAULT_MODELS,
|
|
6390
6417
|
claudeModelAlias,
|
|
6391
6418
|
isClaudeFastMode,
|
|
6419
|
+
DEFAULT_FRAMEWORK,
|
|
6420
|
+
FRAMEWORK_DEPRECATION,
|
|
6392
6421
|
registerFramework,
|
|
6393
6422
|
getFramework,
|
|
6394
6423
|
CHANNEL_REGISTRY,
|
|
@@ -6455,4 +6484,4 @@ export {
|
|
|
6455
6484
|
parseEnvIntegrations,
|
|
6456
6485
|
probeMcpEnvSubstitution
|
|
6457
6486
|
};
|
|
6458
|
-
//# sourceMappingURL=chunk-
|
|
6487
|
+
//# sourceMappingURL=chunk-CQZDKD2U.js.map
|