@integrity-labs/agt-cli 0.28.159 → 0.28.160

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.
@@ -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
 
@@ -6389,6 +6406,8 @@ export {
6389
6406
  DEFAULT_MODELS,
6390
6407
  claudeModelAlias,
6391
6408
  isClaudeFastMode,
6409
+ DEFAULT_FRAMEWORK,
6410
+ FRAMEWORK_DEPRECATION,
6392
6411
  registerFramework,
6393
6412
  getFramework,
6394
6413
  CHANNEL_REGISTRY,
@@ -6455,4 +6474,4 @@ export {
6455
6474
  parseEnvIntegrations,
6456
6475
  probeMcpEnvSubstitution
6457
6476
  };
6458
- //# sourceMappingURL=chunk-SAAK2IP4.js.map
6477
+ //# sourceMappingURL=chunk-65FVM2UA.js.map