Back to list
bobmatnyc

reporting-pipelines

by bobmatnyc

Curated collection of Claude Code skills for intelligent project development with progressive loading and toolchain detection

7🍴 2📅 Jan 22, 2026

SKILL.md


name: reporting-pipelines description: Reporting pipelines for CSV/JSON/Markdown exports with timestamped outputs, summaries, and post-processing. version: 1.0.0 category: universal author: Claude MPM Team license: MIT progressive_disclosure: entry_point: summary: "Generate CSV/JSON/markdown reports with timestamped filenames and summary outputs." when_to_use: "Building reporting flows, exporting analytics results, or standardizing CSV/JSON/markdown outputs across projects." quick_start: "1. Run the CLI that produces base data 2. Export CSV/JSON/markdown with timestamps 3. Save to reports/" tags:

  • reporting
  • csv
  • json
  • markdown
  • analytics

Reporting Pipelines

Overview

Your reporting pattern is consistent across repos: run a CLI or script that emits structured data, then export CSV/JSON/markdown reports with timestamped filenames into reports/ or tests/results/.

GitFlow Analytics Pattern

# Basic run
gitflow-analytics -c config.yaml --weeks 8 --output ./reports

# Explicit analyze + CSV
gitflow-analytics analyze -c config.yaml --weeks 12 --output ./reports --generate-csv

Outputs include CSV + markdown narrative reports with date suffixes.

EDGAR CSV Export Pattern

edgar/scripts/create_csv_reports.py reads a JSON results file and emits:

  • executive_compensation_<timestamp>.csv
  • top_25_executives_<timestamp>.csv
  • company_summary_<timestamp>.csv

This script uses pandas for sorting and percentile calculations.

Standard Pipeline Steps

  1. Collect base data (CLI or JSON artifacts)
  2. Normalize into rows/records
  3. Export CSV/JSON/markdown with timestamp suffixes
  4. Summarize key metrics in stdout
  5. Store outputs in reports/ or tests/results/

Naming Conventions

  • Use YYYYMMDD or YYYYMMDD_HHMMSS suffixes
  • Keep one output directory per repo (reports/ or tests/results/)
  • Prefer explicit prefixes (e.g., narrative_report_, comprehensive_export_)

Troubleshooting

  • Missing output: ensure output directory exists and is writable.
  • Large CSVs: filter or aggregate before export; keep summary CSVs for quick review.
  • universal/data/sec-edgar-pipeline
  • toolchains/universal/infrastructure/github-actions

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon