business-analytics-reporter

business-analytics-reporter is a skill for Claude Code, Codex from ailabs-393/ai-labs-claude-skills. It costs 67 tokens per session (2,615 once invoked), scanned A, original, MIT.

A report generator that analyzes sales and revenue data stored in CSV files. CSV is a plain-text table format commonly exported from spreadsheets and business systems.

In plain words
What is it for?
Use it to inspect sales, revenue, transaction, product, or category data and produce statistical insights with improvement recommendations.
Why use it?
It helps turn raw business numbers into findings about weak areas and possible improvements.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to inspect sales, revenue, transaction, product, or category data and produce statistical insights with improvement recommendations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter
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.

Any agent
npx skills add ailabs-393/ai-labs-claude-skills --skill business-analytics-reporter
Clone the repo
git clone --depth 1 https://github.com/ailabs-393/ai-labs-claude-skills

Made for: Claude Code, Codex.

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 business-analytics-reporter

README.md
[![agentmods](https://agentmods.dev/badge/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter/github.svg)](https://agentmods.dev/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter)
Your own site
<a href="https://agentmods.dev/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter"><img src="https://agentmods.dev/badge/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter/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.

agentmods 80×15 button for business-analytics-reporter

Your own site · 80×15
<a href="https://agentmods.dev/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter"><img src="https://agentmods.dev/badge/skills/ailabs-393/ai-labs-claude-skills/business-analytics-reporter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,615 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 18 Mar 2026
  • Snyk warn 15 Feb 2026
How audits are shown
Origin original No closer match found in the catalogue.
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.1 $0.00067 $0.02615
Opus 5 $0.00034 $0.01307
Sonnet 5 $0.00013 $0.00523
Haiku 4.5 $0.00007 $0.00262

Measured 12d ago against content hash 5d262c8e650f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

business-analytics-reporter 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (index.js, scripts/analyze_business_data.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

packages/skills/business-analytics-reporter/SKILL.md · 354 lines

How it starts

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

Business Analytics Reporter

Overview

Generate comprehensive business performance reports that analyze sales and revenue data, identify areas where the business is lacking, interpret what the statistics indicate, and provide actionable improvement strategies. The skill uses data-driven analysis to detect weak areas and recommends specific strategies backed by business frameworks.

When to Use This Skill

Invoke this skill when users request:

  • "Analyze my business data and tell me where we're lacking"
  • "Generate a report on what areas need improvement"
  • "What do these sales numbers tell us about our business performance?"
  • "Create a business analysis report with improvement strategies"
  • "Identify weak areas in our revenue data"
  • "What strategies should we use to improve our business metrics?"

The skill expects CSV files containing business data (sales, revenue, transactions) with columns like dates, amounts, categories, or products.

Core Workflow

Step 1: Data Loading and Exploration

Start by understanding the data structure and what the user wants to analyze.

Ask clarifying questions if needed:

  • What specific metrics or areas should the analysis focus on?
  • Are there particular time periods or categories of interest?
  • Should the report include visualizations or focus on written analysis?

Load and explore the data:

import pandas as pd

# Load the CSV file
df = pd.read_csv('business_data.csv')

# Display basic information
print(f"Data shape: {df.shape}")
print(f"Columns: {df.columns.tolist()}")
print(f"Date range: {df['date'].min()} to {df['date'].max()}")
print(df.head())

Step 2: Run Automated Analysis

Use the bundled analysis script to generate comprehensive insights:

python scripts/analyze_business_data.py path/to/business_data.csv output_report.json

The script will:

  1. Automatically detect data structure (revenue columns, date columns, categories)
  2. Calculate statistical metrics (mean, median, growth rates, volatility)
  3. Identify trends and patterns
  4. Detect weak areas and underperforming segments
  5. Generate improvement strategies based on findings
  6. Output a structured JSON report

Read the full file on GitHub · 354 lines

Files

What ships with it

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

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. 12d ago First seen · 354 lines · 67 tokens per session scan A 5d262c8e650f

Subscribe to this mod's changes

business-analytics-reporter is a skill published in the GitHub repository ailabs-393/ai-labs-claude-skills (445 stars, last pushed 10mo ago), licensed MIT. It adds 67 tokens to every session and 2,615 once invoked, about $0.0003 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.