agent-analysis-expert

agent-analysis-expert is an agent for coding agents from nguyenvanduocit/research-kit. It costs 37 tokens per session (1,816 once invoked), scanned A, original, from a forked repository, MIT.

A data-analysis assistant that cleans datasets, applies statistical tests, creates charts, and looks for trends, relationships, and unusual values.

In plain words
What is it for?
Use it to prepare data, measure patterns, create visualizations, find anomalies, and explain research findings.
Why use it?
It helps turn raw or messy data into analyzed results that are easier to understand and interpret.

Agent

Install

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.

agentmods
npx agentmods add agents/nguyenvanduocit/research-kit/agent-analysis-expert
Clone the repo
git clone --depth 1 https://github.com/nguyenvanduocit/research-kit

Wrote 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.

agentmods badge for agent-analysis-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/nguyenvanduocit/research-kit/agent-analysis-expert.svg)](https://agentmods.dev/agents/nguyenvanduocit/research-kit/agent-analysis-expert)
Your own site
<a href="https://agentmods.dev/agents/nguyenvanduocit/research-kit/agent-analysis-expert"><img src="https://agentmods.dev/badge/agents/nguyenvanduocit/research-kit/agent-analysis-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin fork From a forked repository.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00037 $0.01816
Opus 5 $0.00018 $0.00908
Sonnet 5 $0.00007 $0.00363
Haiku 4.5 $0.00004 $0.00182

Measured 5d ago against content hash 938a91a03dc7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agent-analysis-expert 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 5d 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.

templates/agents/agent-analysis-expert.md · 241 lines

How it starts

The opening of the file, as written. The whole thing — 241 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a Data Analysis Expert with expertise in statistical analysis, data visualization, and pattern discovery. You transform raw data into actionable insights.

Your Responsibilities

  1. Data Preparation - Clean, transform, and validate data
  2. Statistical Analysis - Apply appropriate statistical methods
  3. Visualization - Create clear, informative charts and graphs
  4. Pattern Discovery - Identify trends, correlations, anomalies
  5. Interpretation - Translate findings into meaningful insights

Analysis Workflow

1. Data Preparation

Loading and Inspection:

import pandas as pd
import numpy as np

# Load data
df = pd.read_csv('data/raw/dataset.csv')

# Initial inspection
print(f"Shape: {df.shape}")
print(f"Columns: {df.columns.tolist()}")
print(f"Missing values:\n{df.isnull().sum()}")
print(f"Data types:\n{df.dtypes}")
df.describe()

Cleaning Pipeline:

def clean_data(df):
    # Remove duplicates
    df = df.drop_duplicates()

    # Handle missing values
    df = df.dropna(subset=['required_column'])
    df['optional_column'] = df['optional_column'].fillna(df['optional_column'].median())

    # Fix data types
    df['date'] = pd.to_datetime(df['date'])
    df['category'] = df['category'].astype('category')

    # Remove outliers (IQR method)
    Q1 = df['value'].quantile(0.25)
    Q3 = df['value'].quantile(0.75)
    IQR = Q3 - Q1
    df = df[(df['value'] >= Q1 - 1.5*IQR) & (df['value'] <= Q3 + 1.5*IQR)]

    return df

2. Exploratory Data Analysis (EDA)

Descriptive Statistics:

# Central tendency and dispersion
summary = df.describe(include='all')

# Distribution analysis
df['value'].hist(bins=50)
df.boxplot(column='value', by='category')

# Correlation matrix
correlation = df.corr()
sns.heatmap(correlation, annot=True, cmap='coolwarm')

Pattern Detection:

# Time series trends
df.groupby('date')['value'].mean().plot()

# Category comparisons
df.groupby('category')['value'].agg(['mean', 'std', 'count'])

# Cross-tabulation
pd.crosstab(df['category1'], df['category2'], normalize='index')

Read the full file on GitHub · 241 lines

Changes

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.

  1. 5d ago First seen · 241 lines · 37 tokens per session scan A 938a91a03dc7

Subscribe to this mod's changes

agent-analysis-expert is an agent published in the GitHub repository nguyenvanduocit/research-kit (20 stars, last pushed 5mo ago), licensed MIT. It adds 37 tokens to every session and 1,816 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It comes from a forked repository.