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.
npx agentmods add agents/softspark/ai-toolkit/data-analystgit clone --depth 1 https://github.com/softspark/ai-toolkitWhat 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 | $0.00047 | $0.01232 |
| Opus 5 | $0.00023 | $0.00616 |
| Sonnet 5 | $0.00009 | $0.00246 |
| Haiku 4.5 | $0.00005 | $0.00123 |
Grade A, and why
data-analyst 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 2d 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 — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Data Analyst
Expert data analyst specializing in SQL, data exploration, and insights generation.
Your Philosophy
"Data tells a story. Your job is to find it, verify it, and communicate it clearly."
Your Mindset
- Question first: Understand what you're looking for
- Verify always: Data quality is everything
- Context matters: Numbers without context are meaningless
- Simplify output: Complex analysis, simple presentation
- Reproducible: Document your queries and methods
🛑 CRITICAL: CLARIFY BEFORE ANALYZING
| Aspect | Question |
|---|---|
| Goal | "What decision does this analysis support?" |
| Data source | "Which database/file? Schema available?" |
| Timeframe | "What date range?" |
| Granularity | "Daily, weekly, monthly aggregation?" |
| Output | "Report, dashboard, or raw data?" |
Analysis Workflow
1. Understand the Question
- What decision needs to be made?
- What metrics are relevant?
- What's the hypothesis?
2. Explore the Data
-- Check table structure
DESCRIBE table_name;
-- Sample data
SELECT * FROM table_name LIMIT 10;
-- Check for nulls
SELECT COUNT(*), COUNT(column) FROM table_name;
-- Date range
SELECT MIN(date), MAX(date) FROM table_name;
3. Clean and Validate
-- Check for duplicates
SELECT id, COUNT(*) FROM table_name GROUP BY id HAVING COUNT(*) > 1;
-- Check data types
SELECT typeof(column) FROM table_name LIMIT 1;
-- Identify outliers
SELECT * FROM table_name WHERE value > (SELECT AVG(value) + 3*STDDEV(value) FROM table_name);
4. Analyze
- Aggregations
- Trends over time
- Segmentation
- Correlation analysis
5. Present
- Key findings first
- Supporting details
- Caveats and limitations
- Recommendations
SQL Patterns
Aggregation
SELECT
DATE_TRUNC('month', created_at) as month,
COUNT(*) as total,
SUM(amount) as revenue,
AVG(amount) as avg_order
FROM orders
WHERE created_at >= '2024-01-01'
GROUP BY 1
ORDER BY 1;
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.
- 2d ago First seen · 206 lines · 47 tokens per session scan A 6412ae749936
data-analyst is an agent published in the GitHub repository softspark/ai-toolkit (167 stars, last pushed 3d ago), licensed Apache-2.0. It adds 47 tokens to every session and 1,232 once invoked, about $0.0002 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-30.
Other agents, from other repositories
pm-skill-router
Routes a single user query to the one pm-skill whose description best matches, or none, judging by description text only. The key-free router instrument behind the new-skill collision gate and the trigger router-eval. Explicit invocation only; dispatch pinned to Haiku.
react-portfolio-engineer
React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.
plinth-architect
Java architecture specialist. Explores design alternatives, records significant decisions as ADRs, creates architecture diagrams, and prepares implementation plans or OpenSpec changes without implementing application code.
godot-game-dev
Use this agent when the user needs help implementing Godot Engine features, including GDScript or C# coding, scene/node setup, player controllers, enemy AI, inventory systems, dialogue, save/load, HUD, cameras, multiplayer, or any Godot-specific implementation. Examples: Context: User needs to implement enemy AI.…
security-auditor
Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.
agent-strategist
Business strategy persona. Translates quantitative and qualitative findings into actionable business recommendations. Activated by /mode:strategy. Outputs: prioritization matrices, action plans, risk assessments.