@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.
@@ -3,7 +3,7 @@ import {
3
3
  formatMissingVar,
4
4
  isClaudeFastMode,
5
5
  probeMcpEnvSubstitution
6
- } from "./chunk-SAAK2IP4.js";
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-TNKKZHEQ.js.map
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-SAAK2IP4.js.map
6487
+ //# sourceMappingURL=chunk-CQZDKD2U.js.map