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/index.js
CHANGED
|
@@ -17473,7 +17473,7 @@ function createEpicTools(store) {
|
|
|
17473
17473
|
{
|
|
17474
17474
|
title: external_exports.string().describe("Epic title"),
|
|
17475
17475
|
content: external_exports.string().describe("Epic description and scope"),
|
|
17476
|
-
linkedFeature: external_exports.
|
|
17476
|
+
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'])"),
|
|
17477
17477
|
status: external_exports.enum(["planned", "in-progress", "done"]).optional().describe("Epic status (default: 'planned')"),
|
|
17478
17478
|
owner: external_exports.string().optional().describe("Epic owner"),
|
|
17479
17479
|
targetDate: external_exports.string().optional().describe("Target completion date (ISO format)"),
|
|
@@ -17549,7 +17549,7 @@ function createEpicTools(store) {
|
|
|
17549
17549
|
owner: external_exports.string().optional().describe("New owner"),
|
|
17550
17550
|
targetDate: external_exports.string().optional().describe("New target date"),
|
|
17551
17551
|
estimatedEffort: external_exports.string().optional().describe("New estimated effort"),
|
|
17552
|
-
linkedFeature: external_exports.
|
|
17552
|
+
linkedFeature: external_exports.array(external_exports.string()).optional().describe("New linked feature ID(s)"),
|
|
17553
17553
|
tags: external_exports.array(external_exports.string()).optional().describe("Replace tags (e.g. remove 'risk', add 'risk-mitigated')")
|
|
17554
17554
|
},
|
|
17555
17555
|
async (args) => {
|
|
@@ -23708,7 +23708,7 @@ function createProgram() {
|
|
|
23708
23708
|
const program = new Command();
|
|
23709
23709
|
program.name("marvin").description(
|
|
23710
23710
|
"AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
|
|
23711
|
-
).version("0.4.
|
|
23711
|
+
).version("0.4.1");
|
|
23712
23712
|
program.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
|
|
23713
23713
|
await initCommand();
|
|
23714
23714
|
});
|