portable-skill-12

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

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 parse SKILL.md frontmatter and instructions.

Core Features & Use Cases

  • Minimal Skill Definition: Contains only the required name and description frontmatter plus a single instruction line.
  • Portability Testing: Lives in a testdata directory used to validate that skills can be loaded from plugin packages.
  • Use Case: A developer testing an agent plugin system can use this fixture to confirm that the runtime discovers and activates skills bundled inside extensions.

Quick Start

Ask the agent to use portable skill 12 to confirm the skill loading pipeline works.

Frequently Asked Questions about portable-skill-12

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

FAQPage Schema
What is a portable skill in an agent plugin system?

A portable skill is a self-contained directory with a SKILL.md file containing YAML frontmatter with a name and description, plus Markdown instructions. It can be bundled inside plugins and loaded by the agent runtime.

How do I test that skill loading works in a plugin?

Include a minimal fixture skill like this one in the plugin's testdata directory, then run the plugin's loading logic and assert that the skill's name and description are discovered correctly.

What is the minimum content required for a valid SKILL.md?

A valid SKILL.md requires YAML frontmatter with at least a name and description field, followed by a Markdown body containing the operational instructions for the agent.

Can a skill work without scripts or references directories?

Yes, scripts, references, and assets directories are optional. A skill with only a SKILL.md file is valid and relies entirely on its Markdown instructions for behavior.