process-data

Build step-based TypeScript pipelines that download, parse, clean, transform, and export Soliguide datasets as JSON.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/solinumasso/solikit --skill process-data
Or copy as Structured Prompt for Agent▌
Please help me install this Agent Skill.
Skill: process-data
Source: https://github.com/solinumasso/solikit/tree/main/.claude/skills/process-data
Command: npx skills add https://github.com/solinumasso/solikit --skill process-data

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Cette skill Ă©vite de bricoler manuellement des fichiers CSV et des extractions de donnĂ©es en te guidant vers un pipeline reproductible qui tĂ©lĂ©charge, nettoie, transforme et exporte des donnĂ©es prĂȘtes pour visualisation.

Core Features & Use Cases

  • Pipeline TypeScript en Ă©tapes : crĂ©er des scripts numĂ©rotĂ©s (download/parse/transform/export) pour traiter des donnĂ©es de bout en bout.
  • Sortie JSON systĂ©matique pour le dashboard : garantir que chaque Ă©tape Ă©crit un JSON exploitable par l’interface.
  • Nettoyage, enrichissement et scoring : nettoyer des champs, croiser des sources (Soliguide/FINESS), et calculer des mĂ©triques (qualitĂ©, complĂ©tude, agrĂ©gations).
  • Cas d’usage concrets : “tĂ©lĂ©charger depuis data.gouv”, transformer un CSV, exporter en JSON, ou “prĂ©parer les donnĂ©es pour le dashboard”.

Quick Start

Lance la skill process-data en dĂ©crivant ta source (fichier CSV/URL/API data.gouv) et ce que tu veux obtenir en sortie (JSON nettoyĂ©, croisĂ© et prĂȘt pour le dashboard).

Frequently Asked Questions about process-data

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is the best way to build a reproducible data pipeline for dashboard consumption?▌

A reproducible data pipeline systematically downloads, parses, cleans, and transforms raw datasets into dashboard-ready JSON. It uses numbered TypeScript scripts to ensure deterministic, idempotent outputs for each processing step.

How do I transform CSV files into clean JSON for a dashboard?▌

To transform CSV files into clean JSON, you parse the raw input, clean the fields, compute any required quality scores or aggregations, and export the result as a structured JSON file ready for dashboard integration.

Can I fetch and process public French datasets from data.gouv directly?▌

Yes, you can fetch public French datasets from data.gouv by including the URL or API source as input. The pipeline downloads the data, parses it, and prepares it for transformation and JSON export.

How does cross-referencing multiple data sources like Soliguide and FINESS work?▌

Cross-referencing data sources involves parsing multiple datasets, matching overlapping identifiers, enriching the primary data with external attributes, and computing completeness metrics before exporting the combined JSON.

Does the data pipeline require TypeScript for processing raw files?▌

Yes, the data pipeline requires TypeScript. It generates step-based numbered TypeScript scripts to handle flexible input sources, ensuring that data processing from raw files to output is deterministic and idempotent.

What are the limitations of using a deterministic JSON export pipeline?▌

Deterministic JSON export pipelines require idempotent behavior, meaning repeated executions produce identical outputs. They are not suited for real-time streaming data and require French interaction for setup and execution.