grovs-analytics — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited grovs-analytics (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
| Tool | What it answers | Returns |
|---|---|---|
get_analytics_overview | "How's the project doing?" | Current vs previous period totals (views, opens, installs, revenue, users) |
get_top_links | "What's performing best?" | Ranked list by views (no other sort) |
get_link_analytics | "How's this specific link doing?" | Daily breakdowns — you must sum for totals |
Start with get_analytics_overview. Only call others if the user asks to drill down.
"2026-04-01": {view: 100, ...}. Sum them yourself if the user asks for "total views."search_links with sort_by: "installs".list_campaigns with term: "Summer Sale", not analytics tools.User: "How are my links doing this month?"
get_analytics_overview(project_id: "p_m9f", start_date: "2026-04-01", end_date: "2026-04-08")
→ Current: 1,200 views, 400 opens, 80 installs
→ Previous (auto): 900 views, 300 opens, 60 installs
→ "Views are up 33% compared to the previous period."User: "Which link is getting the most traffic?"
get_top_links(project_id: "p_m9f", start_date: "2026-04-01", end_date: "2026-04-08")
→ 1. Summer Sale — 600 views, 200 opensUser: "Show me the daily breakdown for that one"
get_link_analytics(project_id: "p_m9f", path: "https://foodies.grovs.io/summer-sale", start_date: "2026-04-01", end_date: "2026-04-08")
→ Daily rows. Sum if user wants totals.The path parameter accepts a full link URL or just the slug — the server extracts the path automatically.
platform: "ios") if totals look skewedEvery Grovs tool returns human-readable formatted text. Don't reformat — just present and add context.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.