One-click install
npx skills add https://github.com/compozy/agh --skill no-agh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: no-agh
Source: https://github.com/compozy/agh/tree/main/internal/skills/testdata/loader/no-agh
Command: npx skills add https://github.com/compozy/agh --skill no-agh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It provides a simple example of how to register and load a skill even when AGH-specific metadata is missing, helping validate the loader behavior and skill discovery flow.

Core Features & Use Cases

  • YAML-frontmatter-based discovery: Ensures the name and description fields are available for discovery and indexing.
  • Minimal operational body: Keeps the skill implementation straightforward for testing the runtime instruction loading.
  • Use Case: When building or testing a skill loader, you can include this skill to confirm that skills without AGH metadata still render and activate correctly.

Quick Start

Use the loader test harness to load the skill located at internal/skills/testdata/loader/no-agh and verify it is discovered and its body instructions are available at activation time.

Frequently Asked Questions about no-agh

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

FAQPage Schema
How do I load a skill with YAML frontmatter when AGH metadata is missing?

Skill discovery without AGH metadata works by parsing the root SKILL.md file for YAML frontmatter containing required name and description fields, enabling the loader to index and activate the skill body at runtime.

What is the minimum metadata required for skill loader tests to discover a skill?

The minimum metadata required for skill loader tests is a root SKILL.md file with YAML frontmatter containing the name and description fields, which allows indexing while optional AGH-specific metadata is safely skipped.

Can I use a minimal SKILL.md to validate runtime instruction loading in a test harness?

Yes, you can use a minimal SKILL.md with basic YAML frontmatter to validate runtime instruction loading in a test harness, confirming that the skill body instructions are available and activate correctly without AGH metadata.

Why does the skill loader skip optional metadata during directory indexing?

The skill loader skips optional metadata during directory indexing to ensure that skills lacking AGH-specific fields still render and activate correctly, relying only on the required name and description fields for discovery.

What's the best way to test skill discovery flow for directories missing AGH-specific metadata?

The best way to test skill discovery flow for directories missing AGH metadata is including a minimal skill with YAML frontmatter in the loader test harness, verifying it is discovered and its body instructions are available at activation time.