testing

Validate skill frontmatter, manifest coverage, and resolver coverage across the repository.

Updated May 11, 2026
One-click install
npx skills add https://github.com/yunusgungor/gbrain --skill testing-yunusgungor
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: testing
Source: https://github.com/yunusgungor/gbrain/tree/main/skills/testing
Command: npx skills add https://github.com/yunusgungor/gbrain --skill testing-yunusgungor

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Skill conformance and health tracking for a large collection of skills. This framework ensures every skill declares its metadata, adheres to repository conventions, and stays aligned with the project’s test suite, enabling reliable conformance checks and regression health reporting.

Core Features & Use Cases

  • Conformance validation: ensures every skill directory contains SKILL.md with frontmatter, validates references exist, manifest + resolver coverage round-trips, and no MECE violations.
  • Daily test-suite health: runs the tiered test suite (unit / evals / integration / system health) and classifies failures into regression categories.
  • Trigger-driven modes: two modes selected by triggers (conformance validation vs. project health), enabling on-demand or scheduled checks.
  • Automation readiness: designed for CI and daily cron runs, with clear reporting and prompts to inspect test health.

Quick Start

Run the conformance checks for all skills and generate the daily test-suite health 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 manifest frontmatter conformance across a repository?

Skill conformance validation checks every skill directory for SKILL.md presence, required frontmatter fields, proper sections, and manifest coverage. It verifies references exist and detects MECE violations across the repository to enforce metadata and structural conventions.

What is resolver coverage and how does it work with frontmatter triggers?

Resolver coverage validates that frontmatter triggers correctly round-trip with resolver configurations. This mechanism ensures that triggers declared in skill metadata properly map to resolver execution paths, preventing mismatches between declared intents and actual processing logic.

How do I automate daily test-suite health checks for skill regressions?

Automate daily test-suite health checks by scheduling cron runs that execute the tiered test suite, including unit, evals, integration, and system health tests. Failures are classified into regression categories to quickly identify and address skill degradations over time.

Does the skill conformance validation work for CI and on-demand integration workflows?

Yes, conformance validation supports CI and on-demand integration workflows through trigger-driven modes. You can run conformance validation or project health checks during integration workflows to detect regressions, or trigger them on-demand via prompts like 'how are the tests'.

Why does my skill fail manifest coverage checks during repository validation?

A skill fails manifest coverage checks when its SKILL.md is missing required frontmatter fields, lacks proper sections, contains invalid references, or has MECE violations. The validation enforces that manifest and resolver coverage round-trips meet repository contract requirements.