General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
5
> **Scope**: Skills directory only. Auto-loaded when working in `.claude/skills/`.
Sign in to like and favorite skills
Scope: Skills directory only. Auto-loaded when working in
. Primary Reference: Root CLAUDE.md and AGENTS.md take precedence..claude/skills/
.claude/skills/{skill-name}/ ├── SKILL.md # Required: Frontmatter + prompt ├── modules/ # Optional: PowerShell modules │ └── {Module}.psm1 ├── scripts/ # Optional: PowerShell scripts │ └── {Script}.ps1 ├── templates/ # Optional: Templates, specs │ └── {template}.md └── tests/ # Optional: Pester tests └── {Module}.Tests.ps1
--- name: skill-identifier # lowercase, alphanumeric + hyphens, max 64 chars description: What the skill does and when to use it # max 1024 chars ---
Use aliases for automatic improvements:
model: claude-haiku-4-5 # Speed, pattern matching (<1s, minimal cost) model: claude-sonnet-4-5 # Standard workflows (<5s, standard cost) model: claude-opus-4-5 # Orchestration, reasoning (<30s, premium justified)
--- on line 1 (no blank lines)^[a-z0-9-]{1,64}$-Force for reloading during development$ErrorActionPreference = 'Stop' for failurestests/ directory.serena/memories/claude-code-skill-frontmatter-standards.mdscripts/AGENTS.md