portable-skill-30

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a minimal, self-contained test fixture used to verify that agent plugin systems can discover, load, and activate portable skill units defined by a SKILL.md file.

Core Features & Use Cases

  • Portable Skill Definition: Demonstrates the minimal required structure of a skill unit with only a name and description in YAML frontmatter.
  • Plugin Discovery Testing: Acts as fixture data for validating skill enumeration and loading logic in the Compozy extension system.
  • Use Case: When developing or testing an agent plugin loader, use this fixture to confirm that skills packaged in a standard directory layout are correctly discovered and registered.

Quick Start

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

Frequently Asked Questions about portable-skill-30

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

FAQPage Schema
What is the minimum structure of a portable skill unit?

A portable skill unit requires only a SKILL.md file at its root containing YAML frontmatter with a name and description. Optional scripts, references, and assets directories can be added but are not required.

How do I test skill discovery in an agent plugin system?

Place minimal skill fixtures like this one in the plugin's skills directory and run the loader to confirm each SKILL.md is parsed and registered. Fixtures with only frontmatter isolate discovery logic from execution logic.

Does a skill unit need scripts or assets to be valid?

No, a skill unit is valid with only a SKILL.md file containing name and description frontmatter. Scripts, references, and assets directories are optional resources used on demand.

When should I use a minimal skill fixture instead of a full skill?

Use minimal fixtures when testing discovery, parsing, or registration logic where execution behavior is irrelevant. Full skills with scripts are better for integration tests covering actual task execution.