portable-skill-04

Provides a portable skill fixture for testing agent plugin skill loading.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal 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: Defines a self-contained skill with only a SKILL.md entry point and YAML frontmatter.
  • Plugin Testing Support: Acts as test data for validating skill discovery and loading behavior in the Compozy extension system.
  • Use Case: When developing or testing agent plugin skill loading, use this fixture to confirm that skills with minimal structure are correctly parsed and registered.

Quick Start

Ask the agent to use portable skill 04 to confirm the skill loads and responds with its instructions.

Frequently Asked Questions about portable-skill-04

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 context when the skill is activated.

How do I test skill loading in an agent plugin?

Place skill directories containing valid SKILL.md files in the plugin's skills directory, then run the plugin's skill discovery logic. Fixtures like this one verify that minimal skills are parsed and registered correctly.

What is the minimum required content for a valid skill?

A valid skill requires only a SKILL.md file with YAML frontmatter defining a name and description. Optional scripts, references, and assets directories can be added but are not mandatory.

Can a skill work without scripts or references directories?

Yes, a skill functions with only its SKILL.md file. The scripts, references, and assets directories are optional resources used on demand when the skill's instructions reference them.