secufusion-mcp 1.0.56 → 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.
Files changed (2) hide show
  1. package/index.js +7 -3
  2. package/package.json +1 -1
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.json`);
4584
- writeFile(commentsFile, JSON.stringify({ layman_summary, technical_deep_dive, generated_at: new Date().toISOString() }, null, 2));
4585
- out += `✅ Comments persisted to \`.secufusion/classifications/${work_item_id}-comments.json\`\n`;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "secufusion-mcp",
3
- "version": "1.0.56",
3
+ "version": "1.0.57",
4
4
  "type": "module",
5
5
  "description": "SecuFusion MCP server - developer workflow tooling with guardrails",
6
6
  "main": "index.js",