sample-skill

Validate minimal Skill Units with SKILL.md frontmatter and Markdown body.

53|6|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/dallay/agentsync --skill sample-skill-dallay
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sample-skill
Source: https://github.com/dallay/agentsync/tree/main/tests/fixtures/sample-skill
Command: npx skills add https://github.com/dallay/agentsync --skill sample-skill-dallay

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a minimal, self-contained Skill Unit used for integration testing, enabling discovery, parsing, and ingestion pipelines to be validated.

Core Features & Use Cases

  • Self-contained test fixture for catalog discovery and frontmatter validation.
  • Lightweight mock skill for CI tests and integration scenarios.
  • Serves as a predictable baseline for skill ingestion workflows.

Quick Start

Load this skill into your catalog and run a basic test to verify loading.

Frequently Asked Questions about sample-skill

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

FAQPage Schema
What is a test fixture for integration testing and catalog ingestion?

A test fixture for integration testing provides a minimal, self-contained Skill Unit that validates discovery, parsing, and ingestion pipelines. It serves as a predictable baseline to verify correct catalog loading without requiring external dependencies.

How do I validate SKILL.md frontmatter in a CI pipeline?

To validate SKILL.md frontmatter in a CI pipeline, load the test fixture into your catalog and run a basic test. The fixture requires frontmatter with id, name, version, and description fields, plus a non-empty Markdown body to verify correct parsing.

Does this test fixture require any external dependencies for catalog discovery?

No external dependencies are required for catalog discovery with this test fixture. It is completely self-contained, making it ideal for lightweight CI tests and integration scenarios where you need to verify skill ingestion workflows without complex setup.

Can I use this mock skill for frontmatter validation in automated tests?

Yes, you can use this mock skill for frontmatter validation in automated tests. It functions as a lightweight test fixture that confirms your discovery and parsing logic correctly reads required fields like id, name, version, and description from SKILL.md files.

What is the best way to test skill discovery and loading workflows?

The best way to test skill discovery and loading workflows is using a minimal, self-contained test fixture. This approach provides a predictable baseline that validates frontmatter parsing and catalog ingestion without introducing external variables or dependency conflicts.

Why does my catalog ingestion pipeline fail when parsing empty Markdown bodies?

Catalog ingestion pipelines fail on empty Markdown bodies because the test fixture requires a non-empty body to validate correct parsing. A minimal Skill Unit must contain both valid frontmatter and substantive Markdown content to pass discovery and loading checks.