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.
Files changed (2) hide show
  1. package/index.js +8 -2
  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 answers to these questions:\n`;
1692
- finalDeveloperMessage += scopeQuestions.join("\n") + "\n\nPlease answer before I proceed.\n";
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") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "secufusion-mcp",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "type": "module",
5
5
  "description": "SecuFusion MCP server - developer workflow tooling with guardrails",
6
6
  "main": "index.js",