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
218
agency-social/SKILL.md
Normal file
218
agency-social/SKILL.md
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
---
|
||||
name: agency-social
|
||||
description: Creare social strategy, calendario editoriale e post queue per LinkedIn, Instagram, X. Usare quando: (1) nuovo cliente needs social presence, (2) pianificare content calendar, (3) creare post queue. Output: Social strategy, calendario 4 settimane, 10+ post in queue.
|
||||
---
|
||||
|
||||
# Agency Social Editor — Social Strategy e Content
|
||||
|
||||
Social strategy, calendario editoriale e post queue con visual brief.
|
||||
|
||||
## Quando Usare
|
||||
|
||||
- **Nuovo cliente:** Impostare presenza social
|
||||
- **Content planning:** Pianificare 4+ settimane
|
||||
- **Post production:** Creare queue di post pronti
|
||||
- **Strategy refresh:** Aggiornare approccio social
|
||||
|
||||
---
|
||||
|
||||
## Input
|
||||
|
||||
| Input | Tipo | Validazione |
|
||||
|-------|------|-------------|
|
||||
| `client_path` | string | Percorso client |
|
||||
| `content_pillars` | array | Da strategy |
|
||||
| `brand_voice` | object | Tone of voice |
|
||||
| `platforms` | array | Piattaforme target (LinkedIn, Instagram, X) |
|
||||
| `posting_frequency` | object | Frequenza per piattaforma |
|
||||
|
||||
---
|
||||
|
||||
## Processo
|
||||
|
||||
### Fase 1: Social Strategy
|
||||
|
||||
**Obiettivo:** Definire approccio per piattaforma.
|
||||
|
||||
**Azioni:**
|
||||
|
||||
1. Per ogni piattaforma, definisci:
|
||||
- **Scopo:** Perché essere presenti
|
||||
- **Audience:** Chi seguiamo/raggiungiamo
|
||||
- **Formati:** Cosa pubblichiamo
|
||||
- **Frequenza:** Quanto spesso
|
||||
- **KPI:** Come misuriamo successo
|
||||
|
||||
**Template:**
|
||||
|
||||
```markdown
|
||||
# Social Strategy
|
||||
|
||||
## LinkedIn
|
||||
- **Scopo:** Thought leadership, B2B lead gen
|
||||
- **Audience:** Founders, PM, decision maker B2B
|
||||
- **Formati:** Text post, carousel, article
|
||||
- **Frequenza:** 3x settimana
|
||||
- **KPI:** Engagement rate, DM inbound, profile views
|
||||
|
||||
## Instagram
|
||||
- **Scopo:** Brand awareness, visual storytelling
|
||||
- **Audience:** {Target}
|
||||
- **Formati:** Reel, carousel, stories
|
||||
- **Frequenza:** 4x settimana
|
||||
- **KPI:** Reach, saves, shares
|
||||
|
||||
## X / Twitter
|
||||
- **Scopo:** Real-time engagement, network building
|
||||
- **Audience:** {Target}
|
||||
- **Formati:** Thread, single tweet
|
||||
- **Frequenza:** 5x settimana
|
||||
- **KPI:** Replies, retweets, profile clicks
|
||||
```
|
||||
|
||||
**Output:**
|
||||
- `clients/{client}/social/social_strategy.md`
|
||||
|
||||
---
|
||||
|
||||
### Fase 2: Calendario Editoriale
|
||||
|
||||
**Obiettivo:** Pianificare 4 settimane di content.
|
||||
|
||||
**Azioni:**
|
||||
|
||||
1. Usa content pillars da strategy
|
||||
2. Mappa pillar a formati per piattaforma
|
||||
3. Crea calendario 4 settimane:
|
||||
- Data
|
||||
- Piattaforma
|
||||
- Formato
|
||||
- Pillar
|
||||
- Hook/Topic
|
||||
- Status (draft/scheduled/published)
|
||||
|
||||
**Template:**
|
||||
|
||||
```markdown
|
||||
# Social Calendar — 4 Settimane
|
||||
|
||||
## Settimana 1
|
||||
| Data | Platform | Formato | Pillar | Topic | Status |
|
||||
|------|----------|---------|--------|-------|--------|
|
||||
| Lun | LinkedIn | Text | Education | "3 errori comuni in {settore}" | Draft |
|
||||
| Mar | Instagram | Carousel | Case Study | "Prima/Dopo: {cliente}" | Draft |
|
||||
| Mer | X | Thread | Insights | "Come {risultato} in 5 step" | Draft |
|
||||
| ... | ... | ... | ... | ... | ... |
|
||||
|
||||
## Settimana 2
|
||||
...
|
||||
```
|
||||
|
||||
**Output:**
|
||||
- `clients/{client}/social/calendar.md`
|
||||
|
||||
---
|
||||
|
||||
### Fase 3: Post Queue
|
||||
|
||||
**Obiettivo:** Creare 10+ post pronti per la queue.
|
||||
|
||||
**Azioni:**
|
||||
|
||||
1. Per ogni post, compila spec:
|
||||
|
||||
**Template Post:**
|
||||
|
||||
```markdown
|
||||
# Post 001
|
||||
|
||||
**Platform:** LinkedIn
|
||||
**Format:** Text post
|
||||
**Pillar:** Education
|
||||
**Status:** Draft
|
||||
|
||||
## Content
|
||||
|
||||
**Hook:**
|
||||
{Prima riga che cattura attenzione}
|
||||
|
||||
**Body:**
|
||||
{Contenuto principale, 3-5 punti o paragrafi brevi}
|
||||
|
||||
**CTA:**
|
||||
{Call to action: commenta, DM, link in bio}
|
||||
|
||||
## Visual Brief
|
||||
|
||||
**Tipo:** Nessuno / Immagine singola / Carousel
|
||||
**Descrizione:** {Cosa mostrare}
|
||||
**Testo su immagine:** {Copy se applicabile}
|
||||
|
||||
## Metadata
|
||||
|
||||
**Hashtag:** #tag1 #tag2 #tag3
|
||||
**Tag:** @{company}, @{person}
|
||||
**Scheduled:** {Data/ora se programmato}
|
||||
```
|
||||
|
||||
2. Crea minimo 10 post (mix di pillar e formati)
|
||||
|
||||
**Output:**
|
||||
- `clients/{client}/social/posts/post_001.md` ... `post_010.md`
|
||||
|
||||
---
|
||||
|
||||
### Fase 4: Published Log (Opzionale)
|
||||
|
||||
**Obiettivo:** Tracciare post pubblicati.
|
||||
|
||||
**Azioni:**
|
||||
|
||||
1. Dopo publish, aggiorna log:
|
||||
- Data publish
|
||||
- Piattaforma
|
||||
- Post ID
|
||||
- Performance (se disponibili)
|
||||
|
||||
**Output:**
|
||||
- `clients/{client}/social/published_log.md`
|
||||
|
||||
---
|
||||
|
||||
## Output
|
||||
|
||||
| File | Formato | Descrizione |
|
||||
|------|---------|-------------|
|
||||
| `clients/{client}/social/social_strategy.md` | Markdown | Strategy per piattaforma |
|
||||
| `clients/{client}/social/calendar.md` | Markdown | Calendario 4 settimane |
|
||||
| `clients/{client}/social/posts/*.md` | Markdown | 10+ post in queue |
|
||||
| `clients/{client}/social/published_log.md` | Markdown | Log publish (opzionale) |
|
||||
|
||||
---
|
||||
|
||||
## References
|
||||
|
||||
- [content_formats.md](../../references/content_formats.md) — Formati social
|
||||
- [platform_patterns.md](../../references/platform_patterns.md) — Pattern per piattaforma
|
||||
- [brand_voice.md](../../references/brand_voice.md) — Tone of voice
|
||||
- [social_post_spec.md](../../templates/social_post_spec.md) — Template post
|
||||
|
||||
---
|
||||
|
||||
## Note
|
||||
|
||||
**Edge Cases:**
|
||||
|
||||
- **Nessun visual asset:** Usa visual brief per `agency-visual-generator`
|
||||
- **Cliente non fornisce feedback:** Procedi con assunzioni documentate
|
||||
- **Platform nuove:** Adatta strategy (es. TikTok richiede video)
|
||||
|
||||
**Limitazioni:**
|
||||
|
||||
- Publishing richiede approvazione (vedi `publishing_gates.md`)
|
||||
- Performance tracking richiede accesso analytics
|
||||
- Post queue va aggiornata regolarmente
|
||||
|
||||
---
|
||||
|
||||
_Skill generata da framework-translator_
|
||||
1
agency-social/references
Symbolic link
1
agency-social/references
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../references
|
||||
Loading…
Add table
Add a link
Reference in a new issue