argusqa-os 9.6.1 → 9.6.2
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 +3 -2
- package/src/cli/pr-validate.js +7 -9
- package/src/mcp-server.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "argusqa-os",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.2",
|
|
4
4
|
"mcpName": "io.github.ironclawdevs27/argus",
|
|
5
5
|
"description": "Argus — AI-powered automated dev-testing platform using Chrome DevTools MCP and Claude Code",
|
|
6
6
|
"keywords": [
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"bin": {
|
|
34
34
|
"argus": "src/cli/init.js",
|
|
35
35
|
"argus-mcp": "src/mcp-server.js",
|
|
36
|
-
"argusqa-os": "src/mcp-server.js"
|
|
36
|
+
"argusqa-os": "src/mcp-server.js",
|
|
37
|
+
"argus-pr-validate": "src/cli/pr-validate.js"
|
|
37
38
|
},
|
|
38
39
|
"scripts": {
|
|
39
40
|
"setup": "node -e \"import('fs').then(fs => fs.default.mkdirSync('./reports', { recursive: true }))\"",
|
package/src/cli/pr-validate.js
CHANGED
|
@@ -154,16 +154,14 @@ async function loadRoutes() {
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
// 3.
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
} catch { /* targets.js may not export routes in all environments */ }
|
|
164
|
-
|
|
165
|
-
// 4. Final fallback — audit root path only
|
|
157
|
+
// 3. Final fallback — audit root path only
|
|
158
|
+
// NOTE: We deliberately do NOT fall back to the package's targets.js here.
|
|
159
|
+
// targets.js contains the developer's own demo routes with app-specific
|
|
160
|
+
// waitFor selectors (e.g. [data-testid="dashboard"]) that do not exist on
|
|
161
|
+
// user apps — falling back to them causes false-positive load_failure
|
|
162
|
+
// findings and incorrectly blocks merges.
|
|
166
163
|
console.log('[argus] No routes configured — falling back to root path audit');
|
|
164
|
+
console.log('[argus] Tip: add argus.routes.json to your repo root to audit specific routes.');
|
|
167
165
|
return [{ path: '/', name: 'home' }];
|
|
168
166
|
}
|
|
169
167
|
|
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.2)
|
|
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.2' },
|
|
451
451
|
{ capabilities: { tools: {} } },
|
|
452
452
|
);
|
|
453
453
|
|