intelligems-rollout-brief
/rollout-brief
Stakeholder-ready summary document for any A/B test. Combines verdict, financial impact, segment analysis, and recommendations into a single shareable brief.
Copy-paste to Slack, email, or present in a meeting.
Works with both active and ended tests.
Step 0: Workspace Check
test -d ~/intelligems-analytics/venv && test -f ~/intelligems-analytics/ig_client.py && echo "READY" || echo "NEEDS_SETUP"
If NEEDS_SETUP: Run the /intelligems-core skill first.
Step 1: Get API Key
Check for existing key and ask if missing. Same pattern as other skills.
Step 2: Copy Rollout Script
cp references/rollout.py ~/intelligems-analytics/rollout.py
Step 3: Select Test
Pass a test ID directly or let the script list active experiments.
Step 4: Run Analysis
cd ~/intelligems-analytics && source venv/bin/activate && python3 rollout.py [optional_test_id]
The script will:
- Fetch test details + overview analytics + 3 segment types
- Compute verdict, financial projections, and segment analysis
- Generate a structured stakeholder brief
Step 5: Present Brief
The output is already formatted as a stakeholder document. Present it directly — it's designed to be shared as-is.
Sections:
- Executive Summary — 2-3 sentence verdict + business case
- Test Details — Name, type, runtime, traffic
- Results — Primary metric with verdict
- Financial Impact — Projected annual/monthly impact
- Segment Analysis — Key segments with rollout implications
- Recommendation — Clear action with reasoning
- Next Steps — Concrete follow-up actions
Step 6: Set Up Slack Automation (Optional)
cd ~/intelligems-analytics && source venv/bin/activate && python3 rollout.py <test_id> --slack "<webhook_url>"
Notes
- 5 API calls — 1 detail + 1 overview + 3 segment types.
- Designed for sharing — The terminal output reads like a document, not a data dump.
- Combines other skills' logic — Uses verdict, profit impact, and segment analysis in one output.
- Slack output — Comprehensive Block Kit message with all sections.
More from victorpay1/intelligems-analytics
intelligems-profit-impact
Translate A/B test lift percentages into annualized dollar projections. Shows conservative and optimistic revenue impact, break-even analysis, and opportunity cost of waiting.
10intelligems-morning-brief
Get a prioritized morning summary of all your active Intelligems tests. Shows health status, action items, emerging winners, and daily run rates — designed for daily use.
9intelligems-core
Shared Python library for Intelligems Analytics skills. Sets up the workspace, API client, metric helpers, and configuration. Run this before using any other Intelligems Analytics skill.
8intelligems-test-verdict
Analyze any Intelligems A/B test and get a plain-English verdict — should you roll it out, keep running, or kill it? Includes risk assessment, segment nuance, and profit impact.
8intelligems-api
Load Intelligems External API context before building API integrations. Use when starting to build any API use case for Intelligems.
7intelligems-test-debrief
Post-mortem analysis for any Intelligems A/B test. Extracts learnings from funnel data, segment patterns, and customer behavior — then suggests what to test next based on findings.
7