50c 2.5.1 → 2.5.2

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/lib/index.js +5 -2
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -42,8 +42,11 @@ async function getTools() {
42
42
  ...beacon.ROADMAP_TOOLS, // Roadmap is FREE
43
43
  ];
44
44
 
45
- // STARTER tier
46
- if (config.packs.beacon) tools.push(...beacon.BEACON_TOOLS);
45
+ // STARTER tier (exclude roadmap - already added above)
46
+ if (config.packs.beacon) {
47
+ const beaconNonRoadmap = beacon.BEACON_TOOLS.filter(t => !t.name.startsWith('roadmap_'));
48
+ tools.push(...beaconNonRoadmap);
49
+ }
47
50
 
48
51
  // PRO tier
49
52
  if (config.packs.labs) tools.push(...labs.LABS_TOOLS);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "50c",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "AI toolkit with Dewey index. One install, 100+ tools.",
5
5
  "main": "lib/index.js",
6
6
  "bin": {