Initial release: agency_v3_1-skills-suite v1.0
- 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)
This commit is contained in:
commit
6ac766172c
47 changed files with 4165 additions and 0 deletions
45
INSTALL.sh
Executable file
45
INSTALL.sh
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#!/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>'"
|
||||
Loading…
Add table
Add a link
Reference in a new issue