Stats
Actions
Tags
Pull a unified growth dashboard combining GA4 traffic, PostHog funnels, and MongoDB signup data with week-over-week deltas
How this command is triggered — by the user, by Claude, or both
Slash command
/vivreal-growth-analytics:growth-reportThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# /growth-report — Unified Growth Dashboard Pull a comprehensive growth report by combining data from Google Analytics 4, PostHog, and Vivreal's MongoDB. ## Arguments `/growth-report [period] [--compare] [--focus=area]` - `[period]`: Time range for the report. Default: `7d` (last 7 days) - `1d` — today - `7d` — last 7 days (default) - `30d` — last 30 days - `mtd` — month to date - `custom:2026-03-01:2026-03-15` — custom date range - `--compare`: Include week-over-week or period-over-period comparison (default: on) - `--focus`: Focus on a specific area instead of the full repor...
Pull a comprehensive growth report by combining data from Google Analytics 4, PostHog, and Vivreal's MongoDB.
/growth-report [period] [--compare] [--focus=area]
[period]: Time range for the report. Default: 7d (last 7 days)
1d — today7d — last 7 days (default)30d — last 30 daysmtd — month to datecustom:2026-03-01:2026-03-15 — custom date range--compare: Include week-over-week or period-over-period comparison (default: on)--focus: Focus on a specific area instead of the full report
traffic — GA4 traffic sources and page views onlyfunnel — PostHog funnel completion rates onlysignups — MongoDB user/group creation data onlyengagement — session duration, pages/session, return visitsQuery GA4 for:
Query PostHog for:
Connect to Vivreal's mainDb and query:
db.groups.count({ createdAt: { $gte: <period_start> } })db.users.count({ createdAt: { $gte: <period_start> } })db.groups.aggregate([{ $group: { _id: "$tier", count: { $sum: 1 } } }])db.sites.count({ createdAt: { $gte: <period_start> } })## Growth Report: <period description>
Generated: <timestamp>
### Headline Metrics
| Metric | Current | Previous | Delta |
|---|---|---|---|
| Total Sessions | X | Y | +Z% |
| New Users (GA4) | X | Y | +Z% |
| Signup Completions | X | Y | +Z% |
| New Groups (MongoDB) | X | Y | +Z% |
| Sites Deployed | X | Y | +Z% |
| Funnel Completion Rate | X% | Y% | +Z pp |
### Traffic Sources
| Source | Sessions | % of Total | Trend |
|---|---|---|---|
| Organic Search | X | Y% | arrow |
| Direct | X | Y% | arrow |
| Social | X | Y% | arrow |
| Referral | X | Y% | arrow |
| Paid | X | Y% | arrow |
### Funnel Performance (PostHog)
| Step | Users | Conversion | Drop-off |
|---|---|---|---|
| Landing page visit | X | 100% | — |
| Signup started | X | Y% | Z% |
| Signup completed | X | Y% | Z% |
| First group created | X | Y% | Z% |
| First collection created | X | Y% | Z% |
| First site deployed | X | Y% | Z% |
### Tier Distribution (MongoDB)
| Tier | Count | % | New This Period |
|---|---|---|---|
| Free | X | Y% | Z |
| Basic | X | Y% | Z |
| Pro | X | Y% | Z |
| Pro Plus | X | Y% | Z |
### Top Insights
1. <Actionable insight based on the data>
2. <Actionable insight based on the data>
3. <Actionable insight based on the data>
### Recommendations
- <Specific recommendation tied to data>
- <Specific recommendation tied to data>
Follow the same safety rules as /db-query:
find, aggregate, countvivreal mainDb for cross-tenant metricsgroupName — always { key: dbKey } or { _id: groupID }/growth-report
→ Default 7-day report with WoW comparison across all sources
/growth-report 30d
→ 30-day report with month-over-month comparison
/growth-report 7d --focus=funnel
→ PostHog funnel analysis only for the last 7 days
/growth-report mtd --focus=signups
→ Month-to-date MongoDB signup and group creation data
npx claudepluginhub hillbombcreations/vivreal-skills --plugin vivreal-growth-analytics