portable-skill-23

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

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, load, and activate skill units defined only by a SKILL.md file.

Core Features & Use Cases

  • Portable Skill Definition: Demonstrates the minimum required structure of a skill unit with only a name and description in YAML frontmatter.
  • Plugin Loading Validation: Acts as test data for the Compozy extension system to confirm skills are discovered from plugin directories.
  • Use Case: When developing or testing an agent plugin that bundles multiple skills, use this fixture to confirm the loader correctly enumerates and registers each skill without extra resources.

Quick Start

Ask the agent to use portable skill 23 to confirm the plugin skill loader registers it correctly.

Frequently Asked Questions about portable-skill-23

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

FAQPage Schema
What is the minimum structure of a valid skill unit?

A valid skill unit requires only a SKILL.md file at its root containing YAML frontmatter with a name and description. Optional scripts, references, and assets directories can be added but are not required.

How do I test skill loading in an agent plugin?

Place minimal skill fixtures like this one in the plugin's skills directory and run the extension loader. The test confirms each skill is discovered and registered by its frontmatter name and description.

Does a skill need scripts or references to work?

No, scripts, references, and assets directories are optional. A skill with only SKILL.md is valid and loads its Markdown body as operational instructions when activated.

What is portable-skill-23 used for in Compozy?

It is test fixture data under the extension testdata directory, used to verify that the agent plugin system correctly handles plugins bundling many portable skills.