argusqa-os 9.4.4 → 9.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argusqa-os",
3
- "version": "9.4.4",
3
+ "version": "9.4.5",
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": [
@@ -167,7 +167,7 @@ export const auth = null;
167
167
  * Each flow is a named sequence of steps executed end-to-end by flow-runner.js.
168
168
  * Supported actions:
169
169
  * navigate — { action: 'navigate', path: '/route' } or url: 'https://...' for absolute
170
- * fill — { action: 'fill', selector: 'input#email', value: 'x@y.com' }
170
+ * fill — { action: 'fill', selector: 'input#email', value: 'user@example.com' }
171
171
  * Add typing: true to dispatch real keyboard events (needed for input-validation handlers)
172
172
  * click — { action: 'click', selector: 'button[type=submit]' }
173
173
  * press_key — { action: 'press_key', key: 'Tab' | 'Enter' | 'Escape' | 'ArrowDown' | ... }
package/src/mcp-server.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Argus MCP Server (v9.4.4)
3
+ * Argus MCP Server (v9.4.5)
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
@@ -283,7 +283,7 @@ async function handleLastReport() {
283
283
  // ── Server bootstrap ──────────────────────────────────────────────────────────
284
284
 
285
285
  const server = new Server(
286
- { name: 'argus', version: '9.4.4' },
286
+ { name: 'argus', version: '9.4.5' },
287
287
  { capabilities: { tools: {} } },
288
288
  );
289
289
 
@@ -37,7 +37,7 @@ const RAW_STAGING_URL = process.env.TARGET_STAGING_URL ?? '';
37
37
  // Validate as a parseable URL with a non-localhost hostname — checking only against
38
38
  // one hardcoded placeholder string misses 'TODO', 'your-url-here', http://localhost, etc.
39
39
  const STAGING_URL_SET = (() => {
40
- if (!RAW_STAGING_URL || RAW_STAGING_URL === 'https://staging.yourapp.com') return false;
40
+ if (!RAW_STAGING_URL || RAW_STAGING_URL === 'https://staging.example.com') return false;
41
41
  try {
42
42
  const u = new URL(RAW_STAGING_URL);
43
43
  return u.hostname !== 'localhost' && u.hostname !== '127.0.0.1' && u.hostname !== '';
@@ -93,7 +93,7 @@ export async function handleSlashCommand(req, res) {
93
93
  if (!targetUrl) {
94
94
  return res.json({
95
95
  response_type: 'ephemeral',
96
- text: '⚠️ Usage: `/argus-retest <url>`\nExample: `/argus-retest https://staging.yourapp.com/checkout`',
96
+ text: '⚠️ Usage: `/argus-retest <url>`\nExample: `/argus-retest https://staging.example.com/checkout`',
97
97
  });
98
98
  }
99
99
 
@@ -30,7 +30,7 @@ async function maybeStartSdk() {
30
30
  const { resourceFromAttributes } = await import('@opentelemetry/resources');
31
31
  const resource = resourceFromAttributes({
32
32
  'service.name': 'argus',
33
- 'service.version': '9.3.0',
33
+ 'service.version': '9.4.4',
34
34
  });
35
35
 
36
36
  if (consoleMode && !hasOtlpEndpoint) {