portable-skill-15

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

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

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill with only a name and description in its frontmatter.
  • Plugin Loading Test: Acts as test fixture data for validating skill discovery in the Compozy extension system.
  • Use Case: A developer testing an agent plugin with multiple skills can use this fixture to confirm that skill number 15 in a set of 30 is correctly parsed and registered.

Quick Start

Ask the agent to use portable skill 15 to confirm the skill loads correctly.

Frequently Asked Questions about portable-skill-15

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 containing name and description frontmatter. Agent plugins load these skills from a skills directory to extend agent capabilities.

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 a short instruction body. No scripts or additional resources are required for a basic skill.

Does this skill require any scripts or dependencies?

No, this skill contains only a SKILL.md file with frontmatter and a one-line instruction. It has no scripts, references, or assets directories and no external dependencies.

When should I use a minimal skill fixture?

Use minimal skill fixtures when testing skill discovery, parsing, or registration logic in plugin systems. They isolate the loading mechanism from complex skill behavior, making failures easier to diagnose.