sample-skill

Compare source and installed skill directories for exact file and content replication.

6|2|Updated Apr 10, 2026
One-click install
npx skills add https://github.com/maltehedderich/master-class-agents --skill sample-skill-maltehedderich
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sample-skill
Source: https://github.com/maltehedderich/master-class-agents/tree/main/cli/internal/source/testdata/fixture-repo/skills/sample-skill
Command: npx skills add https://github.com/maltehedderich/master-class-agents --skill sample-skill-maltehedderich

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This sample skill provides a deterministic verification workflow that confirms the installed directory of a skill matches its source verbatim, enabling reliable packaging and testing.

Core Features & Use Cases

  • Exact directory replication validation: compares source and installed directories to ensure no changes during packaging.
  • Deterministic test artifact: guarantees the installed skill retains file names, structure, and contents for auditability.
  • Use Case: run the install verification as part of CI to ensure that skill distribution remains unchanged between releases.

Quick Start

Run the test harness to install the sample-skill and confirm the directory contents match the source verbatim.

Frequently Asked Questions about sample-skill

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

FAQPage Schema
How do I verify directory structure and file contents during skill installation?

Verifying directory structure during installation requires comparing the source and installed directories to ensure exact file name, content, and layout replication. This deterministic workflow confirms no changes occurred during packaging.

What is verbatim directory copy validation for skill packaging?

Verbatim directory copy validation is a testing technique that compares source and installed skill directories to guarantee file names, structure, and contents remain unchanged. It produces a deterministic test artifact for auditability.

How do I run install verification for skills in a CI pipeline?

Run install verification in CI by executing a test harness that installs the skill and confirms the installed directory contents match the source verbatim. This ensures skill distribution remains unchanged between releases.

Does skill installation verification require external dependencies?

Skill installation verification requires no external dependencies beyond standard test tooling. It supports validation of directory structure and file contents directly within your existing development environment.

What's the best way to ensure deterministic skill distribution between releases?

The best way to ensure deterministic skill distribution is running a verbatim directory copy validation as part of CI. This approach guarantees the installed skill retains exact file names, structure, and contents for reliable packaging.

When should I use verbatim directory replication validation?

Use verbatim directory replication validation when developers rely on deterministic directory layouts and need auditability. It is essential for packaging scenarios where the installed skill must match its source exactly without unexpected modifications.