Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 894 Bytes

File metadata and controls

20 lines (15 loc) · 894 Bytes

VOWEL CORE SKILL

Skill for generating YAML-based comprehensive test specifications for functions and class methods.

Usage for Agents

When using this skill to generate or run evaluations:

  1. Read the Context: Always refer to resources/EVAL_SPEC_CONTEXT.md for strict rules on YAML formatting and quality requirements.
  2. Follow the Spec: Use SKILL.md as the primary reference for the YAML schema and available evaluators.
  3. Quality First: Ensure high coverage, accurate expected values, and meaningful case IDs as outlined in the context guide.

Installation

mkdir -p ~/.claude/skills/vowel-core && \
curl -L https://github.com/fswair/vowel-core/archive/refs/heads/main.zip -o /tmp/vowel-core.zip && \
unzip -o /tmp/vowel-core.zip -d /tmp && \
cp -r /tmp/vowel-core-main/* ~/.claude/skills/vowel-core/ && \
rm -rf /tmp/vowel-core.zip /tmp/vowel-core-main