80 lines
2.8 KiB
Markdown
80 lines
2.8 KiB
Markdown
# QwenClaw Skills
|
|
|
|
Skills are specialized capabilities that enhance QwenClaw's ability to help with specific tasks. These skills are adapted from the [awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) repository.
|
|
|
|
## Available Skills
|
|
|
|
### Document Processing
|
|
- **Document Skills** - Process, analyze, and extract information from documents
|
|
- **File Organizer** - Organize and structure files systematically
|
|
|
|
### Development & Code Tools
|
|
- **Developer Growth Analysis** - Analyze and improve development practices
|
|
- **Web App Testing** - Test and validate web applications
|
|
- **MCP Builder** - Build Model Context Protocol integrations
|
|
|
|
### Content & Research
|
|
- **Content Research Writer** - Research, write, and cite high-quality content
|
|
- **Competitive Ads Extractor** - Analyze competitor advertising strategies
|
|
- **Lead Research Assistant** - Research and qualify leads
|
|
|
|
### Business & Productivity
|
|
- **Internal Comms** - Improve internal communications
|
|
- **Meeting Insights Analyzer** - Extract insights from meeting notes
|
|
- **Invoice Organizer** - Organize and categorize invoices
|
|
|
|
### Creative & Media
|
|
- **Image Enhancer** - Enhance and optimize images
|
|
- **Video Downloader** - Download and process video content
|
|
- **Theme Factory** - Generate themes and design concepts
|
|
- **Canvas Design** - Create canvas designs and layouts
|
|
|
|
### Writing & Communication
|
|
- **Tailored Resume Generator** - Create customized resumes
|
|
- **Changelog Generator** - Generate project changelogs
|
|
- **Brand Guidelines** - Maintain and apply brand guidelines
|
|
- **Twitter Algorithm Optimizer** - Optimize social media content
|
|
|
|
### Tools & Utilities
|
|
- **Domain Name Brainstormer** - Generate domain name ideas
|
|
- **Raffle Winner Picker** - Select random winners fairly
|
|
- **Slack GIF Creator** - Create GIFs for Slack
|
|
- **LangSmith Fetch** - Fetch and analyze LangSmith data
|
|
|
|
### Composio Integrations
|
|
- **Connect Apps** - Connect to 500+ apps via Composio
|
|
- **Composio Skills** - Access Composio-powered capabilities
|
|
|
|
## Using Skills
|
|
|
|
Skills are automatically available when you run QwenClaw. To use a specific skill:
|
|
|
|
```bash
|
|
# Start QwenClaw with a skill-focused prompt
|
|
bun run start --prompt "Use the content-research-writer skill to help me write an article about AI"
|
|
```
|
|
|
|
Or send to a running daemon:
|
|
|
|
```bash
|
|
bun run send "Use the file-organizer skill to organize my downloads folder"
|
|
```
|
|
|
|
## Skill Structure
|
|
|
|
Each skill consists of:
|
|
- **SKILL.md** - Skill definition and instructions
|
|
- **prompts/** - Pre-built prompts for the skill
|
|
- **examples/** - Usage examples
|
|
|
|
## Creating Custom Skills
|
|
|
|
1. Create a new directory in `skills/`
|
|
2. Add `SKILL.md` with skill definition
|
|
3. Add any supporting files (prompts, examples)
|
|
4. Update `skills-index.json`
|
|
|
|
## Skills Index
|
|
|
|
See `skills-index.json` for the complete list of available skills and their locations.
|