Getting Started
Core Concepts
Understand skills, agents, pipelines, and the registry.
Skills
A skill is a skill.json file that encodes domain expertise. It contains instructions, context, examples, and metadata that an AI agent uses to perform specialized tasks.
Agents
An agent is an AI system (like Claude or GPT) that uses skills to enhance its capabilities. Agents can load multiple skills simultaneously.
Pipelines
A pipeline chains multiple skills together, passing context between them. This enables complex multi-step workflows.
typescript
export default {
pipeline: [
"find-skills",
"react-best-practices",
"web-design-guidelines"
]
}Registry
The FindSkills registry is a public repository of community-contributed skills. Anyone can publish skills to the registry after passing the review process.