Claude Code Plugins

Community-maintained marketplace

Feedback
27
0

Generate pivot tables from CSV/Excel with aggregations, filters, and automatic chart creation.

Install Skill

Shared

Installs to .agents/skills, used by Codex, Amp, Warp, Cursor, OpenCode, and more.

CodexAmp
Warp
CursorOpenCode
Cline
Gemini CLI
GitHub Copilot
Personal

Available across projects.

$npx skills-installer add @majiayu000/claude-skill-registry/pivot-table-generator --client shared
Project

Writes to .agents/skills.

$npx skills-installer add @majiayu000/claude-skill-registry/pivot-table-generator -p --client shared
Note: Review the skill instructions before using it.

SKILL.md

name pivot-table-generator
description Generate pivot tables from CSV/Excel with aggregations, filters, and automatic chart creation.

Pivot Table Generator

Create pivot tables with aggregations and visualizations.

Features

  • Multiple Aggregations: Sum, mean, count, min, max
  • Filtering: Filter data before pivoting
  • Grouping: Multi-level row/column grouping
  • Charts: Auto-generate pivot charts
  • Export: Excel, CSV, HTML output

CLI Usage

python pivot_table_generator.py --data sales.csv --rows region --columns product --values amount --agg sum

Dependencies

  • pandas>=2.0.0
  • numpy>=1.24.0
  • matplotlib>=3.7.0
  • openpyxl>=3.1.0