Explore

Find agent skills by outcome

86,626 skills indexed with the new KISS metadata standard.

Showing 24 of 86,626Categories: Research & Learning, Communication, Coding & Debugging, Data, General
General
PromptBeginner5 minmarkdown

return False

fInvalid YAML in frontmatter: {e}

0
General
PromptBeginner5 minmarkdown

return False

Frontmatter must be a YAML dictionary

0
General
PromptBeginner5 minmarkdown

if not isinstance(frontmatter

dict):

0
General
PromptBeginner5 minmarkdown

return False

SKILL.md not found

0
General
PromptBeginner5 minmarkdown

return False

No YAML frontmatter found

0
General
PromptBeginner5 minmarkdown

For skills where output quality depends on seeing examples

provide input/output pairs:

0
General
PromptBeginner5 minmarkdown

Follow this style: type(scope): brief description

then detailed explanation.

0
General
PromptBeginner5 minmarkdown

Here is a sensible default format

but use your best judgment:

0
General
PromptBeginner5 minmarkdown

Use these patterns when skills need to produce consistent

high-quality output.

0
General
PromptBeginner5 minmarkdown

When creating a new skill from scratch

always run the `init_skill.py` script:

0
General
PromptBeginner5 minmarkdown

- **Use cases**: Templates

images

0
General
PromptBeginner5 minmarkdown

Files not intended to be loaded into context

but rather used within the output Claude produces.

0
General
PromptBeginner5 minmarkdown

- **Avoid duplication**: Information should live in either SKILL.md or references files

not both.

0
General
PromptBeginner5 minmarkdown

- **Benefits**: Keeps SKILL.md lean

loaded only when Claude determines it's needed

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Use cases**: Database schemas

API documentation

0
General
PromptBeginner5 minmarkdown

- **Best practice**: If files are large (>10k words)

include grep search patterns in SKILL.md

0
General
PromptBeginner5 minmarkdown

- **Examples**: `references/finance.md` for financial schemas

`references/mnda.md` for company NDA template

0
General
PromptBeginner5 minmarkdown

- **Frontmatter** (YAML): Contains `name` and `description` fields. These are the only fields that Claude reads to determine when the skill gets used

thus it is very important to be clear and comprehensive in describing what the skill is

0
General
PromptBeginner5 minmarkdown

- **Benefits**: Token efficient

deterministic

0
General
PromptBeginner5 minmarkdown

Think of Claude as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom)

while an open field allows many routes (high freedom).

0
General
PromptBeginner5 minmarkdown

└── assets/ - Files used in output (templates

icons

0
General
PromptBeginner5 minmarkdown

**Low freedom (specific scripts

few parameters)**: Use when operations are fragile and error-prone

0
General
PromptBeginner5 minmarkdown

**High freedom (text-based instructions)**: Use when multiple approaches are valid

decisions depend on context

0
Coding & Debugging
PromptBeginner5 minmarkdown

**Medium freedom (pseudocode or scripts with parameters)**: Use when a preferred pattern exists

some variation is acceptable

0