revylai/revyl-cli · Archived

revyl-mcp-analyze

Analyze failed Revyl MCP test executions and classify them as real bugs, flaky tests, infra issues, or test-design improvements.

First seen May 15, 2026

Installation

$ npx skills add revylai/revyl-cli --skill revyl-mcp-analyze

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from revylai/revyl-cli · top by installs.

npx skills add revylai/revyl-cli

Browse all from revylai/revyl-cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 510
License MIT
Default branch main
Open issues 1
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,120 B
  • docs SUMMARY.md 153 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Revyl MCP Analyze Skill

Evidence Flow

  1. Start from task ID after run_test.
  2. Pull status payload:

- getteststatus(task_id="...")

  1. Inspect failed step expectations and observed reasoning.
  2. Classify:

- REAL BUG - FLAKY TEST - INFRA ISSUE - TEST IMPROVEMENT

  1. Recommend exact next tool/action.

Classification Rules

  • REAL BUG: actions complete but app behavior contradicts expected outcome.
  • FLAKY TEST: app behavior is acceptable but validation is too brittle.
  • INFRA ISSUE: no meaningful app steps executed or setup/device/build failure.
  • TEST IMPROVEMENT: test structure is weak or allows ambiguity.

Required Output

Task: <task-id>
Classification: <REAL BUG | FLAKY TEST | INFRA ISSUE | TEST IMPROVEMENT>
Confidence: <HIGH | MEDIUM | LOW>
Evidence:
- Expected: <summary>
- Observed: <summary>
- Why: <short rationale>
Next action:
- <specific update_test / rerun / bug filing action>