portable-skill-20

Provides a minimal portable skill definition for agent plugin testing.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal, self-contained test fixture used to verify that agent plugins can discover and load portable skill units from a skills directory.

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill unit with only a SKILL.md entry point and no external resources.
  • Plugin Loading Validation: Acts as test data for the extension system to confirm skills are parsed and registered correctly.
  • Use Case: When developing or testing the Compozy agent plugin system, use this fixture to confirm that skill discovery scans directories and reads frontmatter metadata as expected.

Quick Start

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

Frequently Asked Questions about portable-skill-20

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 containing YAML frontmatter with a name and description. The agent plugin system discovers and loads it without external dependencies or additional resources.

How do I create a minimal skill for testing skill discovery?

Create a directory containing a SKILL.md file with YAML frontmatter defining a name and description, followed by Markdown instructions. This fixture shows the minimum structure required for the extension system to register a skill.

Does a skill unit require scripts or references directories?

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

Why is my skill not being discovered by the plugin system?

Skill discovery fails when SKILL.md is missing, the frontmatter lacks a name or description, or the file is not at the skill directory root. Verify the YAML frontmatter is well-formed and case-insensitively named SKILL.md.