"Skills" is the New Prompt Engineering: Why Repos Like 'anthropics/skills' Are Trending
Stop tweaking your system prompt. Start building 'Skills.' The industry is standardizing on a new pattern: defining agent capabilities as discrete, importable Markdown files.

Contents
A 'Skill' is a combination of a System Prompt, a Tool Definition (JSON Schema), and Few-Shot Examples, all packaged together. Instead of one giant prompt, your agent loads skills dynamically. The anthropics/skills repo is the blueprint for this new architecture.
# Skill: DatabaseAdmin
## Description
Can query Postgres databases safely.
## Tools
- `run_query(sql: string)`
## Rules
- NEVER run DELETE without a WHERE clause.
- Always limit results to 100 rows.Ready to integrate advanced AI into your workflow?
Discover how ReinforcedX can transform your business with cutting-edge reinforcement learning solutions.
We are seeing the emergence of a 'Skill Store.' Need your agent to know how to use Salesforce? Don't write the prompt; just import @salesforce/crm-skill. This modularity is what will allow agents to scale from toy demos to enterprise software.
Ready to integrate advanced AI into your workflow?
Discover how ReinforcedX can transform your business with cutting-edge reinforcement learning solutions.
Treat your agent's mind like a git repository. Version control your prompts. Branch your behaviors. If you are pasting text into a chat window, you are doing it wrong. We are engineers, not poets.
This is the 'Lego' moment for AI. We aren't training models anymore; we are assembling them from pre-built blocks of competence.



