Skip to content

rikitikitavi2012-debug/agent-zero-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Agent Zero Custom Skills

Набор из 5 production-ready skills для Agent Zero v0.9.8+, конвертированных из инструментов для экономии ~2150 токенов на запрос.

📦 Included Skills

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

🚀 Quick Start

1. Clone & Setup

# 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/

2. Install Dependencies

# 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

3. Configure API Keys

# 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_here

Get API keys:

4. Verify Installation

# 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

📁 Structure

/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

🔧 Usage Examples

Chart Architect

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.png

Doc Forge

python doc-forge/scripts/doc_forge.py \
  --format pdf \
  --input report.md \
  --output report.pdf \
  --title "Q4 Report"

Exa Synergy

python exa-synergy/scripts/exa_synergy.py \
  --goal "Python asyncio best practices" \
  --mode deep \
  --num_results 10 \
  --save_to /a0/tmp/research.md

Replicate Studio

python replicate-studio/scripts/replicate_studio.py \
  --model flux-pro \
  --prompt "futuristic city at night" \
  --output /a0/tmp/city.png

Ops Commander

# 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"

🎯 Why Skills vs Tools?

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

🛠️ Requirements

  • Agent Zero v0.9.8+
  • Python 3.10+
  • Linux environment (Kali/Debian/Ubuntu/AlmaLinux)

📝 Changelog

v1.0.0 (2026-02-15)

  • 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

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Make changes
  4. Test thoroughly
  5. Submit pull request

📄 License

MIT License - feel free to use in personal and commercial projects.

🆘 Support


Made with ❤️ for Agent Zero community

About

5 production-ready skills for Agent Zero v0.9.8+ - exa-synergy, replicate-studio, chart-architect, doc-forge, ops-commander

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors