Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Cleans a weekly CRM export and produces a regional sales summary. Activates when the user asks to clean a CRM export, deduplicate sales rows, calculate regional totals, or generate a weekly sales report from a CSV.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 153% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -33% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -40% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -61% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 26% | 0% |
Turn a raw weekly CRM export (CSV) into a clean regional sales summary: drop duplicate rows, total revenue per region, and emit a structured JSON summary an agent can narrate or hand to a PDF/dashboard step.
This is a bundled example skill — small but real, and used to demonstrate the creator's validation, pipeline, and eval-rollout machinery end to end.
Activates on requests like "clean this CRM export", "weekly sales report", "regional totals from this CSV". Do not activate on general spreadsheet or analytics questions that don't involve a CRM export.
A CSV with at least region and amount columns (extra columns are ignored). Duplicate rows (identical across all columns) are removed before totalling.
One command produces the summary:
bashpython3 scripts/run_pipeline.py --input <export.csv> --output summary.json
Output JSON shape:
json{ "rows_in": 120, "rows_after_dedup": 118, "regions": {"West": 40210.5, "East": 38110.0}, "grand_total": 78320.5 }
Other measured skills in the registry, with their headline benchmark lift.