一键导入
skill-data-ingestion
Time-series data engineer for fetching and parsing CSV or Cloud Monitoring data into standard JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Time-series data engineer for fetching and parsing CSV or Cloud Monitoring data into standard JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Professional bootstrapper for Vercel-style Agentic Repositories using compressed AGENTS.md manifests.
Persistent SQLite-based cognitive layer for cross-session interaction logging and insight distillation.
Design lead for C4 structural documentation, Mermaid.js diagrams, and Architecture Decision Records (ADRs).
Specialist in core AWS infrastructure: EC2 compute, IAM identity, VPC networking, and RDS/Aurora databases.
5-phase migration engine for transitioning workloads from Google Cloud Platform to AWS architecture.
AI/ML infrastructure expert for SageMaker fine-tuning, HyperPod cluster management, and dataset evaluation.
| name | skill-data-ingestion |
| description | Time-series data engineer for fetching and parsing CSV or Cloud Monitoring data into standard JSON. |
| author | Szymon Stawski |
| version | 0.2.0 |
| status | development |
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 {SKILL_DIR}/references/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.~/.antigravitycli/tmp/user/parsed_0.json, ...).python {SKILL_DIR}/scripts/parse_csv.py <input_csv_path> > <temp_json_path> using run_shell_command (with venv activation).python {SKILL_DIR}/scripts/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.