argusqa-os 9.6.5 → 9.6.6
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/package.json +1 -1
- package/src/cli/pr-validate.js +4 -1
- package/src/mcp-server.js +2 -2
package/package.json
CHANGED
package/src/cli/pr-validate.js
CHANGED
|
@@ -329,7 +329,10 @@ async function main() {
|
|
|
329
329
|
console.log(JSON.stringify(result, null, 2));
|
|
330
330
|
|
|
331
331
|
if (blocked) {
|
|
332
|
-
|
|
332
|
+
const blockReason = blockOn === 'warning'
|
|
333
|
+
? `${summary.critical} critical + ${summary.warning} warning finding(s) found`
|
|
334
|
+
: `${summary.critical} critical finding(s) found`;
|
|
335
|
+
console.error(`::error::Argus PR Validator: ${blockReason}. Merge blocked (block-on=${blockOn}).`);
|
|
333
336
|
process.exit(1);
|
|
334
337
|
}
|
|
335
338
|
|
package/src/mcp-server.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* Argus MCP Server (v9.6.
|
|
3
|
+
* Argus MCP Server (v9.6.6)
|
|
4
4
|
*
|
|
5
5
|
* Exposes Argus as an MCP server so Claude (or any MCP client) can call
|
|
6
6
|
* argus_audit, argus_audit_full, argus_compare, argus_last_report, and
|
|
@@ -447,7 +447,7 @@ async function handleLastReport() {
|
|
|
447
447
|
// ── Server bootstrap ──────────────────────────────────────────────────────────
|
|
448
448
|
|
|
449
449
|
const server = new Server(
|
|
450
|
-
{ name: 'argus', version: '9.6.
|
|
450
|
+
{ name: 'argus', version: '9.6.6' },
|
|
451
451
|
{ capabilities: { tools: {} } },
|
|
452
452
|
);
|
|
453
453
|
|