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/marvin.js
CHANGED
|
@@ -21989,6 +21989,12 @@ function collectTools(marvinDir) {
|
|
|
21989
21989
|
const skillsWithActions = allSkillIds.map((id) => allSkills.get(id)).filter((s) => s.actions && s.actions.length > 0);
|
|
21990
21990
|
const projectRoot = path14.dirname(marvinDir);
|
|
21991
21991
|
const actionTools = createSkillActionTools(skillsWithActions, { store, marvinDir, projectRoot });
|
|
21992
|
+
const allSkillRegs = collectSkillRegistrations(allSkillIds, allSkills);
|
|
21993
|
+
const navGroups = buildNavGroups({
|
|
21994
|
+
pluginRegs: registrations,
|
|
21995
|
+
skillRegs: allSkillRegs,
|
|
21996
|
+
pluginName: plugin?.name
|
|
21997
|
+
});
|
|
21992
21998
|
return [
|
|
21993
21999
|
...createDecisionTools(store),
|
|
21994
22000
|
...createActionTools(store),
|
|
@@ -21996,6 +22002,7 @@ function collectTools(marvinDir) {
|
|
|
21996
22002
|
...createDocumentTools(store),
|
|
21997
22003
|
...manifest ? createSourceTools(manifest) : [],
|
|
21998
22004
|
...createSessionTools(sessionStore),
|
|
22005
|
+
...createWebTools(store, config2.name, navGroups),
|
|
21999
22006
|
...pluginTools,
|
|
22000
22007
|
...codeSkillTools,
|
|
22001
22008
|
...actionTools
|
|
@@ -23637,7 +23644,7 @@ function createProgram() {
|
|
|
23637
23644
|
const program2 = new Command();
|
|
23638
23645
|
program2.name("marvin").description(
|
|
23639
23646
|
"AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
|
|
23640
|
-
).version("0.3.
|
|
23647
|
+
).version("0.3.7");
|
|
23641
23648
|
program2.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
|
|
23642
23649
|
await initCommand();
|
|
23643
23650
|
});
|