portable-skill-26

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

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

Core Features & Use Cases

  • Portable Skill Definition: Ships a single SKILL.md file with valid frontmatter containing a name and description.
  • Plugin Test Fixture: Acts as test data for validating skill discovery and loading behavior in the Compozy extension system.
  • Use Case: A developer testing the agent plugin loader can point it at the skills directory and confirm that portable-skill-26 is discovered and parsed correctly.

Quick Start

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

Frequently Asked Questions about portable-skill-26

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

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

A portable skill is a self-contained directory with a SKILL.md file at its root containing YAML frontmatter with a name and description. The Markdown body provides instructions loaded into the agent's context when the skill is activated.

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

Create a directory containing a SKILL.md file with YAML frontmatter defining at least a name and description, followed by Markdown instructions. This minimal structure is sufficient for a skill loader to discover and parse the unit.

Does a skill require scripts or references directories to be valid?

No, scripts, references, and assets directories are optional. A skill is valid as long as it contains a SKILL.md file with the required name and description frontmatter fields.

Why would a skill fail to load in an agent plugin?

Loading fails when the SKILL.md file is missing, the YAML frontmatter is malformed, or required fields like name and description are absent. Checking these basics resolves most discovery issues.