Read and summarize Google Analytics 4 (GA4) data using the Google Analytics Data API. This skill should be used when users ask to fetch website/app metrics, compare date ranges, inspect traffic sources, or build quick performance reports from GA4 properties.
npx claudepluginhub leolionart/claude-skills --plugin google-analytics-readerThis skill uses the workspace's default tool permissions.
Đọc dữ liệu GA4 (sessions, users, conversions, revenue, traffic source) bằng Google Analytics Data API, sau đó tóm tắt kết quả theo yêu cầu người dùng.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Đọc dữ liệu GA4 (sessions, users, conversions, revenue, traffic source) bằng Google Analytics Data API, sau đó tóm tắt kết quả theo yêu cầu người dùng.
scripts/ga4_query.py --preset overview.--metrics, --dimensions, --start-date, --end-date.hostName để tách traffic theo domain/subdomain.GOOGLE_APPLICATION_CREDENTIALS và quyền Viewer/Analyst cho service account trên GA4 property.export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.jsonpython3 scripts/ga4_query.py --property-id 123456789 --preset overview --start-date 7daysAgo --end-date yesterdayactiveUsers,sessions,screenPageViews,eventCount,totalRevenuedatehostName (ít nhất một bảng top host theo sessions).sessions,activeUsers,conversionssessionDefaultChannelGrouphostName.sessions,engagedSessions,conversions,pageviewshostName,landingPagePlusQueryString,pagePathlandingPagePlusQueryString về path (loại query params như fbclid, utm_*) trước khi tổng hợp.hostName + clean_landing_path để tránh trộn / giữa nhiều subdomain.GOOGLE_APPLICATION_CREDENTIALS đã được set và khi user đồng ý lưu/hiển thị; KHÔNG bao gồm nội dung file.fbclid, utm_*) trước khi tổng hợp; nếu cần giữ raw URL thì trình bày thêm bảng phụ.pagePath cho từng landing page (một bảng nhỏ hoặc link tới CSV).GOOGLE_APPLICATION_CREDENTIALS.overview và trả về header + tổng quan + bảng phân bổ theo hostname + top landing pages theo hostname (mặc định top 10).scripts/ga4_query.py: CLI truy vấn GA4 với preset hoặc custom metrics/dimensions.references/setup.md: hướng dẫn cấp quyền service account + lỗi thường gặp.