mrvn-cli 0.5.20 → 0.5.21
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 +50 -29
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +49 -28
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +50 -29
- package/dist/marvin.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14525,24 +14525,26 @@ function getEffectiveProgress(frontmatter) {
|
|
|
14525
14525
|
if (typeof raw === "number") return Math.max(0, Math.min(100, Math.round(raw)));
|
|
14526
14526
|
return STATUS_PROGRESS_DEFAULTS[frontmatter.status] ?? 0;
|
|
14527
14527
|
}
|
|
14528
|
-
function propagateProgressFromTask(store, taskId) {
|
|
14528
|
+
function propagateProgressFromTask(store, taskId, options) {
|
|
14529
14529
|
const updated = [];
|
|
14530
14530
|
const task = store.get(taskId);
|
|
14531
14531
|
if (!task) return updated;
|
|
14532
|
-
if (
|
|
14533
|
-
if (task.frontmatter.
|
|
14534
|
-
|
|
14535
|
-
|
|
14536
|
-
}
|
|
14537
|
-
} else if (!task.frontmatter.progressOverride) {
|
|
14538
|
-
const children = store.list({ type: "contribution" }).filter((d) => d.frontmatter.aboutArtifact === taskId);
|
|
14539
|
-
if (children.length > 0) {
|
|
14540
|
-
const avg = children.reduce((sum, c) => sum + getEffectiveProgress(c.frontmatter), 0) / children.length;
|
|
14541
|
-
const progress = Math.round(avg);
|
|
14542
|
-
if (task.frontmatter.progress !== progress) {
|
|
14543
|
-
store.update(taskId, { progress });
|
|
14532
|
+
if (!options?.skipSelf) {
|
|
14533
|
+
if (DONE_STATUSES.has(task.frontmatter.status)) {
|
|
14534
|
+
if (task.frontmatter.progress !== 100) {
|
|
14535
|
+
store.update(taskId, { progress: 100 });
|
|
14544
14536
|
updated.push(taskId);
|
|
14545
14537
|
}
|
|
14538
|
+
} else if (!task.frontmatter.progressOverride) {
|
|
14539
|
+
const children = store.list({ type: "contribution" }).filter((d) => d.frontmatter.aboutArtifact === taskId);
|
|
14540
|
+
if (children.length > 0) {
|
|
14541
|
+
const avg = children.reduce((sum, c) => sum + getEffectiveProgress(c.frontmatter), 0) / children.length;
|
|
14542
|
+
const progress = Math.round(avg);
|
|
14543
|
+
if (task.frontmatter.progress !== progress) {
|
|
14544
|
+
store.update(taskId, { progress });
|
|
14545
|
+
updated.push(taskId);
|
|
14546
|
+
}
|
|
14547
|
+
}
|
|
14546
14548
|
}
|
|
14547
14549
|
}
|
|
14548
14550
|
const aboutArtifact = task.frontmatter.aboutArtifact;
|
|
@@ -14554,10 +14556,11 @@ function propagateProgressFromTask(store, taskId) {
|
|
|
14554
14556
|
}
|
|
14555
14557
|
return updated;
|
|
14556
14558
|
}
|
|
14557
|
-
function propagateProgressToAction(store, actionId) {
|
|
14559
|
+
function propagateProgressToAction(store, actionId, options) {
|
|
14558
14560
|
const updated = [];
|
|
14559
14561
|
const action = store.get(actionId);
|
|
14560
14562
|
if (!action) return updated;
|
|
14563
|
+
if (options?.skipSelf) return updated;
|
|
14561
14564
|
if (DONE_STATUSES.has(action.frontmatter.status)) {
|
|
14562
14565
|
if (action.frontmatter.progress !== 100) {
|
|
14563
14566
|
store.update(actionId, { progress: 100 });
|
|
@@ -14742,10 +14745,11 @@ function createActionTools(store) {
|
|
|
14742
14745
|
tags: external_exports.array(external_exports.string()).optional().describe("Replace all tags. When provided with sprints, sprint tags are merged into this array."),
|
|
14743
14746
|
sprints: external_exports.array(external_exports.string()).optional().describe("Sprint IDs to assign (replaces existing sprint tags). E.g. ['SP-001']."),
|
|
14744
14747
|
workFocus: external_exports.string().optional().describe("Work focus name (e.g. 'Budget UX'). Replaces existing focus:<value> tag."),
|
|
14745
|
-
progress: external_exports.number().nullable().optional().describe("Explicit progress percentage (0-100). Pass null to clear the override and revert to auto-calculation from children.")
|
|
14748
|
+
progress: external_exports.number().nullable().optional().describe("Explicit progress percentage (0-100). Pass null to clear the override and revert to auto-calculation from children."),
|
|
14749
|
+
progressOverride: external_exports.boolean().optional().describe("Control auto-calculation lock. true = lock progress to explicit value, false = allow auto-calculation from children. When omitted: setting progress implies true, null progress implies false.")
|
|
14746
14750
|
},
|
|
14747
14751
|
async (args) => {
|
|
14748
|
-
const { id, content, sprints, tags, workFocus, progress, owner, assignee, ...updates } = args;
|
|
14752
|
+
const { id, content, sprints, tags, workFocus, progress, progressOverride, owner, assignee, ...updates } = args;
|
|
14749
14753
|
if (owner !== void 0) updates.owner = normalizeOwner(owner);
|
|
14750
14754
|
if (assignee !== void 0) updates.assignee = assignee;
|
|
14751
14755
|
if (tags !== void 0) {
|
|
@@ -14784,13 +14788,17 @@ function createActionTools(store) {
|
|
|
14784
14788
|
}
|
|
14785
14789
|
if (typeof progress === "number") {
|
|
14786
14790
|
updates.progress = Math.max(0, Math.min(100, Math.round(progress)));
|
|
14787
|
-
updates.progressOverride = true;
|
|
14791
|
+
updates.progressOverride = progressOverride ?? true;
|
|
14788
14792
|
} else if (progress === null) {
|
|
14789
14793
|
updates.progressOverride = false;
|
|
14794
|
+
} else if (progressOverride !== void 0) {
|
|
14795
|
+
updates.progressOverride = progressOverride;
|
|
14790
14796
|
}
|
|
14791
14797
|
const doc = store.update(id, updates, content);
|
|
14792
14798
|
if (args.status !== void 0 || typeof progress === "number") {
|
|
14793
|
-
propagateProgressToAction(store, id
|
|
14799
|
+
propagateProgressToAction(store, id, {
|
|
14800
|
+
skipSelf: typeof progress === "number"
|
|
14801
|
+
});
|
|
14794
14802
|
}
|
|
14795
14803
|
return {
|
|
14796
14804
|
content: [
|
|
@@ -23792,10 +23800,11 @@ function createTaskTools(store) {
|
|
|
23792
23800
|
priority: external_exports.enum(["critical", "high", "medium", "low"]).optional().describe("New priority"),
|
|
23793
23801
|
tags: external_exports.array(external_exports.string()).optional().describe("Replace tags (e.g. remove old tags, add new ones)"),
|
|
23794
23802
|
workFocus: external_exports.string().optional().describe("Work focus name (e.g. 'Budget UX'). Replaces existing focus:<value> tag."),
|
|
23795
|
-
progress: external_exports.number().nullable().optional().describe("Explicit progress percentage (0-100). Overrides auto-calculation from child contributions. Pass null to clear the override and revert to auto-calculation.")
|
|
23803
|
+
progress: external_exports.number().nullable().optional().describe("Explicit progress percentage (0-100). Overrides auto-calculation from child contributions. Pass null to clear the override and revert to auto-calculation."),
|
|
23804
|
+
progressOverride: external_exports.boolean().optional().describe("Control auto-calculation lock. true = lock progress to explicit value, false = allow auto-calculation from children. When omitted: setting progress implies true, null progress implies false.")
|
|
23796
23805
|
},
|
|
23797
23806
|
async (args) => {
|
|
23798
|
-
const { id, content, linkedEpic: rawLinkedEpic, tags: userTags, workFocus, progress, ...updates } = args;
|
|
23807
|
+
const { id, content, linkedEpic: rawLinkedEpic, tags: userTags, workFocus, progress, progressOverride, ...updates } = args;
|
|
23799
23808
|
const warnings = [];
|
|
23800
23809
|
if (rawLinkedEpic !== void 0) {
|
|
23801
23810
|
const linkedEpics = normalizeLinkedEpics(rawLinkedEpic);
|
|
@@ -23824,13 +23833,17 @@ function createTaskTools(store) {
|
|
|
23824
23833
|
}
|
|
23825
23834
|
if (typeof progress === "number") {
|
|
23826
23835
|
updates.progress = Math.max(0, Math.min(100, Math.round(progress)));
|
|
23827
|
-
updates.progressOverride = true;
|
|
23836
|
+
updates.progressOverride = progressOverride ?? true;
|
|
23828
23837
|
} else if (progress === null) {
|
|
23829
23838
|
updates.progressOverride = false;
|
|
23839
|
+
} else if (progressOverride !== void 0) {
|
|
23840
|
+
updates.progressOverride = progressOverride;
|
|
23830
23841
|
}
|
|
23831
23842
|
const doc = store.update(id, updates, content);
|
|
23832
23843
|
if (args.status !== void 0 || typeof progress === "number") {
|
|
23833
|
-
propagateProgressFromTask(store, id
|
|
23844
|
+
propagateProgressFromTask(store, id, {
|
|
23845
|
+
skipSelf: typeof progress === "number"
|
|
23846
|
+
});
|
|
23834
23847
|
}
|
|
23835
23848
|
const parts = [`Updated task ${doc.frontmatter.id}: ${doc.frontmatter.title}`];
|
|
23836
23849
|
if (warnings.length > 0) {
|
|
@@ -26736,8 +26749,14 @@ async function _assessArtifactRecursive(store, client, host, options, visited, d
|
|
|
26736
26749
|
const signals = buildSignals(commentSignals, linkedIssues, statusDrift, proposedMarvinStatus);
|
|
26737
26750
|
const appliedUpdates = [];
|
|
26738
26751
|
if (options.applyUpdates && proposedUpdates.length > 0) {
|
|
26752
|
+
const doneArtifacts = new Set(
|
|
26753
|
+
proposedUpdates.filter((u) => u.field === "status" && DONE_STATUSES15.has(String(u.proposedValue))).map((u) => u.artifactId)
|
|
26754
|
+
);
|
|
26739
26755
|
for (const update of proposedUpdates) {
|
|
26740
26756
|
if (update.field === "review") continue;
|
|
26757
|
+
if (update.field === "progress" && doneArtifacts.has(update.artifactId)) {
|
|
26758
|
+
if (update.proposedValue !== 100) continue;
|
|
26759
|
+
}
|
|
26741
26760
|
try {
|
|
26742
26761
|
const updatePayload = {
|
|
26743
26762
|
[update.field]: update.proposedValue,
|
|
@@ -26747,12 +26766,14 @@ async function _assessArtifactRecursive(store, client, host, options, visited, d
|
|
|
26747
26766
|
updatePayload.progressOverride = false;
|
|
26748
26767
|
}
|
|
26749
26768
|
store.update(update.artifactId, updatePayload);
|
|
26750
|
-
|
|
26751
|
-
|
|
26752
|
-
if (updatedDoc
|
|
26753
|
-
|
|
26754
|
-
|
|
26755
|
-
|
|
26769
|
+
if (update.field === "status") {
|
|
26770
|
+
const updatedDoc = store.get(update.artifactId);
|
|
26771
|
+
if (updatedDoc) {
|
|
26772
|
+
if (updatedDoc.frontmatter.type === "task") {
|
|
26773
|
+
propagateProgressFromTask(store, update.artifactId);
|
|
26774
|
+
} else if (updatedDoc.frontmatter.type === "action") {
|
|
26775
|
+
propagateProgressToAction(store, update.artifactId);
|
|
26776
|
+
}
|
|
26756
26777
|
}
|
|
26757
26778
|
}
|
|
26758
26779
|
appliedUpdates.push(update);
|
|
@@ -33554,7 +33575,7 @@ function createProgram() {
|
|
|
33554
33575
|
const program = new Command();
|
|
33555
33576
|
program.name("marvin").description(
|
|
33556
33577
|
"AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
|
|
33557
|
-
).version("0.5.
|
|
33578
|
+
).version("0.5.21");
|
|
33558
33579
|
program.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
|
|
33559
33580
|
await initCommand();
|
|
33560
33581
|
});
|