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.
- package/index.js +7 -3
- 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.
|
|
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
|