- 12 AgentSkills generate da agency_v3_1 framework - 17 references centralizzate - Script INSTALL.sh per installazione automatica - README.md con documentazione completa Skills incluse: - agency-orchestrator (coordinamento + QA) - agency-strategy (positioning, messaging) - agency-research (competitive intelligence) - agency-creative-director (direzione visiva) - agency-design-system (tokens, components) - agency-ux-copy (sitemap, copy) - agency-seo (SEO tecnico) - agency-social (social strategy) - agency-youtube (YouTube strategy) - agency-visual-generator (asset visuali) - agency-analytics (report KPI) - agency-publisher (publish gate-based) Generated by framework-translator v2.0 Approved by: MarcoB (2026-03-09)
45 lines
1.1 KiB
Bash
Executable file
45 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
# Installazione agency_v3_1-skills
|
|
|
|
set -e
|
|
|
|
SOURCE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
TARGET="$HOME/.openclaw/skills/agency_v3_1-skills"
|
|
|
|
echo "🚀 Installing agency_v3_1-skills..."
|
|
echo ""
|
|
|
|
# Rimuovi installazione precedente se esiste
|
|
if [ -d "$TARGET" ]; then
|
|
echo "⚠️ Rimozione installazione precedente..."
|
|
rm -rf "$TARGET"
|
|
fi
|
|
|
|
# Crea directory target
|
|
mkdir -p "$(dirname "$TARGET")"
|
|
|
|
# Copia skills
|
|
echo "📦 Copia skills in $TARGET..."
|
|
cp -r "$SOURCE" "$TARGET"
|
|
|
|
# Verifica symlink
|
|
echo "🔗 Verifica symlink..."
|
|
for skill_dir in "$TARGET"/*/; do
|
|
if [ -d "$skill_dir" ] && [ "$skill_dir" != "$TARGET/references/" ]; then
|
|
if [ ! -L "$skill_dir/references" ]; then
|
|
echo " Fix symlink: $skill_dir"
|
|
rm -rf "$skill_dir/references"
|
|
ln -s ../references "$skill_dir/references"
|
|
fi
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
echo "✅ Installation complete!"
|
|
echo ""
|
|
echo "Skills installate in: $TARGET"
|
|
echo ""
|
|
echo "Skills disponibili:"
|
|
ls -1 "$TARGET" | grep -v references | sed 's/^/ - /'
|
|
echo ""
|
|
echo "Per usare una skill, riferisciti a lei come 'agency_v3_1-skills/<nome-skill>'"
|