Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

datafastdatafast 搜索

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,223

周安装

52

GitHub Stars

公开资料未说明

下载量

428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:datafast(datafast 搜索)
来源仓库:https://github.com/blink-new/claude
仓库路径:skills/datafast
安装命令:
npx skills add https://github.com/blink-new/claude --skill datafast
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/blink-new/claude --skill datafast

简介

用于网站数据追踪、收入归因分析和自定义事件记录,支持静态站点和主流框架。

  • 可集成 Stripe、LemonSqueezy 等支付渠道,代理脚本提升数据质量,导出历史分析。
  • 安装后在 head 标签内添加脚本,配置 website-id 和域名参数即可启用。
  • 涉及敏感数据或批量操作时需确认权限,避免将样本数据当作全量事实处理。
  • datafast 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

When to Use This Skill

  • You need to instrument a website (static, SPA, Next.js, Astro, etc.) with DataFast tracking.
  • Revenue needs to be attributed to marketing channels (Stripe, LemonSqueezy, Polar, custom providers).
  • You want to record custom events/goals reliably despite ad blockers.
  • You must proxy the tracker/script for increased data quality or hashed navigation.
  • You want to export/import historical analytics or query DataFast APIs.

Quickstart (4 steps)

  1. Install the tracking script inside <head>: <script defer data-website-id="dfid_XXXX" data-domain="example.com" src="https://datafa.st/js/script.js" ></script>

- Customize via data-allow-localhost, data-api-url, data-debug, data-allowed-hostnames, data-disable-console, data-allow-file-protocol. - Include the datafast-queue snippet to queue calls that happen before the library loads.

  1. Connect payment providers (Stripe, LemonSqueezy, Polar, Shopify, etc.) from the Revenue tab so DataFast auto-tracks revenue.
  2. Add custom goals/events with window.datafast("my_goal"), data-fast-goal attributes, or the server-side Goals API.
  3. Optional proxy to bypass ad blockers: rewrite /js/script.js and /api/events to your domain and forward visitor IP with x-datafast-real-ip.

Installation Reference

  • Scripts load via <Script /> components in frameworks (Next.js App Router, React, Vue, Astro, etc.) or declaratively in public/index.html.
  • For hash-based navigation, use the hash-enabled script https://datafa.st/js/script.hash.js.
  • Use GTM, Shopify, Webflow, Wix, Podia, Kajabi, Ghost, Bubble, Framer, Astro, React Router, Laravel, Django, FastAPI, Flask, Express, PHP, Nginx, Firebase, Rocket, etc., by dropping the same script into the <head> or platform-specific head/custom code sections.

Revenue Attribution Best Practices

  • After the tracking script is live, go to Website Settings → Revenue and add each payment provider.
  • Always pass datafast_visitor_id (and optionally datafast_session_id) when creating checkout sessions:

- Stripe Checkout / PaymentIntent: read the cookies from cookies() or request.cookies and add them to metadata. - LemonSqueezy: include DataFast cookies under custom. - Polar: add cookies to metadata. - Paddle / Dodo Payments / Easytool / Custom: call the Payments API or trigger a payment goal with the customer email.

  • For gateways where DataFast already pulls revenue (Shopify, Stripe, LemonSqueezy, Polar), keep the tracking snippet installed but omit redundant manual events.
  • Document the metadata mapping and ensure downstream jobs read datafast_visitor_id for each financial event.

Custom Events & Goals

Method 1 – window.datafast() (client-side)

  • Fire window?.datafast("goal_name") on clicks, success pages, or after API responses.
  • Record parameters: window.datafast("checkout", {price: "49", plan: "pro"}).

Method 2 – HTML data attributes

  • Add data-fast-goal="goal_name" to buttons/links.
  • Enrich with data-fast-goal-* attributes (data-fast-goal-price="49" becomes {price: "49"}).

Method 3 – Server-side Goals API

  • POST to https://datafa.st/api/v1/goals with datafast_visitor_id, name, and optional metadata.
  • Authenticate with Authorization: Bearer YOUR_API_KEY.
  • Ensure the visitor already had at least one pageview (tracked via the script).

Funnels, Scrolls, & Filters

  • Use data-fast-scroll on critical sections (features, pricing, testimonials) to send scroll goals when 50% of the element is visible.
  • Combine scroll goals with funnels (landing page visit → feature scroll → CTA click) to spot drop-offs.
  • Track UTM/ref/via parameters automatically tracked by DataFast; encourage marketing links to include ?ref=, ?utm_source=, ?utm_medium=, ?utm_campaign=, ?utm_term=, and ?utm_content.
  • Use filters to slice by country, device, campaign, URL path, or custom goals; hover charts expose filter shortcuts.
  • Provide docs for datafast_ignore localStorage to exclude internal traffic.

Proxy & Hosting Guidance

  • Proxy requests so the script loads from /js/script.js and events post to /api/events on your domain.
  • Forward the visitor IP with x-datafast-real-ip to keep geolocation accurate.
  • Next.js rewrites, Express HTTP proxy, Flask/FastAPI routes, PHP scripts, Nginx/Caddy rules, Firebase Functions, and DigitalOcean/Nginx examples are ready-made patterns—adapt whichever matches your stack.
  • Allowlist additional domains via data-allowed-hostnames="app.io,shop.example.com" and set data-domain to the root domain to share cookies across subdomains.
  • Use data-api-url or datafast_events endpoints when custom routing is needed; the tracker auto-detects proxied setups.

API & Export/Import

  • DataFast APIs (Overview, Timeseries, Devices, Pages, Countries, Referrers, Campaigns, Goals, Payments, Visitors, Metadata, Realtime) all require Authorization: Bearer <API_KEY>.
  • Use the Payments API to push revenue from unsupported providers: include amount, currency, transaction_id, and the visitor ID.
  • Use the Goals API for server-side events (max 10 metadata keys).
  • Import Plausible exports into DataFast to keep historical data; reference Import your Plausible data.
  • Export to dashboards via the API Playground, Real-time endpoints, or custom scripts.

Mobile & Support

  • Install the DataFast mobile app (iOS/Android) to monitor metrics on the go; connect any site with an API key.
  • Use Google Search Console integration for keyword influence; ensure your domain is verified and you have owner/full permissions.
  • Track GitHub commits in your dashboard to correlate releases with revenue spikes.
  • Reach out to marc@datafa.st or https://feedback.datafa.st/ for help, feature requests, or troubleshooting.

Troubleshooting Checklist

  • Script not firing headers? Confirm the tag is inside <head> and the data-website-id domain matches data-domain.
  • No revenue? Verify payment provider connection plus metadata cookies in Stripe/LemonSqueezy/Polar sessions.
  • Goals not recorded? Ensure goal names use lowercase/underscores/hyphens and do not exceed 64 characters.
  • Vercel preview showing no data? Enable data-allow-localhost="true" during staging or rely on proxied script in production.
  • Proxy showing all visitors from server IP? Add x-datafast-real-ip or forward X-Forwarded-For.

References

  • Script configuration reference: data-allowed-hostnames, data-api-url, data-allow-localhost, data-disable-console, data-debug.
  • Revenue attribution guides (Stripe Checkout, PaymentIntent, Checkout Links, LemonSqueezy, Polar, Paddle, Dodo Payments, Easytool).
  • Technology-specific install docs for Shopify, Webflow, Wix, Ghost, Next.js, Astro, Laravel, React Router, Firebase, Astro middleware, Caddy, Nginx, DigitalOcean, etc.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.36%
按下载量换算139

Claude

30.57%
按下载量换算131

Cursor

20.41%
按下载量换算87

Gemini CLI

10.32%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills