/v3-graveyard-verify

Compare source files against GRAVEYARD.md error patterns and apply code patches.

Updated May 9, 2026
One-click install
npx skills add https://github.com/Ruclo/thesis-artifact --skill v3-graveyard-verify
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: /v3-graveyard-verify
Source: https://github.com/Ruclo/thesis-artifact/tree/main/v3/skills/v3-graveyard-verify
Command: npx skills add https://github.com/Ruclo/thesis-artifact --skill v3-graveyard-verify

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents the recurrence of previously identified bugs by automatically cross-referencing newly generated test code against a documented history of mistakes.

Core Features & Use Cases

  • Pattern Matching: Scans generated code for specific anti-patterns documented in the GRAVEYARD.md file.
  • Automated Remediation: Applies verified fixes to code violations in-place, ensuring adherence to established best practices.
  • Use Case: When generating E2E tests, use this Skill to ensure that common pitfalls—such as incorrect selector usage or improper wait conditions—are caught and corrected before the test suite is executed.

Quick Start

Run the v3-graveyard-verify skill by providing the file path of the generated test code you wish to validate.

Frequently Asked Questions about /v3-graveyard-verify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code review for generated test code to prevent recurring bugs?

Automated code review for generated test code prevents recurring bugs by cross-referencing source files against a repository of known error patterns. It scans for documented anti-patterns and applies verified fixes in-place before runtime execution.

What is a GRAVEYARD.md file used for in test automation?

A GRAVEYARD.md file is used in test automation as a documented history of known mistakes and anti-patterns. Verification tools parse this file to cross-reference newly generated test code and identify documented errors.

How do I fix incorrect selector usage and improper wait conditions in E2E tests?

To fix incorrect selector usage and improper wait conditions in E2E tests, use automated pattern matching against a documented history of mistakes. This process catches common pitfalls and applies remediation patches in-place.

Does automated post-generation code review require filesystem access?

Yes, automated post-generation code review requires read and write access to the local filesystem. This access is necessary to parse the error pattern repository and apply targeted code patches directly to the source files.

When should I use automated anti-pattern remediation for test code?

Use automated anti-pattern remediation for test code when generating E2E tests to ensure common pitfalls are caught and corrected before the test suite is executed. This prevents the recurrence of previously identified bugs.