portable-skill-06

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

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

Core Features & Use Cases

  • Portable Skill Definition: Defines a valid skill unit with only a SKILL.md file containing name and description frontmatter.
  • Plugin Loading Validation: Acts as test data for the Compozy extension system to confirm skills are parsed and registered correctly.
  • Use Case: When developing or testing an agent plugin that bundles multiple skills, use this fixture to confirm the loader discovers each skill directory without errors.

Quick Start

Ask the agent to load and use portable skill 06 to verify the plugin skill discovery works.

Frequently Asked Questions about portable-skill-06

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

FAQPage Schema
What makes a valid portable skill for an agent plugin?

A valid portable skill requires a SKILL.md file at the skill directory root containing YAML frontmatter with at least a name and description. Optional scripts, references, and assets directories can extend it 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. Each directory containing a valid SKILL.md should be discovered and registered as a loadable skill.

Does a skill need scripts or references to work?

No, scripts, references, and assets directories are optional. A skill with only a SKILL.md file is fully valid and can provide instructions through its Markdown body alone.

Why is my skill not discovered by the plugin loader?

Discovery fails when the SKILL.md file is missing, misnamed, or lacks required frontmatter fields like name or description. Verify the file sits at the skill directory root with valid YAML frontmatter.