@openagents-org/agent-launcher 0.2.96 → 0.2.97

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/registry.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.96",
3
+ "version": "0.2.97",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/registry.js CHANGED
@@ -97,6 +97,10 @@ class Registry {
97
97
  if (!entry.install && b.install) entry.install = b.install;
98
98
  if (!entry.check_ready && b.check_ready) entry.check_ready = b.check_ready;
99
99
  if (!entry.launch && b.launch) entry.launch = b.launch;
100
+ // Always take featured/order/support from bundled (source of truth for ordering)
101
+ if (b.featured !== undefined) entry.featured = b.featured;
102
+ if (b.order !== undefined) entry.order = b.order;
103
+ if (b.support) entry.support = b.support;
100
104
  }
101
105
  }
102
106
  // Add bundled entries not in catalog