portable-skill-22

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

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

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill with only a SKILL.md entry point and no external resources.
  • Plugin Loading Validation: Acts as test fixture data for validating skill discovery and activation in the Compozy extension system.
  • Use Case: When developing or testing an agent plugin that bundles multiple skills, use this portable skill to confirm the plugin correctly registers and exposes each skill.

Quick Start

Ask the agent to use portable skill 22 to confirm the plugin loads its bundled skills correctly.

Frequently Asked Questions about portable-skill-22

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

FAQPage Schema
How do I create a minimal portable skill for an agent plugin?

Create a directory containing a SKILL.md file with YAML frontmatter defining a name and description, followed by Markdown instructions. No scripts, references, or assets directories are required for a basic portable skill.

What is required in a SKILL.md file for skill discovery?

A SKILL.md file must contain YAML frontmatter with at least a name and description field. The Markdown body after the frontmatter provides the operational instructions loaded when the skill is activated.

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 functions as a prompt-only skill with no external resources.

Why is my skill not being discovered by the plugin?

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