testing

Validate skill directories and run tiered test suites with failure classification.

5|1|Updated Apr 15, 2026
One-click install
npx skills add https://github.com/GYF0311/lorekit --skill testing-gyf0311
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: testing
Source: https://github.com/GYF0311/lorekit/tree/main/brain/skills/testing
Command: npx skills add https://github.com/GYF0311/lorekit --skill testing-gyf0311

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents broken or incomplete skill integrations from silently landing, and it continuously verifies overall project health by running a tiered test suite and classifying failures.

Core Features & Use Cases

  • Skill conformance validation: Ensures every skill directory has required SKILL.md frontmatter, manifest coverage, resolver coverage, and trigger round-trip checks.
  • Daily test-suite health & regression intelligence: Runs unit/evals/system health checks, analyzes recent git changes, and classifies failures as regression, stale, flake, new, or infra.
  • Structured reporting: Produces a clear validation report and a daily results summary that supports fast triage.

Quick Start

Run the skill with the trigger phrase "validate skills" to perform conformance checks and generate a coverage-and-round-trip report.

Frequently Asked Questions about testing

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

FAQPage Schema
How do I validate skill directories and ensure YAML frontmatter conformance?

To validate skill directories, you parse YAML frontmatter and verify manifest coverage, resolver round-trips, and trigger checks. This surfaces broken configurations early, ensuring complete skill onboarding and CI conformance.

What is the best way to catch test regressions daily in a CI workflow?

The best way to catch regressions daily is running a tiered test suite that analyzes git changes and classifies failures as regression, stale, flake, new, or infra. This produces a daily results summary for fast triage.

How does failure classification work during test-suite health checks?

Failure classification works by analyzing recent git changes alongside test execution to categorize failures as regression, stale, flake, new, or infra. This regression-aware reporting supports immediate triage and continuous project health monitoring.

Can I use manifest resolver round-trip verification for skill onboarding?

Yes, you can use manifest resolver round-trip verification during skill onboarding. It ensures every skill directory has required coverage and trigger round-trip checks, preventing incomplete skill integrations from silently landing.

What types of test execution phases are required for regression detection?

Regression detection requires tiered test execution phases including unit, evals, integration, and system health checks. Running these phases continuously verifies overall project health and surfaces failures early.

Why does CI conformance gating fail when validating skills?

CI conformance gating fails when validating skills if directories lack required YAML frontmatter, manifest coverage, resolver coverage, or trigger round-trip checks. The validation report identifies these broken configurations for immediate correction.