secufusion-mcp 1.0.43 → 1.0.44
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/index.js +8 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1688,8 +1688,14 @@ server.tool("classify_task", "MANDATORY FIRST STEP for every task without except
|
|
|
1688
1688
|
finalDeveloperMessage += "\n────────────────────────────────────────\n";
|
|
1689
1689
|
}
|
|
1690
1690
|
else if (validationVerdict === "NEEDS_CLARIFICATION") {
|
|
1691
|
-
finalDeveloperMessage += `❓ NEEDS CLARIFICATION — ${work_item_id}\n\nI cannot implement this correctly without
|
|
1692
|
-
|
|
1691
|
+
finalDeveloperMessage += `❓ NEEDS CLARIFICATION — ${work_item_id}\n\nI cannot implement this correctly without clarification on the following:\n`;
|
|
1692
|
+
if (scopeQuestions.length > 0)
|
|
1693
|
+
finalDeveloperMessage += scopeQuestions.join("\n") + "\n";
|
|
1694
|
+
if (completenessIssues.length > 0)
|
|
1695
|
+
finalDeveloperMessage += completenessIssues.map(i => `• ${i}`).join("\n") + "\n";
|
|
1696
|
+
if (secufusionFlags.length > 0)
|
|
1697
|
+
finalDeveloperMessage += secufusionFlags.map(f => `• ${f}`).join("\n") + "\n";
|
|
1698
|
+
finalDeveloperMessage += "\nPlease clarify before I proceed.\n";
|
|
1693
1699
|
finalDeveloperMessage += "\n────────────────────────────────────────\n";
|
|
1694
1700
|
}
|
|
1695
1701
|
else if (validationVerdict === "MISLEADING") {
|