argusqa-os 9.2.2 → 9.2.3
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/glama.json +4 -0
- package/package.json +3 -2
- package/src/mcp-server.js +3 -3
package/glama.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "argusqa-os",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.3",
|
|
4
4
|
"description": "Argus — AI-powered automated dev-testing platform using Chrome DevTools MCP and Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"src/",
|
|
25
|
-
".mcp.json"
|
|
25
|
+
".mcp.json",
|
|
26
|
+
"glama.json"
|
|
26
27
|
],
|
|
27
28
|
"type": "module",
|
|
28
29
|
"engines": {
|
package/src/mcp-server.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* Argus MCP Server (v9.2.
|
|
3
|
+
* Argus MCP Server (v9.2.3)
|
|
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, and argus_last_report
|
|
@@ -36,7 +36,7 @@ const REPORTS_DIR = path.resolve(process.cwd(), 'reports');
|
|
|
36
36
|
const TOOLS = [
|
|
37
37
|
{
|
|
38
38
|
name: 'argus_audit',
|
|
39
|
-
description: 'Run a quick
|
|
39
|
+
description: 'Run a quick QA pass on a URL using core analyzers — JavaScript runtime errors and uncaught exceptions, network failures (4xx/5xx), API frequency loops, CSS cascade issues, SEO checks (meta, OG tags, canonical), security vulnerabilities (localStorage tokens, eval, missing CSP), content quality (null text, broken images), and accessibility. Returns findings as JSON grouped by severity (critical/warning/info).',
|
|
40
40
|
inputSchema: {
|
|
41
41
|
type: 'object',
|
|
42
42
|
properties: {
|
|
@@ -129,7 +129,7 @@ async function handleLastReport() {
|
|
|
129
129
|
// ── Server bootstrap ──────────────────────────────────────────────────────────
|
|
130
130
|
|
|
131
131
|
const server = new Server(
|
|
132
|
-
{ name: 'argus', version: '9.2.
|
|
132
|
+
{ name: 'argus', version: '9.2.3' },
|
|
133
133
|
{ capabilities: { tools: {} } },
|
|
134
134
|
);
|
|
135
135
|
|