portable-skill-19

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal, self-contained skill definition used to verify that agent plugins can load and activate portable skills within the Compozy extension system.

Core Features & Use Cases

  • Portable Skill Definition: Declares a name and description through YAML frontmatter in a single SKILL.md file.
  • Plugin Test Fixture: Acts as one of the test skills under the agent-plugin-30-skills testdata directory for validating skill discovery and loading.
  • Use Case: When developing or testing the Compozy extension loader, use this skill to confirm that portable skills are discovered and activated correctly.

Quick Start

Ask the agent to use portable skill 19 to confirm the skill loads and responds.

Frequently Asked Questions about portable-skill-19

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

FAQPage Schema
What is a portable skill in Compozy?

A portable skill is a self-contained directory with a SKILL.md file that declares a name and description in YAML frontmatter. The Compozy extension system discovers and loads these skills for agent plugins.

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

Create a directory containing a SKILL.md file with YAML frontmatter defining at least a name and description, followed by Markdown instructions. Place it in the plugin's skills directory so the loader can discover it.

What fields are required in SKILL.md frontmatter?

The SKILL.md frontmatter must define at least a name and a description. These fields are used for skill discovery, while the Markdown body provides the instructions loaded when the skill activates.

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

Discovery fails when the SKILL.md file is missing, the frontmatter lacks a name or description, or the skill directory is not placed where the plugin expects it. Verify the file name, frontmatter syntax, and directory location.