mrvn-cli 0.3.6 → 0.3.7
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/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +37 -0
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +8 -1
- package/dist/marvin.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20888,6 +20888,12 @@ function collectTools(marvinDir) {
|
|
|
20888
20888
|
const skillsWithActions = allSkillIds.map((id) => allSkills.get(id)).filter((s) => s.actions && s.actions.length > 0);
|
|
20889
20889
|
const projectRoot = path10.dirname(marvinDir);
|
|
20890
20890
|
const actionTools = createSkillActionTools(skillsWithActions, { store, marvinDir, projectRoot });
|
|
20891
|
+
const allSkillRegs = collectSkillRegistrations(allSkillIds, allSkills);
|
|
20892
|
+
const navGroups = buildNavGroups({
|
|
20893
|
+
pluginRegs: registrations,
|
|
20894
|
+
skillRegs: allSkillRegs,
|
|
20895
|
+
pluginName: plugin?.name
|
|
20896
|
+
});
|
|
20891
20897
|
return [
|
|
20892
20898
|
...createDecisionTools(store),
|
|
20893
20899
|
...createActionTools(store),
|
|
@@ -20895,6 +20901,7 @@ function collectTools(marvinDir) {
|
|
|
20895
20901
|
...createDocumentTools(store),
|
|
20896
20902
|
...manifest ? createSourceTools(manifest) : [],
|
|
20897
20903
|
...createSessionTools(sessionStore),
|
|
20904
|
+
...createWebTools(store, config2.name, navGroups),
|
|
20898
20905
|
...pluginTools,
|
|
20899
20906
|
...codeSkillTools,
|
|
20900
20907
|
...actionTools
|
|
@@ -23643,7 +23650,7 @@ function createProgram() {
|
|
|
23643
23650
|
const program = new Command();
|
|
23644
23651
|
program.name("marvin").description(
|
|
23645
23652
|
"AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
|
|
23646
|
-
).version("0.3.
|
|
23653
|
+
).version("0.3.7");
|
|
23647
23654
|
program.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
|
|
23648
23655
|
await initCommand();
|
|
23649
23656
|
});
|