mrvn-cli 0.4.0 → 0.4.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/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +2 -2
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +3 -3
- package/dist/marvin.js.map +1 -1
- package/package.json +1 -1
package/dist/marvin.js
CHANGED
|
@@ -14993,7 +14993,7 @@ function createEpicTools(store) {
|
|
|
14993
14993
|
{
|
|
14994
14994
|
title: external_exports.string().describe("Epic title"),
|
|
14995
14995
|
content: external_exports.string().describe("Epic description and scope"),
|
|
14996
|
-
linkedFeature: external_exports.
|
|
14996
|
+
linkedFeature: external_exports.array(external_exports.string()).describe("Feature ID(s) to link this epic to (e.g. ['F-001'] or ['F-001', 'F-002'])"),
|
|
14997
14997
|
status: external_exports.enum(["planned", "in-progress", "done"]).optional().describe("Epic status (default: 'planned')"),
|
|
14998
14998
|
owner: external_exports.string().optional().describe("Epic owner"),
|
|
14999
14999
|
targetDate: external_exports.string().optional().describe("Target completion date (ISO format)"),
|
|
@@ -15069,7 +15069,7 @@ function createEpicTools(store) {
|
|
|
15069
15069
|
owner: external_exports.string().optional().describe("New owner"),
|
|
15070
15070
|
targetDate: external_exports.string().optional().describe("New target date"),
|
|
15071
15071
|
estimatedEffort: external_exports.string().optional().describe("New estimated effort"),
|
|
15072
|
-
linkedFeature: external_exports.
|
|
15072
|
+
linkedFeature: external_exports.array(external_exports.string()).optional().describe("New linked feature ID(s)"),
|
|
15073
15073
|
tags: external_exports.array(external_exports.string()).optional().describe("Replace tags (e.g. remove 'risk', add 'risk-mitigated')")
|
|
15074
15074
|
},
|
|
15075
15075
|
async (args) => {
|
|
@@ -23702,7 +23702,7 @@ function createProgram() {
|
|
|
23702
23702
|
const program2 = new Command();
|
|
23703
23703
|
program2.name("marvin").description(
|
|
23704
23704
|
"AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
|
|
23705
|
-
).version("0.4.
|
|
23705
|
+
).version("0.4.1");
|
|
23706
23706
|
program2.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
|
|
23707
23707
|
await initCommand();
|
|
23708
23708
|
});
|