portable-skill-13

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

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 discover, load, and activate skill units from a skills directory.

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill unit with only a SKILL.md entry point and no external resources.
  • Plugin Loading Validation: Acts as a fixture to confirm that skill discovery and activation work correctly in the agent plugin system.
  • Use Case: When testing an agent plugin that loads multiple skills, this unit confirms that a basic skill with only name and description frontmatter is recognized and activated.

Quick Start

Ask the agent to use portable skill 13 to confirm the skill loads and responds.

Frequently Asked Questions about portable-skill-13

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. It can be discovered and activated by agent plugins without external dependencies or additional resource directories.

How do I create a minimal skill unit for testing?

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

Does a skill unit require scripts or references directories?

No, scripts, references, and assets directories are optional. A valid skill unit only requires a SKILL.md file with name and description frontmatter, making minimal skills suitable for testing plugin loading.

Why would a skill fail to load in an agent plugin?

Loading typically fails when the SKILL.md file is missing, the YAML frontmatter lacks required name or description fields, or the frontmatter is malformed. Verify the file exists at the skill directory root with valid frontmatter.