Очистка CRM-экспорта и сводка продаж по регионам

★ 8.2 · automation

weekly-crm-report is a Claude Code skill that cleans a weekly CRM CSV export, removes fully duplicate rows, and produces a structured regional sales summary as JSON. A single command — `python3 scripts/run_pipeline.py --input <export.csv> --output summary.json` — runs the entire pipeline: the input requires at least `region` and `amount` columns, and the output includes row counts before and after deduplication, per-region revenue totals, and a grand total. The skill activates on requests like "clean this CRM export", "weekly sales report", or "regional totals from this CSV", but not on general spreadsheet or analytics questions. Two edge cases matter: rows with a blank region are skipped during totalling but still counted in `rows_after_dedup`, and unparseable `amount` values silently default to `0.0` rather than raising an error.