portable-skill-09

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-09
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: portable-skill-09
Source: https://github.com/compozy/compozy/tree/main/internal/extension/testdata/agent-plugin-30-skills/skills/portable-skill-09
Command: npx skills add https://github.com/compozy/compozy --skill portable-skill-09

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

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

Core Features & Use Cases

  • Portable Skill Definition: Declares a name and description through YAML frontmatter in a single SKILL.md file.
  • Plugin Loading Test: Acts as a fixture for validating skill discovery in the Compozy agent plugin system.
  • Use Case: When developing or testing an agent plugin that loads multiple skills, use this portable skill as a lightweight reference to confirm the loader reads frontmatter metadata correctly.

Quick Start

Ask the agent to use portable skill 09 to confirm the skill loads and its instructions are applied.

Frequently Asked Questions about portable-skill-09

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

FAQPage Schema
How do I create a minimal portable skill for an agent plugin?

Create a directory containing a SKILL.md file with YAML frontmatter that defines a name and description, followed by Markdown instructions. The skill loader discovers it automatically from the plugin's skills directory.

What is a SKILL.md file used for in agent plugins?

A SKILL.md file is the entry point of a skill unit. Its YAML frontmatter provides the name and description used for discovery, and the Markdown body supplies the instructions loaded into the agent's context on activation.

Does a portable 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 frontmatter, which is how this portable skill is structured.

Why is my skill not discovered by the plugin loader?

Discovery fails when the SKILL.md file is missing, misnamed, or lacks valid YAML frontmatter with name and description fields. Verify the file sits at the skill directory root and the frontmatter parses correctly.