From sundial-org-awesome-openclaw-skills-4
Queries Google Analytics 4 data via the Analytics Data API for metrics like page views, sessions, users, conversions, and traffic sources with custom date ranges and filtering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:ga4The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query GA4 properties for analytics data: page views, sessions, users, traffic sources, conversions, and more.
Query GA4 properties for analytics data: page views, sessions, users, traffic sources, conversions, and more.
GA4_PROPERTY_ID - Your GA4 property ID (numeric, e.g., "123456789")GOOGLE_CLIENT_ID - OAuth client IDGOOGLE_CLIENT_SECRET - OAuth client secretGOOGLE_REFRESH_TOKEN - OAuth refresh token (from initial auth flow)python3 scripts/ga4_query.py --metric screenPageViews --dimension pagePath --limit 30
python3 scripts/ga4_query.py --metrics screenPageViews,sessions,totalUsers --dimension pagePath --limit 20
python3 scripts/ga4_query.py --metric sessions --dimension sessionSource --limit 20
python3 scripts/ga4_query.py --metric sessions --dimension landingPage --limit 30
python3 scripts/ga4_query.py --metric sessions --dimension pagePath --start 2026-01-01 --end 2026-01-15
python3 scripts/ga4_query.py --metric screenPageViews --dimension pagePath --filter "pagePath=~/blog/"
Common metrics: screenPageViews, sessions, totalUsers, newUsers, activeUsers, bounceRate, averageSessionDuration, conversions, eventCount
Common dimensions: pagePath, pageTitle, landingPage, sessionSource, sessionMedium, sessionCampaignName, country, city, deviceCategory, browser, date
Default: Table format
Add --json for JSON output
Add --csv for CSV output
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Queries Google Analytics 4 reports and properties using the Data and Admin APIs. Useful for traffic, sessions, users, conversions, and realtime data.
Pulls GA4 reports, traffic data, and insights from the Google Analytics Data API. Handles OAuth authentication and provides example queries for traffic overview, user behavior, and acquisition channels.
Builds runReport requests against the GA4 Data API v1 — picks valid metric/dimension combinations, sets date ranges, applies filters, paginates results, and handles sampling thresholds.