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 skills/librefang/librefang-registry/analyticsnpx skills add librefang/librefang-registry --skill analyticsgit clone --depth 1 https://github.com/librefang/librefang-registryWhat 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.00025 | $0.09787 |
| Opus 5 | $0.00013 | $0.04894 |
| Sonnet 5 | $0.00005 | $0.01957 |
| Haiku 4.5 | $0.00003 | $0.00979 |
Grade A, and why
analytics-hand-skill 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.
This is a copy
100% identical to analytics-hand-skill — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 1,039 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Data Analytics Expert Knowledge
pandas Quick Reference
Data Loading
import pandas as pd
# CSV
df = pd.read_csv('data.csv')
df = pd.read_csv('data.csv', parse_dates=['date_col'], index_col='id')
# JSON
df = pd.read_json('data.json')
df = pd.read_json('data.json', orient='records')
# Excel
df = pd.read_excel('data.xlsx', sheet_name='Sheet1')
# From dict
df = pd.DataFrame({'col1': [1, 2, 3], 'col2': ['a', 'b', 'c']})
Data Inspection
df.shape # (rows, columns)
df.dtypes # Column types
df.info() # Summary including memory usage
df.describe() # Statistical summary
df.head(10) # First 10 rows
df.isnull().sum() # Missing values per column
df.duplicated().sum() # Number of duplicate rows
df.nunique() # Unique values per column
Data Cleaning
# Handle missing values
df.dropna() # Drop rows with any NaN
df.fillna(0) # Fill NaN with 0
df.fillna(df.mean()) # Fill with column means
df['col'].interpolate() # Interpolate missing values
# Remove duplicates
df.drop_duplicates()
df.drop_duplicates(subset=['col1', 'col2'])
# Type conversion
df['col'] = df['col'].astype(int)
df['date'] = pd.to_datetime(df['date'])
df['cat'] = df['cat'].astype('category')
# Outlier removal (IQR method)
Q1 = df['col'].quantile(0.25)
Q3 = df['col'].quantile(0.75)
IQR = Q3 - Q1
df = df[(df['col'] >= Q1 - 1.5*IQR) & (df['col'] <= Q3 + 1.5*IQR)]
Aggregation & Grouping
# Group by
df.groupby('category').agg({'value': ['mean', 'sum', 'count']})
# Pivot table
pd.pivot_table(df, values='value', index='row_cat', columns='col_cat', aggfunc='mean')
# Cross tabulation
pd.crosstab(df['cat1'], df['cat2'])
# Rolling statistics
df['rolling_mean'] = df['value'].rolling(window=7).mean()
# Percentage change
df['pct_change'] = df['value'].pct_change()
Time Series
# Set datetime index
df.set_index('date', inplace=True)
# Resample
df.resample('W').mean() # Weekly average
df.resample('M').sum() # Monthly sum
df.resample('Q').count() # Quarterly count
# Date range
pd.date_range(start='2025-01-01', periods=30, freq='D')
# Shift/Lag
df['prev_value'] = df['value'].shift(1)
df['next_value'] = df['value'].shift(-1)
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 1,039 lines · 25 tokens per session scan A 59e95c235cf6
analytics-hand-skill is a skill published in the GitHub repository librefang/librefang-registry (11 stars, last pushed 8d ago), licensed MIT. It adds 25 tokens to every session and 9,787 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to analytics-hand-skill, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
agent-loop
Production Claude agent loop — Session/Harness/Registry/Tool abstraction, DRYRUN safety guard, APScheduler integration, dead-letter error handling, tool registry, and observability hooks for autonomous agent systems.
aatmf-t10-confidentiality-breach
AATMF T10 — Integrity & Confidentiality Breach. System prompt extraction, training-data extraction, model-weight leakage, private-key recovery.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.
sidewinder-rattlesnake
Adversary-emulation profile for SideWinder (G0121 / Rattlesnake / T-APT-04 / Razor Tiger), India's suspected state-sponsored cyber-espionage actor.
lazarus-group
Adversary-emulation profile for Lazarus Group (G0032, aka Hidden Cobra / Diamond Sleet / Labyrinth Chollima), a North Korean RGB-linked actor conducting espionage, destructive, and financially motivated operations.
memory
Use when the user asks to remember, recall, forget, update, search, or inspect durable OpenSquilla memory, including profile facts in USER.md and long-term notes in MEMORY.md or memory//.md.