Набор из 5 production-ready skills для Agent Zero v0.9.8+, конвертированных из инструментов для экономии ~2150 токенов на запрос.
| Skill | Description | API Required | Status |
|---|---|---|---|
| exa-synergy | 🔍 Neural web research with Exa AI | EXA_API_KEY | ✅ Ready |
| replicate-studio | 🎨 AI generation (images, audio, upscaling) | REPLICATE_API_TOKEN | ✅ Ready |
| chart-architect | 📊 Data visualization (bar, line, pie, scatter) | None | ✅ Ready |
| doc-forge | 📄 Document generation (PDF, DOCX, PPTX) | None | ✅ Ready |
| ops-commander | 🖥️ DevOps SSH management & monitoring | None | ✅ Ready |
# Clone to Agent Zero skills directory
cd /a0/usr/skills
git clone https://github.com/YOUR_USERNAME/agent-zero-skills.git .
# Or copy files manually to /a0/usr/skills/# Automatic installation for all skills
bash setup.sh
# Or install per skill:
pip install -r chart-architect/requirements.txt
pip install -r doc-forge/requirements.txt
pip install -r exa-synergy/requirements.txt
pip install -r replicate-studio/requirements.txt
pip install -r ops-commander/requirements.txt# Copy example environment file
cp .env.example /a0/.env
# Edit /a0/.env and add your keys:
# EXA_API_KEY=your_exa_key_here
# REPLICATE_API_TOKEN=your_replicate_token_hereGet API keys:
- Exa AI: https://exa.ai
- Replicate: https://replicate.com
# Test chart-architect
python chart-architect/scripts/chart_architect.py --help
# Test exa-synergy (requires API key)
python exa-synergy/scripts/exa_synergy.py --goal "test" --mode fast/a0/usr/skills/
├── chart-architect/
│ ├── scripts/chart_architect.py
│ ├── requirements.txt
│ └── SKILL.md
├── doc-forge/
│ ├── scripts/doc_forge.py
│ ├── requirements.txt
│ └── SKILL.md
├── exa-synergy/
│ ├── scripts/exa_synergy.py
│ ├── requirements.txt
│ └── SKILL.md
├── replicate-studio/
│ ├── scripts/replicate_studio.py
│ ├── requirements.txt
│ └── SKILL.md
├── ops-commander/
│ ├── scripts/ops_commander.py
│ ├── requirements.txt
│ ├── registry.json (created on first use)
│ └── SKILL.md
├── .env.example
├── setup.sh
└── README.md
python chart-architect/scripts/chart_architect.py \
--type bar \
--data '[{"label":"Q1","value":100},{"label":"Q2","value":150}]' \
--title "Sales by Quarter" \
--output /a0/tmp/chart.pngpython doc-forge/scripts/doc_forge.py \
--format pdf \
--input report.md \
--output report.pdf \
--title "Q4 Report"python exa-synergy/scripts/exa_synergy.py \
--goal "Python asyncio best practices" \
--mode deep \
--num_results 10 \
--save_to /a0/tmp/research.mdpython replicate-studio/scripts/replicate_studio.py \
--model flux-pro \
--prompt "futuristic city at night" \
--output /a0/tmp/city.png# Add server to registry
python ops-commander/scripts/ops_commander.py \
--mode registry \
--action add \
--data '{"name":"prod","host":"10.0.0.5","user":"admin","key_path":"/root/.ssh/id_rsa"}'
# Execute command
python ops-commander/scripts/ops_commander.py \
--mode ssh \
--server prod \
--command "uptime"| Aspect | Tools (Old) | Skills (New) |
|---|---|---|
| Token Usage | ~2150 tokens/request | ~100 tokens/request |
| Loading | Always in context | On-demand via trigger |
| Performance | Slower, heavier | Faster, lighter |
| Maintenance | Framework-dependent | Framework-independent |
- Agent Zero v0.9.8+
- Python 3.10+
- Linux environment (Kali/Debian/Ubuntu/AlmaLinux)
- Initial release
- Converted 5 tools to skills format
- Added requirements.txt for all skills
- Fixed exa-py v2.3+ compatibility (removed use_autoprompt)
- Added setup.sh for automated installation
- Fork the repository
- Create your feature branch
- Make changes
- Test thoroughly
- Submit pull request
MIT License - feel free to use in personal and commercial projects.
- Issues: https://github.com/YOUR_USERNAME/agent-zero-skills/issues
- Discussions: https://github.com/YOUR_USERNAME/agent-zero-skills/discussions
Made with ❤️ for Agent Zero community