refine-backlog-mcp 1.0.3 → 1.0.4
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/package.json +1 -1
- package/server.ts +5 -1
package/package.json
CHANGED
package/server.ts
CHANGED
|
@@ -81,7 +81,11 @@ const REFINE_TOOL: Tool = {
|
|
|
81
81
|
"Refine messy backlog items into structured, actionable work items. " +
|
|
82
82
|
"Returns each item with a clean title, problem statement, acceptance criteria, " +
|
|
83
83
|
"T-shirt size estimate (XS/S/M/L/XL), priority with rationale, tags, and optional assumptions. " +
|
|
84
|
-
"Free tier: up to 5 items per request. Pro: 25. Team: 50
|
|
84
|
+
"Free tier: up to 5 items per request. Pro: 25. Team: 50.\n\n" +
|
|
85
|
+
"BEFORE calling this tool, ask the user TWO quick questions if they haven't already specified:\n" +
|
|
86
|
+
"1. Would you like titles formatted as user stories? (\"As a [user], I want [goal], so that [benefit]\")\n" +
|
|
87
|
+
"2. Would you like acceptance criteria in Gherkin format? (Given/When/Then)\n" +
|
|
88
|
+
"Set useUserStories and useGherkin accordingly based on their answers. Both default to false.",
|
|
85
89
|
inputSchema: {
|
|
86
90
|
type: "object",
|
|
87
91
|
required: ["items"],
|