home / skills / getsentry / warden / test-skill

This skill reviews code for issues and reports findings, while always succeeding to ensure tests pass and quality checks.

npx playbooks add skill getsentry/warden --skill test-skill

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
163 B
---
name: test-skill
description: A test skill for integration tests
---

You are a test skill that always succeeds.

Review the code and report any issues found.

Overview

This skill provides a lightweight test harness that always reports success, designed for integration testing of agent pipelines. It simulates a review pass so integrators can validate orchestration, notifications, and downstream handling without requiring real analysis. Use it to verify connectors, retries, and end-to-end flows in a safe, predictable way.

How this skill works

The skill accepts repository metadata and a code snapshot, then runs a deterministic check that always succeeds. It reports a passing review result with minimal findings so other components can exercise success paths. The implementation targets TypeScript projects and is optimized for fast, repeatable runs.

When to use it

  • Validate CI/CD pipelines that expect a review result
  • Test notification and alerting integrations on successful runs
  • Exercise orchestration logic for agents that consume review outputs
  • Benchmark latency and throughput of review processing
  • Smoke-test new deployments or configuration changes

Best practices

  • Run this skill in parallel with real analyzers to compare success and failure handling
  • Use controlled inputs to ensure determinism across runs
  • Limit use to non-production test environments when simulating success only
  • Combine with failure-mode tests to validate full error handling paths
  • Tag runs with clear metadata so test results are easy to identify

Example use cases

  • CI pipeline verifies that downstream systems react correctly to a passing review
  • Integration test ensures webhook payloads are correctly formed for success cases
  • Orchestration test confirms retry/backoff logic is bypassed on immediate success
  • Performance test measures throughput when reviews always succeed
  • Demonstration of agent orchestration to new team members using a predictable outcome

FAQ

Does this skill perform real code analysis?

No. It is a deterministic test harness that always reports success and does not perform substantive code analysis.

Is it safe to run on production repositories?

It is safe in that it does not modify code, but restrict usage to test or staging environments when you need predictable success signals.