원클릭으로
reporting-analytics
Cross-platform performance reporting — metric reconciliation, ROAS modeling, dashboard generation, narrative writing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Cross-platform performance reporting — metric reconciliation, ROAS modeling, dashboard generation, narrative writing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Higgsfield image prompt director covering Banana Pro, Soul Cinema, and GPT-2. Three asset types in strict order — single-image character outfit on white seamless studio (Banana Pro or Soul Cinema two-step), 6-panel multi-angle character sheet off that base, and scene plates with/without characters. Plus GPT-2 for detail face/chest-up portraits. Reads reference images for hair, makeup, wardrobe, jewelry, identity. Outputs photorealistic prompts with locked hyperreal stack — skin pores, subsurface scattering, strand-by-strand hair, fabric weave, Kodak Vision3 film. Use for any character outfit reference, character sheet, model sheet, ref sheet, multi-angle sheet, scene plate, environment plate, face detail, or photorealistic still — even without saying 'Banana Pro,' 'Nano Banana,' or 'Soul Cinema.'
Universal cinema worldbuilding director for Seedance video prompts. Five cinema modes (Narrative, Studio, Action, Performance, Atmospheric) with locked ARRI + Panavision/Cooke camera specs and diegetic-only audio rules. Reads reference images for wardrobe, hair, makeup, identity, and environment. Outputs production-ready Seedance prompts. Use whenever CC asks for a Seedance video prompt, mentions Seedance, asks for cinematic scene breakdowns, uploads reference images for a scene, describes a scene for video generation, or asks for shot prompts for music videos, action sequences, performance scenes, narrative shorts, fashion films, or atmospheric environment plates — even if 'cinematic' or a mode name isn't said.
Complete automated video production system for CC's content pipeline. Use whenever CC provides raw video footage and says "make this a post", "edit this", or asks for a cinematic output. Replaces a human video editor entirely. Covers hook engineering, pacing, caption styling, color grading, audio mastering, sound design, motion graphics, and multi-platform export.
Read-only social + web listening across public platforms (YouTube, Twitter/X, LinkedIn, Reddit, the open web, GitHub, Exa search) for competitive intelligence, content research, transcript mining, and checking public post results. Wraps Agent Reach via scripts/social_reach_tool.py. Does NOT read Instagram, TikTok, or Facebook.
Build high-converting, education-first advertorial / "infomercial" landing pages for ecommerce products — long-form scrollable HTML that warms cold paid traffic and clicks through to the product page. Covers angle selection, direct-response copy doctrine, AI image generation with a product reference, a premium anti-slop design system, and a portable build/QA convention. Use for advertorials, pre-sell pages, native/listicle ad landers, VSL pages, or any "read-an-article-then-buy" funnel page.
Automated video editing pipeline for CC's personal brand content. Use whenever CC drops raw footage and needs it edited, captioned, graded, and sent for review. The primary tool is video_editor.py which handles the full 8-step pipeline.
| name | reporting-analytics |
| description | Cross-platform performance reporting — metric reconciliation, ROAS modeling, dashboard generation, narrative writing. |
| canon_references | ["ritson-diagnosis","sharp-mental-availability"] |
| canon_source | brain/MARKETING_CANON.md |
| universal | true |
| note | Examples in this skill may reference SunBiz (legacy client); the skill itself is brand-agnostic. Per-brand context lives in brain/clients/<brand>.md. |
| triggers | ["generate performance report","weekly campaign recap","pull analytics across platforms","how are the ads doing","ROAS report for client"] |
Cross-platform performance reporting and data analysis.
Quick overview of today's performance across all platforms.
=== Daily Snapshot: YYYY-MM-DD ===
GOOGLE ADS: $X spend | X clicks | X leads | $X CPL
META ADS: $X spend | X clicks | X leads | $X CPL
COMBINED: $X spend | X leads | $X CPL
Alerts: [any issues]
Detailed analysis with trends and recommendations.
=== Weekly Report: [Date Range] ===
GOOGLE ADS SUMMARY
| Campaign | Spend | Impressions | Clicks | CTR | CPC | Leads | CPL | vs Last Week |
|----------|-------|-------------|--------|-----|-----|-------|-----|-------------|
META ADS SUMMARY
| Campaign | Spend | Impressions | Clicks | CTR | CPC | Leads | CPL | vs Last Week |
|----------|-------|-------------|--------|-----|-----|-------|-----|-------------|
TOP PERFORMING ADS
1. [ad name] — CTR X.X%, CPL $X.XX
2. [ad name] — CTR X.X%, CPL $X.XX
BOTTOM PERFORMING ADS
1. [ad name] — CTR X.X%, CPL $X.XX (recommendation)
2. [ad name] — CTR X.X%, CPL $X.XX (recommendation)
KEY INSIGHTS
1. [insight + data]
2. [insight + data]
RECOMMENDED ACTIONS
1. [specific action]
2. [specific action]
High-level overview for client/stakeholders.
=== Monthly Report: [Month Year] ===
HEADLINES
- Total spend: $X,XXX
- Total leads: XX
- Blended CPL: $XX.XX
- Best platform: [Google/Meta]
- Month-over-month change: +/-X%
BUDGET UTILIZATION: X% of allocated budget spent
ROI ESTIMATE: X leads × estimated lead value = $X potential revenue
-- Weekly campaign performance
SELECT campaign.name, metrics.impressions, metrics.clicks, metrics.ctr,
metrics.average_cpc, metrics.conversions, metrics.cost_micros
FROM campaign
WHERE segments.date DURING LAST_7_DAYS
ORDER BY metrics.cost_micros DESC
-- Daily breakdown
SELECT segments.date, metrics.impressions, metrics.clicks,
metrics.conversions, metrics.cost_micros
FROM campaign
WHERE campaign.id = {id}
AND segments.date DURING LAST_30_DAYS
ORDER BY segments.date DESC
insights = Campaign(id).get_insights(
fields=['impressions', 'clicks', 'ctr', 'cpc', 'spend',
'actions', 'cost_per_action_type'],
params={
'date_preset': 'last_7d',
'breakdowns': ['age', 'gender', 'placement'],
'time_increment': 1, # daily granularity
}
)
| Metric | Formula | Good for Lending |
|---|---|---|
| CPL | Spend / Leads | < $50 (varies by market) |
| CTR | Clicks / Impressions | > 2% (Search), > 1% (Meta) |
| CPC | Spend / Clicks | < $3 (varies) |
| CVR | Leads / Clicks | > 5% |
| ROAS | Revenue / Spend | > 3x |
| CPM | (Spend / Impressions) × 1000 | < $30 |
| Frequency | Impressions / Reach | < 3 (Meta) |
scripts/performance_reporter.py — pull cross-platform metrics and generate report JSONscripts/content_backlog_audit.py — audit Maven's content working directories for pipeline healthscripts/pulse_publish.py — write Maven's CMO pulse snapshot for cross-agent consumption