portable-skill-08

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

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

  • Skill Discovery Testing: Supplies a valid SKILL.md with name and description frontmatter so plugin loaders can enumerate it.
  • Portability Validation: Acts as test data confirming that skills packaged with an agent plugin load correctly across environments.
  • Use Case: A developer working on the Compozy extension system runs the agent-plugin test suite, which loads this fixture to confirm that skill registration and metadata parsing behave as expected.

Quick Start

Ask the agent to load and use portable skill 08 from the plugin's skills directory to verify skill discovery works.

Frequently Asked Questions about portable-skill-08

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

FAQPage Schema
How do I test skill loading in an agent plugin?

Place a directory containing a valid SKILL.md with name and description frontmatter inside the plugin's skills folder. The extension loader enumerates these directories and registers each valid skill unit during plugin initialization.

What makes a valid skill unit for plugin loading?

A valid skill unit is a directory containing a SKILL.md file at its root with YAML frontmatter defining at least a name and description. Optional scripts, references, and assets directories may accompany it.

Does this skill require any external dependencies?

No. This fixture contains only a SKILL.md file with frontmatter and a one-line instruction body. It has no scripts directory and declares no package dependencies.

Why would a skill fixture fail to load in tests?

Loading fails when SKILL.md is missing, the frontmatter lacks a name or description, or the YAML is malformed. Verify the file sits at the skill directory root and the frontmatter block is properly delimited.