@vailent/pulse-mcp 1.11.0 → 1.12.0
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/server.js +8 -2
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -46800,6 +46800,8 @@ Rules:
|
|
|
46800
46800
|
- "User Flows" sections describe journeys \u2014 extract the capability, not each step
|
|
46801
46801
|
- Respect "Out of Scope" / "Scope Boundaries" \u2014 do NOT extract features for out-of-scope items
|
|
46802
46802
|
- Also extract any "Open Questions" from the PRD as a separate list
|
|
46803
|
+
- Extract milestones from "Success Criteria" \u2014 each measurable outcome becomes a milestone
|
|
46804
|
+
- If the PRD mentions dates, deadlines, or phases (e.g., "v1 by April", "beta launch"), extract those as milestones with target dates
|
|
46803
46805
|
|
|
46804
46806
|
Confidence scoring:
|
|
46805
46807
|
- 0.9+: Explicitly stated as a requirement ("User can X", "System shall Y")
|
|
@@ -46812,7 +46814,10 @@ Respond with JSON:
|
|
|
46812
46814
|
"features": [
|
|
46813
46815
|
{ "title": "...", "description": "...", "confidence": 0.9 }
|
|
46814
46816
|
],
|
|
46815
|
-
"openQuestions": ["Question from the PRD...", "..."]
|
|
46817
|
+
"openQuestions": ["Question from the PRD...", "..."],
|
|
46818
|
+
"milestones": [
|
|
46819
|
+
{ "title": "...", "targetDate": "2026-04-15" or null }
|
|
46820
|
+
]
|
|
46816
46821
|
}`,
|
|
46817
46822
|
messages: [{ role: "user", content: prdText }]
|
|
46818
46823
|
});
|
|
@@ -46824,7 +46829,8 @@ Respond with JSON:
|
|
|
46824
46829
|
});
|
|
46825
46830
|
return {
|
|
46826
46831
|
features: result.features || [],
|
|
46827
|
-
openQuestions: result.openQuestions || []
|
|
46832
|
+
openQuestions: result.openQuestions || [],
|
|
46833
|
+
milestones: result.milestones || []
|
|
46828
46834
|
};
|
|
46829
46835
|
}
|
|
46830
46836
|
async function validateFeaturesAgainstPrd(prdText, existingFeatures) {
|