portable-skill-14

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

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 load and activate portable skills correctly.

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill with only a name and description in its frontmatter.
  • Plugin Testing: Acts as test fixture data for validating skill discovery and loading in the Compozy extension system.
  • Use Case: When developing or testing an agent plugin that bundles multiple skills, use this skill as a lightweight reference to confirm the loader parses SKILL.md frontmatter correctly.

Quick Start

Ask the agent to use portable skill 14 to confirm the skill loads and activates as expected.

Frequently Asked Questions about portable-skill-14

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 that defines a name and description in YAML frontmatter. Agent plugins load these skills so the agent can activate them on demand.

How do I create a minimal skill for testing?

Create a directory containing a SKILL.md file with YAML frontmatter that includes at least a name and description field. The Markdown body after the frontmatter holds the instructions loaded when the skill activates.

Does a skill require scripts or references directories?

No, scripts, references, and assets directories are optional. A valid skill only requires a SKILL.md file with name and description frontmatter, as demonstrated by this minimal fixture.

Why is my skill not being discovered by the plugin loader?

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