50c 2.5.0 → 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.
package/lib/index.js CHANGED
@@ -39,10 +39,14 @@ async function getTools() {
39
39
  ...core.CORE_TOOLS,
40
40
  ...vault.VAULT_TOOLS,
41
41
  ...packs.PACK_TOOLS,
42
+ ...beacon.ROADMAP_TOOLS, // Roadmap is FREE
42
43
  ];
43
44
 
44
- // STARTER tier
45
- 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
+ }
46
50
 
47
51
  // PRO tier
48
52
  if (config.packs.labs) tools.push(...labs.LABS_TOOLS);
@@ -67,10 +71,15 @@ async function handleTool(name, args = {}) {
67
71
  }
68
72
 
69
73
  // Vault tools (FREE)
70
- if (name.startsWith('vault_')) {
74
+ if (name.startsWith('vault_') || name.startsWith('dewey_')) {
71
75
  return vault.handleTool(name, args);
72
76
  }
73
77
 
78
+ // Roadmap tools (FREE - in beacon but always available)
79
+ if (name.startsWith('roadmap_')) {
80
+ return beacon.handleTool(name, args);
81
+ }
82
+
74
83
  // Pack management tools (FREE)
75
84
  if (name.startsWith('50c_')) {
76
85
  return packs.handleTool(name, args);
@@ -304,5 +304,7 @@ module.exports = {
304
304
  roadmapAdd,
305
305
  roadmapList,
306
306
  roadmapUpdate,
307
- roadmapDelete
307
+ roadmapDelete,
308
+ // Export roadmap tools separately for FREE tier
309
+ ROADMAP_TOOLS: BEACON_TOOLS.filter(t => t.name.startsWith('roadmap_'))
308
310
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "50c",
3
- "version": "2.5.0",
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": {