name: analytics description: Google Analytics 4、标签管理和事件跟踪。 allowed-tools: Read, Write, Edit, Bash, Glob, Grep
分析技能
网站分析实施专家协助。
能力
- 配置 Google Analytics 4
- 实施事件跟踪
- 设置标签管理
- 创建自定义事件
- 处理隐私合规
GA4 实施
// gtag.js
declare global {
interface Window {
gtag: (...args: any[]) => void;
}
}
export function trackEvent(action: string, category: string, label?: string) {
window.gtag('event', action, {
event_category: category,
event_label: label,
});
}
export function trackPageView(url: string) {
window.gtag('config', GA_ID, {
page_path: url,
});
}
目标流程
- 分析设置
- 事件跟踪
- 转化跟踪