secufusion-mcp 1.0.44 → 1.0.45

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 +4 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1364,6 +1364,10 @@ server.tool("classify_task", "MANDATORY FIRST STEP for every task without except
1364
1364
  if (!descLower.includes("done") && !descLower.includes("looks like") && !descLower.includes("complete"))
1365
1365
  completenessIssues.push("Missing what done looks like");
1366
1366
  }
1367
+ const hasExplicitAC = descLower.includes("acceptance criteria") || descLower.includes("ac:") || descLower.includes("acs:");
1368
+ if (hasExplicitAC) {
1369
+ completenessIssues.length = 0; // AC overrides strict bug templates
1370
+ }
1367
1371
  let completenessScore = "COMPLETE";
1368
1372
  if (completenessIssues.length > 2)
1369
1373
  completenessScore = "VAGUE";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "secufusion-mcp",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "type": "module",
5
5
  "description": "SecuFusion MCP server - developer workflow tooling with guardrails",
6
6
  "main": "index.js",