argusqa-os 9.2.3 → 9.2.5

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/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "argusqa-os",
3
- "version": "9.2.3",
3
+ "version": "9.2.5",
4
+ "mcpName": "io.github.ironclawdevs27/argus",
4
5
  "description": "Argus — AI-powered automated dev-testing platform using Chrome DevTools MCP and Claude Code",
5
6
  "keywords": [
6
7
  "mcp",
package/src/mcp-server.js CHANGED
@@ -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 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).',
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.3' },
132
+ { name: 'argus', version: '9.2.5' },
133
133
  { capabilities: { tools: {} } },
134
134
  );
135
135