Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/ivanovzlatan2/data-arsenal-v1Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/ivanovzlatan2/data-arsenal-v1/ga4-report)<a href="https://agentmods.dev/commands/ivanovzlatan2/data-arsenal-v1/ga4-report"><img src="https://agentmods.dev/badge/commands/ivanovzlatan2/data-arsenal-v1/ga4-report/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/ivanovzlatan2/data-arsenal-v1/ga4-report"><img src="https://agentmods.dev/badge/commands/ivanovzlatan2/data-arsenal-v1/ga4-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00011 | $0.00590 |
| Opus 5 | $0.00005 | $0.00295 |
| Sonnet 5 | $0.00002 | $0.00118 |
| Haiku 4.5 | $0.00001 | $0.00059 |
Grade A, and why
ga4-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/ga4-report - Custom Report Runner
Runs a custom GA4 report with user-specified metrics and dimensions.
Usage
/ga4-report <property_id> [--metrics sessions,activeUsers] [--dimensions date] [--days 30] [--limit 100]
Steps
-
Language preference: Read
~/.config/data-arsenal/config.json. Iflanguageis set to anything other than English, write ALL commentary, explanations, and recommendations in that language. Data labels and GA4 metric names stay in English. -
Parse the request: If the user gives a natural language request instead of exact parameters, translate to GA4 metrics and dimensions:
- "show me traffic by channel" ->
--metrics sessions,activeUsers --dimensions sessionDefaultChannelGroup - "daily sessions this month" ->
--metrics sessions --dimensions date --days 30 - "top landing pages" ->
--metrics sessions,bounceRate --dimensions landingPage - "revenue by source" ->
--metrics totalRevenue,ecommercePurchases --dimensions sessionSourceMedium
- "show me traffic by channel" ->
-
Run the report. Find the script in order:
~/.config/data-arsenal/scripts/ga4-report(post-setup, primary)scripts/ga4-report(CWD is the repo)- If neither exists, tell the user to run
/ga4-setupfirst
if [ -x ~/.config/data-arsenal/scripts/ga4-report ]; then
~/.config/data-arsenal/scripts/ga4-report <property_id> --metrics <metrics> --dimensions <dims> --days <N> --limit <L>
elif [ -f scripts/ga4-report ]; then
scripts/ga4-report <property_id> --metrics <metrics> --dimensions <dims> --days <N> --limit <L>
else
echo "ERROR: Script not found. Run /ga4-setup first."
fi
- Present results with brief interpretation if the data warrants it.
Common Metrics
- Traffic: sessions, activeUsers, newUsers, totalUsers
- Engagement: engagementRate, bounceRate, averageSessionDuration, screenPageViews
- Conversions: conversions, eventCount
- E-commerce: totalRevenue, ecommercePurchases, purchaseRevenue
Common Dimensions
- Time: date, hour, dayOfWeek
- Source: sessionSourceMedium, sessionDefaultChannelGroup, sessionSource
- Content: landingPage, pagePath, pageTitle
- User: deviceCategory, country, city, userAgeBracket
- Events: eventName
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 52 lines · 11 tokens per session scan A 067f46ace8a3
ga4-report is a command published in the GitHub repository ivanovzlatan2/data-arsenal-v1 (5 stars, last pushed 5mo ago), licensed MIT. It adds 11 tokens to every session and 590 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.