Skills are modular capability files (~/.claude/skills/[name]/SKILL.md) that load into the current conversation when triggered by keyword matching. Unlike commands (which you invoke explicitly), skills activate automatically when the conversation context matches their description.

This is the key difference from agents: skills run in your current context, sharing everything the conversation already knows. Agents run in isolation. For most work, skills are the better primitive.

Core Workflow

td
Local SQLite task tracker. Linear-style workflow states. Activates on: td, task tracking, todos. The execution primitive for semantic transpilation.
init
Session initialization and orientation. Activates on: init, start session, orient me, beginning of a work session.
linear
Linear issue tracking CLI and GraphQL API. Two workspaces (personal ABG, work ENT). Activates on: Linear, linearis, issues, project tracking.

Communication

gmcli
Gmail CLI for reading, searching, and sending email. Activates on: email, gmail, inbox, send email.
ghost-email
Send emails via Resend API. For programmatic email from agents and services.
notion
Read and write Notion pages and databases. Activates on: Notion, notion page, notion database.
work-slack
IdeaFlow Slack workspace integration. Read and send messages.
standup
Format and post standup updates. Activates on: standup, daily update, stand-up.

Infrastructure

fat-agents
Manage fat-agents platform: deployment, CLI tools, database, Docker runtime, agent provisioning. The core TinyFat infrastructure skill.
supabase
Supabase database operations, Management API, and fat-agents schema. Activates on: Supabase, database queries, agents table.
browser-tools
Chrome browser automation via CLI. Navigate, screenshot, evaluate JS. For visual debugging and web inspection.
cf-pages-tail
Tail Cloudflare Pages deployment logs. For debugging Pages functions in production.
cf-workers-tail
Tail Cloudflare Workers logs. For debugging Worker requests and crawdad-cf.

Content & Business

blog-post
Write and publish posts to alexgarcia.blog. Astro site in ~/code/tinyfat-blog.
tinyfat-support
Handle waitlist signups, customer outreach, and support for TinyFat.
timesheet
Manage IdeaFlow contractor timesheets. Hours, billing, invoice submission.

Project Context

ideaflow
IdeaFlow project routing and context. Activates on: IdeaFlow, Mew, Mewtwo, SuperConnector, ENT team.
Creating New Skills

Skills are just markdown files in ~/.claude/skills/[name]/SKILL.md with a YAML frontmatter block containing name and description. The description tells Claude when to activate it. Use /define-skill to create one interactively.