skill

Create, structure, and evaluate Agent Skills per the agentskills.io specification.

Updated Sep 9, 2026
One-click install
npx skills add https://github.com/DeepSpaceCartel/skills --skill skill-deepspacecartel
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill
Source: https://github.com/DeepSpaceCartel/skills/tree/main/skills/skill
Command: npx skills add https://github.com/DeepSpaceCartel/skills --skill skill-deepspacecartel

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Writing an Agent Skill that activates reliably and produces good output is hard: vague descriptions under-trigger, bloated SKILL.md files waste context, and untested skills fail on real prompts. This Skill codifies the open Agent Skills specification and authoring best practices so new skills are valid, discoverable, and effective. ## Core Features & Use Cases - Specification Reference: Full rules for SKILL.md frontmatter fields (name, description, license, compatibility, metadata, allowed-tools), naming constraints, and the scripts/references/assets directory conventions. - Description Optimization: Guidance and an eval loop for writing descriptions that trigger on the right prompts, including train/validation query sets and trigger-rate testing. - Quality Evaluation: A structured eval workflow with test cases, assertions, grading, baselines, and iteration for improving a skill from real execution traces. - Use Case: You are authoring a new skill for CSV analysis. Use this Skill to validate the frontmatter, write a description that triggers reliably, decide what belongs in references/ versus SKILL.md, and set up evals to measure output quality. ## Quick Start Use the skill skill to review my SKILL.md in ./my-skill and tell me whether the frontmatter, description, and structure follow the Agent Skills specification.

Frequently Asked Questions about skill

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

FAQPage Schema
How do I write a SKILL.md file for an Agent Skill?▼

Create a directory containing SKILL.md with YAML frontmatter defining name and description, followed by Markdown instructions. The name must be lowercase with hyphens and match the directory name; the description must state what the skill does and when to use it.

How do I make an Agent Skill description trigger reliably?▼

Write imperative, intent-focused descriptions listing concrete use contexts, then test with about 20 labeled prompts split into train and validation sets. Measure trigger rate across multiple runs and iterate, broadening scope for misses and adding specificity for false triggers.

What frontmatter fields does SKILL.md support?▼

SKILL.md requires name and description, and optionally supports license, compatibility, metadata, and allowed-tools. Name is limited to 64 lowercase alphanumeric characters with hyphens; description is limited to 1024 characters.

When should content go in references/ instead of SKILL.md?▼

Move detail into references/ files once SKILL.md approaches roughly 500 lines or 5000 tokens. The body should link each reference file and state exactly when the agent should load it, keeping activation context small.

Why is my Agent Skill not activating on relevant prompts?▼

Activation depends entirely on the description field, so vague descriptions like "Helps with PDFs" under-trigger. Rewrite it to state what the skill does and when to use it, including contexts where the user does not name the domain directly.

How do I evaluate whether an Agent Skill produces good output?▼

Store test cases with prompts and expected outputs in evals/evals.json, run each with and without the skill as a baseline, then grade against specific assertions. Aggregate pass rates, tokens, and timing per iteration and refine the skill from failures and execution traces.