portable-skill-05

Provides a minimal portable skill fixture for testing skill loading.

2.7k|171|Updated Mar 28, 2026
One-click install
npx skills add https://github.com/compozy/compozy --skill portable-skill-05
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: portable-skill-05
Source: https://github.com/compozy/compozy/tree/main/internal/extension/testdata/agent-plugin-30-skills/skills/portable-skill-05
Command: npx skills add https://github.com/compozy/compozy --skill portable-skill-05

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal, self-contained test fixture used to verify that skill discovery and loading mechanisms correctly handle portable skill units.

Core Features & Use Cases

  • Minimal Skill Definition: Contains only the mandatory SKILL.md frontmatter with a name and description.
  • Portability Testing: Acts as a sample unit for validating that skills can be packaged, moved, and loaded across environments.
  • Use Case: A developer testing an agent plugin system can use this fixture to confirm that the loader discovers and registers skills from a skills directory.

Quick Start

Ask the agent to use portable skill 05 to confirm the skill loading pipeline works.

Frequently Asked Questions about portable-skill-05

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

FAQPage Schema
What is a portable skill in an agent plugin system?

A portable skill is a self-contained directory with a SKILL.md file at its root containing YAML frontmatter with a name and description. It can be moved between environments and loaded by any compatible skill discovery mechanism.

How do I test skill loading with a minimal fixture?

Create a directory containing only a SKILL.md file with valid name and description frontmatter, place it in the skills directory, and verify the loader registers it. This fixture serves exactly that purpose.

Does a skill require scripts or references directories?

No, scripts, references, and assets directories are optional. A valid skill only requires a SKILL.md file with name and description in its YAML frontmatter, as demonstrated by this fixture.

Why is my skill not being discovered by the loader?

Discovery fails when SKILL.md is missing, misnamed, or lacks required frontmatter fields like name or description. Check that the file sits at the skill directory root and the YAML is valid.