mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
25 lines
449 B
Bash
25 lines
449 B
Bash
#!/bin/bash
|
|
# Edge-TTS Skill Installation Script
|
|
|
|
set -e
|
|
|
|
echo "Installing Edge-TTS Skill..."
|
|
echo ""
|
|
|
|
# Install Node.js dependencies
|
|
echo "Installing Node.js dependencies..."
|
|
cd scripts
|
|
npm install --production
|
|
cd ..
|
|
|
|
echo ""
|
|
echo "✓ Edge-TTS Skill installed successfully!"
|
|
echo ""
|
|
echo "To test the installation:"
|
|
echo " cd scripts"
|
|
echo " npm test"
|
|
echo ""
|
|
echo "For configuration:"
|
|
echo " cd scripts"
|
|
echo " node config-manager.js --help"
|