blast-prompt
Generate a complete build brief in BLAST format — Blueprint, Link, Architect, Stylize, Trigger — so a build agent can one-shot a high-quality build. Pulls the…
Convert a raw CSV into a structured, business-ready report using a 3-step framework — load + label, define rules, request structured deliverables. Trigger when the user says "csv to report", "report from this csv", "summarize this spreadsheet", "training log report", "compliance
$ npx -y skills add ZachArticulateV/designer-pro-and-seo --skill csv-to-report --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/csv-to-reportContext preview
The summary Claude sees to decide when to auto-load this skill.
Convert a raw CSV into a structured, business-ready report using a 3-step framework — load + label, define rules, request structured deliverables. Trigger when the user says "csv to report", "report from this csv", "summarize this spreadsheet", "training log report", "compliance
name: csv-to-report description: Convert a raw CSV into a structured, business-ready report using a 3-step framework — load + label, define rules, request structured deliverables. Trigger when the user says "csv to report", "report from this csv", "summarize this spreadsheet", "training log report", "compliance report", "turn this data into a report", or uploads a CSV and wants narrative output rather than raw numbers.
**Family:** content-and-data **Status:** Stable
Turn raw CSV data into a structured, narrative report. A small Python helper does the deterministic profiling/filtering/grouping; the skill adds the human layer — what the columns mean and what the business rules are.
The 3-step framework: **Load + label** → **Define rules** → **Request the structured deliverable**, then iterate (same data, new lenses). Common uses: training compliance, staff scheduling, billing audits, inventory snapshots.
1. **Profile the data mechanically:**
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/workflow/csv_to_report.py" --in <file.csv> --human # use `py` on Windows if python3 is absentReturns row/column counts, per-column type + fill rate + distinct values, numeric stats, and top categories — so labeling is grounded in real data. 2. **Load + label.** Confirm what each non-obvious column means (abbreviations, joined fields, date formats). Flag data-quality issues the profile reveals (blanks, mixed types, totals rows mixed into data rows). 3. **Define rules.** Capture explicit business rules ("annual training expires 365 days after Completion_Date"; "overdue = past expiration AND status != complete"). 4. **Slice as needed** using the helper's `--filter`, `--group-by`, and `--select` flags to answer specific questions deterministically. 5. **Render the deliverable** — table, grouped lists, narrative summary, or an exported sub-CSV — applying the business rules to the profiled data. 6. **Offer an iteration menu** — filter, group, export, re-summarize on the same data ("now only clinical staff", "now group by training type").
Output quality scales with input quality: the helper surfaces clean-CSV issues (inconsistent dates, merged cells, totals rows) so they're flagged before the report is generated. Data stays local — see `PRIVACY.md`.
A Claude Code plugin for the web-design + SEO workflow: research a niche, generate a coherent design system, write a complete build brief, build, run a pre-delivery QA gate, port the result into any CMS, and review on-page SEO.
Repo: ZachArticulateV/designer-pro-and-seo
Generate a complete build brief in BLAST format — Blueprint, Link, Architect, Stylize, Trigger — so a build agent can one-shot a high-quality build. Pulls the…
Generate cold-outreach openers, value-led follow-up sequences, niche-authority positioning, and a tool-import CSV with CAN-SPAM/GDPR/CASL compliance-checklist…
Draft long-form content (blog post, service page, landing page, guide) from a brief or outline — structured, on-intent, and originality-checked, ready for…
Write conversion-focused copy for a page or section — headlines, subheads, value propositions, CTAs, feature/benefit blocks, and microcopy — anchored to a…
Audits HTML against WCAG 2.2 — no-tools structural checks (alt text, heading order, form labels, lang, landmarks, skip link, viewport meta, token-based…
Generate distinctive, production-grade frontend UI code from a design system — starting from an on-brand, accessible, rendered HTML scaffold and elaborating…