no-compozy

Provides a minimal test fixture for validating skill loader behavior without compozy metadata.

2.7k|171|Updated Mar 28, 2026
One-click install
npx skills add https://github.com/compozy/compozy --skill no-compozy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: no-compozy
Source: https://github.com/compozy/compozy/tree/main/internal/skills/testdata/loader/no-compozy
Command: npx skills add https://github.com/compozy/compozy --skill no-compozy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill serves as a test fixture for the Compozy skill loader, verifying that skills without compozy-specific metadata are parsed and loaded correctly.

Core Features & Use Cases

  • Loader Testing: Supplies a minimal SKILL.md with only name, description, and generic docs metadata to exercise the loader's fallback paths.
  • Schema Validation: Confirms that the loader accepts skills lacking compozy-specific frontmatter fields.
  • Use Case: A developer working on the Compozy skill loader runs the test suite, which loads this fixture to assert that skills without compozy metadata still parse successfully.

Quick Start

Run the skill loader test suite in the compozy repository to verify this fixture loads without compozy metadata.

Frequently Asked Questions about no-compozy

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

FAQPage Schema
What is the no-compozy skill used for?

The no-compozy skill is a test fixture in the Compozy repository used to verify that the skill loader correctly parses SKILL.md files that lack compozy-specific metadata. It contains only a name, description, and generic docs category.

How do I test the Compozy skill loader?

Run the Go test suite under internal/skills in the Compozy repository. The loader tests load fixtures like no-compozy from the testdata directory to assert parsing behavior for various frontmatter configurations.

Does a skill require compozy metadata to load?

No, this fixture demonstrates that a skill only needs name and description in its SKILL.md frontmatter to be valid. Compozy-specific metadata is optional, and the loader handles its absence gracefully.

Where are skill loader test fixtures located?

Skill loader test fixtures are located in internal/skills/testdata/loader within the Compozy repository. Each fixture directory contains a SKILL.md file representing a specific loading scenario.