Skills

Every article distilled into an agent-loadable skill file. Drop one into your agent's skills directory and it picks up the techniques when the task calls for them.

brotzky/performance-skills

Where Claude Code, Cursor, and Codex pull from on GitHub, auto-synced on every skill regenerate.

Claude Code plugin recommended

# Installs every skill at once via the performance-skills plugin marketplace.
/plugin marketplace add brotzky/performance-skills
/plugin install performance@skills

Claude Code

# Bulk install — mirrors every skill in /llms.txt into ~/.claude/skills/.
curl -s https://performance.dev/llms.txt \
  | grep -oE 'https://[^)]+\.md' \
  | while read url; do
      name=$(basename "$url" .md)
      mkdir -p ~/.claude/skills/"$name"
      curl -fsSL "$url" > ~/.claude/skills/"$name"/SKILL.md
    done
# Single skill — auto-loaded from ~/.claude/skills/<name>/SKILL.md on every session.
mkdir -p ~/.claude/skills/is-linear-so-fast-a-
curl -fsSL https://performance.dev/how-is-linear-so-fast-a-technical-breakdown.md \
  > ~/.claude/skills/is-linear-so-fast-a-/SKILL.md

Codex

# Codex reads AGENTS.md on every session — append to stack skills.
curl -fsSL https://performance.dev/how-is-linear-so-fast-a-technical-breakdown.md >> AGENTS.md

Cursor

# Cursor loads .cursor/rules/*.mdc as project-local rules.
mkdir -p .cursor/rules
curl -fsSL https://performance.dev/how-is-linear-so-fast-a-technical-breakdown.md \
  > .cursor/rules/is-linear-so-fast-a-.mdc

Available skills

Dennis Brotzky