50c 2.5.0 → 2.5.1
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 +7 -1
- package/lib/packs/beacon.js +3 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -39,6 +39,7 @@ 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
45
|
// STARTER tier
|
|
@@ -67,10 +68,15 @@ async function handleTool(name, args = {}) {
|
|
|
67
68
|
}
|
|
68
69
|
|
|
69
70
|
// Vault tools (FREE)
|
|
70
|
-
if (name.startsWith('vault_')) {
|
|
71
|
+
if (name.startsWith('vault_') || name.startsWith('dewey_')) {
|
|
71
72
|
return vault.handleTool(name, args);
|
|
72
73
|
}
|
|
73
74
|
|
|
75
|
+
// Roadmap tools (FREE - in beacon but always available)
|
|
76
|
+
if (name.startsWith('roadmap_')) {
|
|
77
|
+
return beacon.handleTool(name, args);
|
|
78
|
+
}
|
|
79
|
+
|
|
74
80
|
// Pack management tools (FREE)
|
|
75
81
|
if (name.startsWith('50c_')) {
|
|
76
82
|
return packs.handleTool(name, args);
|
package/lib/packs/beacon.js
CHANGED