Explore

Find agent skills by outcome

93,531 skills indexed with the new KISS metadata standard.

Showing 24 of 93,531Categories: Data, Creative, General, Coding & Debugging, Communication
General
PromptBeginner5 minmarkdown

if not isinstance(name

str):

0
General
PromptBeginner5 minmarkdown

return False

Missing 'description' in frontmatter

0
General
PromptBeginner5 minmarkdown

return False

Missing 'name' in frontmatter

0
General
PromptBeginner5 minmarkdown

fAllowed properties are: {'

'.join(sorted(ALLOWED_PROPERTIES))}

0
General
PromptBeginner5 minmarkdown

fUnexpected key(s) in SKILL.md frontmatter: {'

'.join(sorted(unexpected_keys))}.

0
General
PromptBeginner5 minmarkdown

ALLOWED_PROPERTIES = {'name'

'description'

0
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