valid-skill

Validate Skill unit frontmatter and body loading in equip.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/bradleydwyer/equip --skill valid-skill-bradleydwyer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: valid-skill
Source: https://github.com/bradleydwyer/equip/tree/main/tests/fixtures/valid-skill
Command: npx skills add https://github.com/bradleydwyer/equip --skill valid-skill-bradleydwyer

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

A minimal, self-contained Skill unit used to validate the end-to-end loading, discovery, and activation flow of equip during integration tests.

Core Features & Use Cases

  • Lightweight, self-contained Skill unit for testing discovery and activation.
  • Verifies YAML frontmatter parsing and body loading without performing external actions.
  • Used in CI to ensure Skill units remain compliant and importable across environments.

Quick Start

Run the unit test harness to verify this Skill loads and activates within the integration suite.

Frequently Asked Questions about valid-skill

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

FAQPage Schema
How do I validate YAML frontmatter parsing for custom configuration units?

Validating YAML frontmatter parsing requires checking that required fields like name and description are present before the body loads as context. This Skill verifies frontmatter compliance automatically during integration tests without performing external actions.

What is a lightweight way to test Skill discovery and activation in CI pipelines?

Testing Skill discovery and activation in CI pipelines ensures configuration units are correctly formatted, discoverable, and importable across environments. This Skill acts as a minimal, self-contained unit to validate the end-to-end loading flow.

Can I use a minimal test unit to ensure my configurations are importable across environments?

Using a minimal test unit ensures configurations remain importable across environments by verifying self-contained loading and activation flows. This Skill checks that the body loads correctly as context without executing external actions.

Does this integration test Skill perform any external actions during validation?

This integration test Skill does not perform external actions during validation. It solely verifies YAML frontmatter parsing and body loading to ensure the unit is compliant and discoverable within the test harness.

What are the limitations of using a self-contained Skill for integration testing?

A self-contained Skill for integration testing is limited to validating internal formatting, discovery, and activation flows. It does not execute external actions or test complex dependencies, making it unsuitable for end-to-end functional testing.