From sre-extension
Fetches and parses time-series data from CSV files into standardized JSON format for downstream consumption.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sre-extension:data-ingestionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill is responsible for fetching and converting time-series data from different sources into a standardized JSON format for other skills to consume.
This skill is responsible for fetching and converting time-series data from different sources into a standardized JSON format for other skills to consume.
Inputs:
source_type: String indicating the data source (e.g., "csv", "cloud_monitoring").source_details: A dictionary or list containing the necessary information to access the data source.
source_type: "csv": A list of file paths.Output:
A JSON string in the standardized format (see README.md for details).
Workflow:
source_type and source_details are provided.source_type:
source_type is "csv":
source_details is a list of file paths.~/.gemini/tmp/user/parsed_0.json, ...).python ./skills/data-ingestion/parse_csv.py <input_csv_path> > <temp_json_path> using run_shell_command (with venv activation).python ./skills/data-ingestion/merge_timeseries.py <temp_json_path_1> <temp_json_path_2> ... using run_shell_command (with venv activation).merge_timeseries.py as the final result.source_type is not supported, return an error message.npx claudepluginhub szymonst/sre --plugin sre-extension2plugins reuse this skill
First indexed Jun 3, 2026
Fetches and parses time-series data from CSV files into standardized JSON format for downstream consumption.
Parse, transform, clean, and analyze CSV files: auto-detect formats, filter/sort/merge/pivot, generate stats/outliers, with Python (pandas) and JavaScript examples.
Process, transform, and analyze tabular data (CSV, TSV, JSON) using standard command-line tools and Python. Handles filtering, joining, aggregating, deduplicating, and summary reports.