portable-skill-29

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

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 distribute skill units correctly.

Core Features & Use Cases

  • Portable Skill Definition: Defines a standalone skill with only a name and description in its frontmatter.
  • Plugin Testing Fixture: Acts as test data for validating skill loading in the Compozy extension system.
  • Use Case: When developing or testing an agent plugin that bundles multiple skills, use this unit to confirm the plugin discovers and registers each skill correctly.

Quick Start

Ask the agent to use portable skill 29 to confirm the plugin loaded its bundled skills.

Frequently Asked Questions about portable-skill-29

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 containing name and description frontmatter. Agent plugins bundle these skills so they can be discovered and loaded by the host system.

How do I test that an agent plugin loads its skills?โ–ผ

Include minimal skill fixtures like this one in the plugin's skills directory, then run the plugin's loading logic and verify each skill's name and description are registered correctly.

Does a skill need scripts or references to be valid?โ–ผ

No. A valid skill only requires a SKILL.md file with name and description in its YAML frontmatter. Scripts, references, and assets directories are optional components used on demand.

When should I use a minimal skill fixture?โ–ผ

Use minimal fixtures in automated tests where you need to verify skill discovery and parsing without the overhead of real instructions, scripts, or external dependencies.