/social-analytics-report
Unified social media analytics report — consolidates YouTube, Instagram, and LinkedIn data into one cross-platform HTML dashboard. Compares engagement, followers, top content across all platforms. Use when user says 'social analytics', 'social media report', 'social report',
$ npx -y skills add evolution-foundation/evo-nexus --skill social-analytics-report --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/social-analytics-report
Context preview
The summary Claude sees to decide when to auto-load this skill.
Unified social media analytics report — consolidates YouTube, Instagram, and LinkedIn data into one cross-platform HTML dashboard. Compares engagement, followers, top content across all platforms. Use when user says 'social analytics', 'social media report', 'social report',
SKILL.md
social-analytics-report.SKILL.mdname: social-analytics-report
description: "Unified social media analytics report — consolidates YouTube, Instagram, and LinkedIn data into one cross-platform HTML dashboard. Compares engagement, followers, top content across all platforms. Use when user says 'social analytics', 'social media report', 'social report', 'social metrics', 'cross-platform', or any reference to unified social media performance."
Social Analytics — Consolidated Cross-Platform Report
Routine that pulls data from ALL connected social platforms (YouTube, Instagram, LinkedIn) and generates a single comparative HTML report.
**Always respond in English.** **Agente:** @pixel
Workflow
Step 1 — Collect data from all platforms (silently)
Execute the scripts for each integration and capture the results:
YouTube (all accounts)
python3 {project-root}/.claude/skills/int-youtube/scripts/youtube_client.py summary
python3 {project-root}/.claude/skills/int-youtube/scripts/youtube_client.py recent_videos 1 10Instagram (all accounts)
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py summary
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py recent_posts your_account 10
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py recent_posts secondary_account 10LinkedIn (all accounts)
python3 {project-root}/.claude/skills/int-linkedin/scripts/linkedin_client.py summaryIf any platform fails or has no data, include in the report as "No data — platform not configured or API limited" without breaking the report.
Step 2 — Consolidate cross-platform metrics
Calculate:
1. **Total followers** (sum of all accounts across all platforms) 2. **Total publications** in the period (YouTube videos + Instagram posts) 3. **Average engagement rate** weighted by platform 4. **Platform with highest growth** (follower delta, if previous report exists) 5. **Platform with highest engagement** (compare engagement rates)
Step 3 — Build comparison table
One row per account:
| Platform | Account | Followers | Delta | Posts | Engagement | Best Content | |------------|-------|-----------|-------|-------|------------|-----------------| | YouTube | Your Channel | 7.450 | — | 27 | 7.0% | "Evo v3 chegando" | | Instagram | your_account | 686 | — | 18 | 3.9% | "Evo V3 funcionalidades" | | Instagram | secondary_account | 273 | — | 76 | — | — | | LinkedIn | Your Profile | — | — | — | — | Perfil apenas |
Step 4 — Top cross-platform content
Rank the top 10 content from ALL platforms by engagement (likes + comments / views or followers). Show:
- Platform
- Title/caption (summary)
- Views or reach
- Engagement %
- Link
Step 5 — Compare with previous period
Read the previous report in `workspace/social/reports/consolidated/` if it exists. Calculate deltas for:
- Followers per platform
- Average engagement
- Publication volume
Step 6 — Cross-platform insights
Generate analysis with:
- Which platform is growing the most?
- Which content type performs best where? (video on YouTube vs image on Instagram)
- Publication frequency per platform
- Recommendations: where to invest more content, which format to prioritize
- Platforms without data (LinkedIn posts, etc.) — what is missing to unlock
Step 7 — Generate HTML
Read template `.claude/templates/html/custom/social-analytics-report.html` and fill all `{{PLACEHOLDER}}`.
`{{REPORT_TYPE}}` depende da frequência:
- Daily: "Daily"
- Weekly: "Weekly"
- Monthly: "Monthly"
For comparison table rows:
<tr>
<td><span class="badge blue">YouTube</span></td>
<td>Your Channel</td>
<td class="right">7.450</td>
<td class="right delta up">+32</td>
<td class="right">27</td>
<td class="right">7.0%</td>
<td>Evo v3 chegando...</td>
</tr>
For platforms without data:
<tr style="opacity:0.5">
<td><span class="badge muted">LinkedIn</span></td>
<td>Your Profile</td>
<td class="right">—</td>
<td class="right">—</td>
<td class="right">—</td>
<td class="right">—</td>
<td style="color:var(--text-muted)">API limited — profile only</td>
</tr>
For `{{MISSING_INTEGRATIONS}}` — if any platform is not configured:
<div class="highlight-card" style="border-color: rgba(102,112,133,0.3);">
<div class="title" style="color: var(--text-muted);">Pending Integrations</div>
<div class="body">
<ul style="list-style:none;padding:0;">
<li>LinkedIn — Posts and Company Page (requires Community Management API)</li>
<li>Twitter — Not configured</li>
</ul>
</div>
</div>Step 8 — Save
workspace/social/reports/consolidated/[C] YYYY-MM-DD-social-analytics.html
Create directory if it does not exist.
Read more
name: social-analytics-report description: "Unified social media analytics report — consolidates YouTube, Instagram, and LinkedIn data into one cross-platform HTML dashboard. Compares engagement, followers, top content across all platforms. Use when user says 'social analytics', 'social media report', 'social report', 'social metrics', 'cross-platform', or any reference to unified social media performance."
Social Analytics — Consolidated Cross-Platform Report
Routine that pulls data from ALL connected social platforms (YouTube, Instagram, LinkedIn) and generates a single comparative HTML report.
**Always respond in English.** **Agente:** @pixel
Workflow
Step 1 — Collect data from all platforms (silently)
Execute the scripts for each integration and capture the results:
YouTube (all accounts)
python3 {project-root}/.claude/skills/int-youtube/scripts/youtube_client.py summary
python3 {project-root}/.claude/skills/int-youtube/scripts/youtube_client.py recent_videos 1 10Instagram (all accounts)
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py summary
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py recent_posts your_account 10
python3 {project-root}/.claude/skills/int-instagram/scripts/instagram_client.py recent_posts secondary_account 10LinkedIn (all accounts)
python3 {project-root}/.claude/skills/int-linkedin/scripts/linkedin_client.py summaryIf any platform fails or has no data, include in the report as "No data — platform not configured or API limited" without breaking the report.
Step 2 — Consolidate cross-platform metrics
Calculate:
1. **Total followers** (sum of all accounts across all platforms) 2. **Total publications** in the period (YouTube videos + Instagram posts) 3. **Average engagement rate** weighted by platform 4. **Platform with highest growth** (follower delta, if previous report exists) 5. **Platform with highest engagement** (compare engagement rates)
Step 3 — Build comparison table
One row per account:
| Platform | Account | Followers | Delta | Posts | Engagement | Best Content | |------------|-------|-----------|-------|-------|------------|-----------------| | YouTube | Your Channel | 7.450 | — | 27 | 7.0% | "Evo v3 chegando" | | Instagram | your_account | 686 | — | 18 | 3.9% | "Evo V3 funcionalidades" | | Instagram | secondary_account | 273 | — | 76 | — | — | | LinkedIn | Your Profile | — | — | — | — | Perfil apenas |
Step 4 — Top cross-platform content
Rank the top 10 content from ALL platforms by engagement (likes + comments / views or followers). Show:
- Platform
- Title/caption (summary)
- Views or reach
- Engagement %
- Link
Step 5 — Compare with previous period
Read the previous report in `workspace/social/reports/consolidated/` if it exists. Calculate deltas for:
- Followers per platform
- Average engagement
- Publication volume
Step 6 — Cross-platform insights
Generate analysis with:
- Which platform is growing the most?
- Which content type performs best where? (video on YouTube vs image on Instagram)
- Publication frequency per platform
- Recommendations: where to invest more content, which format to prioritize
- Platforms without data (LinkedIn posts, etc.) — what is missing to unlock
Step 7 — Generate HTML
Read template `.claude/templates/html/custom/social-analytics-report.html` and fill all `{{PLACEHOLDER}}`.
`{{REPORT_TYPE}}` depende da frequência:
- Daily: "Daily"
- Weekly: "Weekly"
- Monthly: "Monthly"
For comparison table rows:
<tr> <td><span class="badge blue">YouTube</span></td> <td>Your Channel</td> <td class="right">7.450</td> <td class="right delta up">+32</td> <td class="right">27</td> <td class="right">7.0%</td> <td>Evo v3 chegando...</td> </tr>
For platforms without data:
<tr style="opacity:0.5"> <td><span class="badge muted">LinkedIn</span></td> <td>Your Profile</td> <td class="right">—</td> <td class="right">—</td> <td class="right">—</td> <td class="right">—</td> <td style="color:var(--text-muted)">API limited — profile only</td> </tr>
For `{{MISSING_INTEGRATIONS}}` — if any platform is not configured:
<div class="highlight-card" style="border-color: rgba(102,112,133,0.3);">
<div class="title" style="color: var(--text-muted);">Pending Integrations</div>
<div class="body">
<ul style="list-style:none;padding:0;">
<li>LinkedIn — Posts and Company Page (requires Community Management API)</li>
<li>Twitter — Not configured</li>
</ul>
</div>
</div>Step 8 — Save
workspace/social/reports/consolidated/[C] YYYY-MM-DD-social-analytics.html
Create directory if it does not exist.
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

