Back to Tools
AI Skills Library
Collection of pre-built skills and plugins
Skills
Available Skills
Web Scraping
Extract data from websites
File Operations
Read, write, and manage files
Database Queries
Execute SQL and NoSQL queries
API Integration
Connect to external APIs
Data Analysis
Process and analyze datasets
Email Automation
Send and manage emails
What are AI Skills?
AI Skills are modular components that extend OpenClaw's capabilities:
- **Reusable**: Build once, use everywhere
- **Composable**: Chain skills together for complex workflows
- **Shareable**: Publish to the community for others to use
- **Extensible**: Create custom skills for your specific needs
Popular Skills
**Web Scraping**
Automated data extraction from websites with built-in parsing.
**File Operations**
Safe file system access with permission controls.
**Database Integration**
Support for MySQL, PostgreSQL, MongoDB, and more.
**API Connectors**
Pre-built integrations for popular APIs and services.
Creating Custom Skills
Build your own skill with a simple TypeScript interface:
```typescript
export const mySkill = {
name: 'my-skill',
description: 'Does something useful',
parameters: {
input: { type: 'string', required: true }
},
execute: async (context) => {
// Your logic here
return { result: 'done' };
}
};
```