/business-analytics-reporter
This skill should be used when analyzing business sales and revenue data from CSV files to identify weak areas, generate statistical insights, and provide strategic improvement recommendations. Use when the user requests a business performance report, asks to analyze sales data,
$ npx -y skills add ailabs-393/ai-labs-claude-skills --skill business-analytics-reporter --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/business-analytics-reporter
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when analyzing business sales and revenue data from CSV files to identify weak areas, generate statistical insights, and provide strategic improvement recommendations. Use when the user requests a business performance report, asks to analyze sales data,
SKILL.md
business-analytics-reporter.SKILL.mdname: business-analytics-reporter
description: This skill should be used when analyzing business sales and revenue data from CSV files to identify weak areas, generate statistical insights, and provide strategic improvement recommendations. Use when the user requests a business performance report, asks to analyze sales data, wants to identify areas of weakness, or needs recommendations on business improvement strategies.
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
**Output structure:**
{
"metadata": {...},
"findings": {
"basic_statistics": {...},
"trend_analysis": {...},
"category_analysis": {...},
"variability": {...}
},
"weak_areas": [...],
"improvement_strategies": [...]
}Step 3: Interpret the Analysis Results
Read the generated JSON report and interpret the findings for the user in plain language.
**Focus on:** 1. **Current State**: What the data shows about business performance 2. **Weak Areas**: Specific problems identified with severity levels 3. **Root Causes**: Why these issues exist (use business frameworks from references/) 4. **Impact**: What these weaknesses mean for the business
**Example interpretation:**
Based on the analysis of your sales data from January to December 2024:
Current State:
- Total revenue: $1.2M with average monthly revenue of $100K
- Average growth rate: -3.5% indicating declining performance
- Revenue stability: High volatility (CV: 58%) suggesting inconsistent performance
Weak Areas Identified:
1. Revenue Growth (High Severity): Negative average growth rate of -3.5%
2. Performance Consistency (Medium Severity): 45% of periods show declining performance
3. Category Performance (Medium Severity): 4 underperforming categories identified
Step 4: Generate Detailed Recommendations
Consult the business frameworks reference to provide strategic recommendations:
**Load business frameworks for context:** Refer to `references/business_frameworks.md` for:
- Revenue growth strategies (market penetration, product development, etc.)
- Operational excellence frameworks
- Customer-centric strategies
- Pricing strategy frameworks
- Common weak area solutions
**Structure recommendations as:**
For each identified weak area, provide: 1. **Strategic Initiative Name**: Clear, actionable program name 2. **Objective**: What this strategy aims to achieve 3. **Key Actions**: 3-5 specific, prioritized steps 4. **Expected Impact**: High/Medium/Low 5. **Timeline**: Realistic implementation timeframe 6. **Success Metrics**: How to measure improvement
**Example recommendation:**
Strategy: Revenue Acceleration Program
Area: Revenue Growth
Objective: Reverse negative growth trend and achieve 10%+ monthly growth
Key Actions:
1. Implement aggressive customer acquisition campaigns
2. Review and optimize pricing strategy
3. Launch upselling and cross-selling initiatives
4. Expand into new market segments or geographies
5. Accelerate product development and innovation
Expected Impact: High
Timeline: 3-6 months
Success Metrics: Monthly revenue growth rate, new customer acquisition, ARPU increase
Step 5: Create Visualizations (Optional)
If requested, create interactive visualizations using Plotly to illustrate findings:
**Consult visualization guide:** Refer to `references/visualization_guide.md` for:
- Recommended chart types for different analyses
- Code examples for creating charts
- Best practices for business dashboards
**Common visualizations to create:** 1. **Revenue Trend Chart**: Line chart showing revenue over time with growth rate overlay 2. **Category Performance**: Bar chart sorted by revenue contribution 3. **Volatility Analysis**: Box plot or standard deviation visualization 4. **Weak Areas Heatmap**: Visual representation of severity and impact
**Example code for revenue
Read more
name: business-analytics-reporter description: This skill should be used when analyzing business sales and revenue data from CSV files to identify weak areas, generate statistical insights, and provide strategic improvement recommendations. Use when the user requests a business performance report, asks to analyze sales data, wants to identify areas of weakness, or needs recommendations on business improvement strategies.
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
**Output structure:**
{
"metadata": {...},
"findings": {
"basic_statistics": {...},
"trend_analysis": {...},
"category_analysis": {...},
"variability": {...}
},
"weak_areas": [...],
"improvement_strategies": [...]
}Step 3: Interpret the Analysis Results
Read the generated JSON report and interpret the findings for the user in plain language.
**Focus on:** 1. **Current State**: What the data shows about business performance 2. **Weak Areas**: Specific problems identified with severity levels 3. **Root Causes**: Why these issues exist (use business frameworks from references/) 4. **Impact**: What these weaknesses mean for the business
**Example interpretation:**
Based on the analysis of your sales data from January to December 2024: Current State: - Total revenue: $1.2M with average monthly revenue of $100K - Average growth rate: -3.5% indicating declining performance - Revenue stability: High volatility (CV: 58%) suggesting inconsistent performance Weak Areas Identified: 1. Revenue Growth (High Severity): Negative average growth rate of -3.5% 2. Performance Consistency (Medium Severity): 45% of periods show declining performance 3. Category Performance (Medium Severity): 4 underperforming categories identified
Step 4: Generate Detailed Recommendations
Consult the business frameworks reference to provide strategic recommendations:
**Load business frameworks for context:** Refer to `references/business_frameworks.md` for:
- Revenue growth strategies (market penetration, product development, etc.)
- Operational excellence frameworks
- Customer-centric strategies
- Pricing strategy frameworks
- Common weak area solutions
**Structure recommendations as:**
For each identified weak area, provide: 1. **Strategic Initiative Name**: Clear, actionable program name 2. **Objective**: What this strategy aims to achieve 3. **Key Actions**: 3-5 specific, prioritized steps 4. **Expected Impact**: High/Medium/Low 5. **Timeline**: Realistic implementation timeframe 6. **Success Metrics**: How to measure improvement
**Example recommendation:**
Strategy: Revenue Acceleration Program Area: Revenue Growth Objective: Reverse negative growth trend and achieve 10%+ monthly growth Key Actions: 1. Implement aggressive customer acquisition campaigns 2. Review and optimize pricing strategy 3. Launch upselling and cross-selling initiatives 4. Expand into new market segments or geographies 5. Accelerate product development and innovation Expected Impact: High Timeline: 3-6 months Success Metrics: Monthly revenue growth rate, new customer acquisition, ARPU increase
Step 5: Create Visualizations (Optional)
If requested, create interactive visualizations using Plotly to illustrate findings:
**Consult visualization guide:** Refer to `references/visualization_guide.md` for:
- Recommended chart types for different analyses
- Code examples for creating charts
- Best practices for business dashboards
**Common visualizations to create:** 1. **Revenue Trend Chart**: Line chart showing revenue over time with growth rate overlay 2. **Category Performance**: Bar chart sorted by revenue contribution 3. **Volatility Analysis**: Box plot or standard deviation visualization 4. **Weak Areas Heatmap**: Visual representation of severity and impact
**Example code for revenue
🧠 A collection of reusable "skills" for Claude AI and developer tooling. Each skill is a focused, modular package that brings automation to your dev workflows — from SEO analysis to document parsing, CI/CD generation, Docker automation, and more.
Repo: ailabs-393/ai-labs-claude-skills
Other skills on ai-labs-claude-skills.
- /brand-analyzer
This skill should be used when the user requests brand analysis, brand guidelines creation, brand audits, or establishing brand identity and consistency standards. It provides comprehensive frameworks for analyzing brand elements and creating actionable brand guidelines based on
Open skill - /business-document-generator
This skill should be used when the user requests to create professional business documents (proposals, business plans, or budgets) from templates. It provides PDF templates and a Python script for generating filled documents from user data.
Open skill - /cicd-pipeline-generator
This skill should be used when creating or configuring CI/CD pipeline files for automated testing, building, and deployment. Use this for generating GitHub Actions workflows, GitLab CI configs, CircleCI configs, or other CI/CD platform configurations. Ideal for setting up
Open skill - /codebase-documenter
This skill should be used when writing documentation for codebases, including README files, architecture documentation, code comments, and API documentation. Use this skill when users request help documenting their code, creating getting-started guides, explaining project
Open skill - /csv-data-visualizer
This skill should be used when working with CSV files to create interactive data visualizations, generate statistical plots, analyze data distributions, create dashboards, or perform automatic data profiling. It provides comprehensive tools for exploratory data analysis using
Open skill - /data-analyst
This skill should be used when analyzing CSV datasets, handling missing values through intelligent imputation, and creating interactive dashboards to visualize data trends. Use this skill for tasks involving data quality assessment, automated missing value detection and filling,
Open skill

