test-skill

Verifies skill loading functionality with minimal test content.

632|86|Updated Apr 29, 2023
One-click install
npx skills add https://github.com/yaklang/yaklang --skill test-skill-yaklang
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: test-skill
Source: https://github.com/yaklang/yaklang/tree/main/common/ai/aid/aireact/reactloops/reactloopstests/testdata/skills/test-skill
Command: npx skills add https://github.com/yaklang/yaklang --skill test-skill-yaklang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers building skill-loading systems need a lightweight fixture to confirm that skills are discovered, parsed, and injected into context correctly. This Skill provides a minimal, dependency-free test case for validating that loading pipeline. ## Core Features & Use Cases - Skill Loading Verification: Confirms that a skill can be loaded via the loading_skills action and that its content appears in context. - Minimal Fixture: Contains only simple markdown content with no external dependencies, making failures easy to diagnose. - Use Case: While writing unit tests for a skill management system, load this skill and assert that its content is accessible in the agent context to validate the end-to-end loading flow. ## Quick Start Load the test-skill using the loading_skills action and verify its content appears in the current context.

Frequently Asked Questions about test-skill

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

FAQPage Schema
How do I test that a skill loads correctly?▼

Load the skill using the loading_skills action, then check that its markdown content appears in the agent context. This test skill provides simple, predictable content designed exactly for that verification step.

What is a minimal skill for unit testing skill loaders?▼

A minimal test skill contains only a SKILL.md file with name and description frontmatter plus simple markdown body content. It has no scripts, references, or external dependencies, so any loading failure points directly to the loader itself.

Does this test skill require any external dependencies?▼

No, this skill has no external dependencies. It consists solely of a SKILL.md file with frontmatter and basic markdown content, making it safe and deterministic for automated unit tests.

Why would skill content not appear in context after loading?▼

Content may fail to appear if the SKILL.md frontmatter is malformed, the name or description fields are missing, or the loading action is not invoked correctly. Verify the frontmatter YAML parses and the loading_skills action targets the right skill name.