secufusion-mcp 1.0.55 → 1.0.57
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/README.md +6 -0
- package/index.js +7 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -697,6 +697,12 @@ As of version **1.0.50**, the MCP server strictly enforces **Rule 0** and adds i
|
|
|
697
697
|
- **Frontend Service Resolution**: `get_service` now intelligently resolves frontend and extension repositories (like `sfn-web-ui`) even when they aren't explicitly keyed as backend microservices.
|
|
698
698
|
- **Explicit AC Recognition**: `classify_task` now overrides `VAGUE` completeness warnings if it detects explicit Acceptance Criteria in the task description.
|
|
699
699
|
|
|
700
|
+
### Strict Comment Guardrails & Slugification Fixes (v1.0.55+)
|
|
701
|
+
|
|
702
|
+
As of version **1.0.55**, the MCP server introduces two new quality-of-life and enforcement updates:
|
|
703
|
+
- **No Ticket IDs in Comments**: A strict rule has been added to `AGENTS.md` and the Tier 2 AI Reviewer now explicitly flags any inline ticket IDs (e.g., `// WI-1097`) inside code comments as a CRITICAL violation. Comments must explain the durable WHY, not point to decaying tracking tickets.
|
|
704
|
+
- **Clean Task Slugs**: `manage_task initialize` now automatically strips leading ticket prefixes (like `BUG-1173: `) from the title before generating the folder slug, preventing duplicated IDs in the folder path (e.g., no more `1173-bug-1173-`).
|
|
705
|
+
|
|
700
706
|
---
|
|
701
707
|
|
|
702
708
|
## Talking to the AI — What You'll Ever Say
|
package/index.js
CHANGED
|
@@ -4580,9 +4580,13 @@ server.tool("generate_ado_comments", "Generates and formats the final Azure DevO
|
|
|
4580
4580
|
if (!fs.existsSync(classifDir)) {
|
|
4581
4581
|
fs.mkdirSync(classifDir, { recursive: true });
|
|
4582
4582
|
}
|
|
4583
|
-
const commentsFile = path.join(classifDir, `${work_item_id}-comments.
|
|
4584
|
-
|
|
4585
|
-
|
|
4583
|
+
const commentsFile = path.join(classifDir, `${work_item_id}-comments.md`);
|
|
4584
|
+
const mdContent = `# ADO Board Comments for ${work_item_id}\n\n` +
|
|
4585
|
+
`*Generated at: ${new Date().toISOString()}*\n\n` +
|
|
4586
|
+
`## 1. Layman Summary\n${layman_summary}\n\n` +
|
|
4587
|
+
`## 2. Technical Deep-Dive\n${technical_deep_dive}\n`;
|
|
4588
|
+
writeFile(commentsFile, mdContent);
|
|
4589
|
+
out += `✅ Comments persisted to \`.secufusion/classifications/${work_item_id}-comments.md\`\n`;
|
|
4586
4590
|
}
|
|
4587
4591
|
catch (e) {
|
|
4588
4592
|
// ignore
|