Skip to content
Skillv1.0.0

agent-qa-result-triage

Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps.

by sickn33(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from sickn33/agentic-awesome-skills (plugins/agentic-awesome-skills-claude/skills/agent-qa-result-triage/SKILL.md). Install upstream with npx skills add sickn33/agentic-awesome-skills --skill agent-qa-result-triage. Copyright stays with the author (FSL-1.1-ALv2).

Agent QA Result Triage

Overview

Classify a failed Agent QA run from its recorded evidence instead of guessing. Inspect the run, steps, artifacts, and logs; choose one fixed category; and return confidence, likely ownership, and the next evidence-backed action.

When to Use

  • Investigating a failed or interrupted Agent QA run.
  • Inspecting run artifacts, step results, or execution logs.
  • Comparing recent related runs for recurring failure patterns.
  • Deciding whether a failure belongs to a test, product, hook, browser/mobile runtime, or infrastructure owner.

Workflow

  1. Start with agent_qa_get_run for run status, suite child context, steps, and attempts.
  2. Fetch evidence before deciding:
    • agent_qa_get_run_artifact
    • agent_qa_get_run_steps
    • agent_qa_get_run_logs
    • agent_qa_get_run_execution_logs
  3. Call agent_qa_classify_failure and use its category as the default classification unless stronger evidence contradicts it.
  4. Compare recent related runs when they are available in the classifier output.
  5. Return a concise triage result: category, confidence, evidence, likely fix area, and next action.
  6. For code changes, switch to agent-qa-debug-fix after triage is complete.

Categories

Use exactly one category from references/triage-categories.md:

  • timeout
  • appium_startup
  • browser_disconnect
  • element_not_found
  • assertion_failure
  • hook_failure
  • infrastructure
  • unknown_failure

Evidence Rules

  • Quote or summarize concrete artifact, log, or step evidence.
  • Mention missing artifact sections when they limit confidence.
  • Do not invent screenshots, videos, logs, or memory context that MCP did not return.
  • If MCP is unavailable, use dashboard REST APIs or Agent QA CLI output as a fallback and state which evidence was unavailable.
  • Redact credentials, session tokens, personal data, and unrelated application content from the report.

Example

{
  "category": "element_not_found",
  "confidence": "high",
  "evidence": ["Step 4 could not resolve the described checkout button"],
  "likely_fix_area": "test definition or changed product UI",
  "next_action": "Inspect the captured UI context, then compare the current checkout screen"
}

Limitations

  • Classification is only as reliable as the retained run artifacts and logs.
  • A failure category identifies the most likely failure surface; it does not prove root cause.
  • Missing screenshots, DOM/accessibility context, device logs, or prior runs must lower confidence.
  • This skill does not modify tests or application code; use agent-qa-debug-fix for an authorized repair.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/sickn33-agentic-awesome-skills-agent-qa-result-triage/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

sickn33-agentic-awesome-skills-agent-qa-result-triage.ocm.jsonjson
{
  "ocm": "1",
  "id": "sickn33-agentic-awesome-skills-agent-qa-result-triage",
  "kind": "skill",
  "name": "agent-qa-result-triage",
  "description": "Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps.",
  "publisher": "sickn33",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "testing",
      "qa",
      "triage",
      "mcp",
      "debugging",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Triage failed Agent QA runs with MCP evidence, artifacts, logs, fixed failure categories, confidence, and actionable next steps."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/sickn33/agentic-awesome-skills",
      "path": "plugins/agentic-awesome-skills-claude/skills/agent-qa-result-triage/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/sickn33/agentic-awesome-skills/blob/HEAD/plugins/agentic-awesome-skills-claude/skills/agent-qa-result-triage/SKILL.md",
      "key": "sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/agent-qa-result-triage/SKILL.md"
    },
    "license": "FSL-1.1-ALv2"
  },
  "instructions": "# Agent QA Result Triage\n\n## Overview\n\nClassify a failed Agent QA run from its recorded evidence instead of guessing. Inspect the run, steps, artifacts, and logs; choose one fixed category; and return confidence, likely ownership, and the next evidence-backed action.\n\n## When to Use\n\n- Investigating a failed or interrupted Agent QA run.\n- Inspecting run artifacts, step results, or execution logs.\n- Comparing recent related runs for recurring failure patterns.\n- Deciding whether a failure belongs to a test, product, hook, browser/mobile runtime, or infrastructure owner.\n\n## Workflow\n\n1. Start w",
  "cost": {
    "context_tokens": 662
  }
}

Fetch it by URL: GET /api/v1/registry/sickn33-agentic-awesome-skills-agent-qa-result-triage/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.