portable-skill-03

Provides a minimal portable skill fixture for testing skill loading.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal, self-contained test fixture used to verify that skill discovery and loading mechanisms correctly handle portable skill units.

Core Features & Use Cases

  • Skill Loading Validation: Confirms that a SKILL.md file with valid frontmatter is discovered and parsed correctly.
  • Portability Testing: Acts as a fixture in the agent plugin test suite to verify skills can be moved and loaded across environments.
  • Use Case: A developer working on the Compozy extension system uses this fixture in automated tests to ensure the skill registry correctly enumerates and activates portable skills.

Quick Start

Ask the agent to load and use portable skill 03 to verify the skill loading pipeline works.

Frequently Asked Questions about portable-skill-03

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 containing YAML frontmatter with a name and description. It can be moved between environments and loaded by the agent plugin system without additional configuration.

How do I create a minimal skill for testing?

Create a directory containing a SKILL.md file with YAML frontmatter defining a name and description, followed by markdown instructions. This fixture demonstrates the minimum required structure for a valid skill unit.

Does this skill require any dependencies or scripts?

No, this skill contains only a SKILL.md file with no scripts, references, or assets directories. It functions purely as a prompt-instruction fixture for testing skill loading behavior.

When should I use a test fixture skill instead of a real skill?

Use fixture skills when writing automated tests for skill discovery, parsing, or registry logic. They provide predictable, dependency-free inputs that isolate the loading mechanism from actual skill behavior.