argusqa-os 9.2.2 → 9.2.4

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/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Argus — AI-Powered Dev Testing Tool
2
2
 
3
+ [![Argus MCP server](https://glama.ai/mcp/servers/ironclawdevs27/Argus/badges/card.svg)](https://glama.ai/mcp/servers/ironclawdevs27/Argus)
4
+
3
5
  > *Argus Panoptes — the all-seeing giant of Greek mythology with a hundred eyes who never slept.*
4
6
 
5
7
  Automated browser testing pipeline that catches bugs, compares environments, and sends rich reports to Slack (or generates a self-contained HTML dashboard when Slack is not configured) — powered by Chrome DevTools MCP and Claude Code.
package/glama.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://glama.ai/mcp/schemas/server.json",
3
+ "maintainers": ["ironclawdevs27"]
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argusqa-os",
3
- "version": "9.2.2",
3
+ "version": "9.2.4",
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.0)
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 (cheap) QA pass on a URL. Returns findings as JSON.',
39
+ description: 'Run a fast QA audit on a URL. Detects JavaScript errors, unhandled promise rejections, network failures (4xx/5xx), API frequency loops, CSS cascade issues, SEO problems, security vulnerabilities, content quality issues, and accessibility violations. 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.2' },
132
+ { name: 'argus', version: '9.2.4' },
133
133
  { capabilities: { tools: {} } },
134
134
  );
135
135