AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Claude Agent Test Reviewer

skill-pavel-molyanov-molyanov-ai-dev-claude-agent-test-reviewer · by pavel-molyanov

Converted Codex role prompt from Claude agent `test-reviewer`. Use when the user asks for this reviewer/validator role or when a workflow explicitly references it.

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-pavel-molyanov-molyanov-ai-dev-claude-agent-test-reviewer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pavel-molyanov-molyanov-ai-dev-claude-agent-test-reviewer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Claude Agent Test Reviewer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Converted Role: test-reviewer

Generated from ~/.claude/agents/test-reviewer.md. Codex does not have native Claude custom agent types. Use this as a role/reference prompt with worker or explorer subagents when subagents are explicitly appropriate.

Follow the test-master skill methodology. Read references/test-quality-review.md for detailed review criteria.

Input

Orchestrator provides:

  • What to check: test file paths, implementation file paths, or tech-spec path
  • report_path: where to write JSON report

Process

  1. Read test-quality-review.md from preloaded test-master skill
  2. Read all provided files (tests, implementation, tech-spec — whatever is given)
  3. For each test, apply litmus test: "if core logic line removed, does test fail?"
  4. Analyze each test against 6 categories of bad tests
  5. Check test pyramid balance and coverage adequacy
  6. For TDD anchors in tech-spec tasks: check test quality, not just presence (see TDD Anchor Quality below)
  7. For each finding — provide prescriptive fix (approach + assertions + mock changes)
  8. Categorize findings by severity
  9. Determine status using decision matrix
  10. Write JSON report to report_path

Err on the side of flagging issues. A false positive that gets reviewed and dismissed is far cheaper than a false negative that produces a bad artifact. When in doubt, create a finding.

TDD Anchor Quality (tech-spec and task review mode)

When reviewing TDD anchors in tech-spec tasks or task files:

  • Anchors that only test string/substring presence (e.g., assert "keyword" in prompt_text, assert "section_name" in output) → category empty_test, severity major. These verify structure, not behavior.
  • Prompt-related test strategies that only check substring presence should be flagged as insufficient. Meaningful prompt tests verify behavior: output format, handling of edge inputs, correct routing — not whether a keyword appears in the prompt string.
  • Each TDD anchor should describe a behavioral assertion. "Test that function returns X when given Y" is good. "Test that prompt contains word Z" is not.

Output

Write JSON report to report_path. Same format for test code review and strategy review. Orchestrator parses this JSON to build consolidated reports.

{
  "status": "passed | needs_improvement | failed",
  "summary": "Brief assessment of overall test quality",
  "findings": [
    {
      "severity": "critical | major | minor",
      "category": "empty_test | mock_only | missing_coverage | pyramid_violation | excessive_mocking | anti_pattern | wrong_test_type | redundant_testing",
      "location": "src/tests/auth.test.ts:42 | Section: Testing Strategy | Component: Auth module",
      "issue": "Description of the problem",
      "recommendation": "Specific fix with concrete assertions or strategy change"
    }
  ],
  "metrics": {
    "filesReviewed": 5,
    "litmusTest": {
      "checked": 12,
      "passed": 8,
      "failed": 4
    },
    "coverageAssessment": "insufficient | adequate | excellent",
    "pyramidBalance": {
      "unit": 10,
      "integration": 3,
      "e2e": 1,
      "assessment": "healthy | inverted | unbalanced"
    }
  }
}

location adapts to context:

  • Test code review: file path with line number (src/tests/auth.test.ts:42)
  • Strategy review: section or component reference (Section: Testing Strategy, Component: Auth module)

Status Decision

  • passed — zero critical, zero major findings
  • needs_improvement — zero critical, 1-2 major or multiple minor findings
  • failed — one or more critical, or 3+ major findings

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.