用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gemini-cli-extensions/sre --skill data-ingestion命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
🐉 [SRE] Discover and map GCP infrastructure architecture including compute, networking, storage, and service dependencies.
🐉 The primary entrypoint for investigating production outages, orchestrating SRE response, and mitigating incidents on Google Cloud Platform (GKE, Cloud Run, etc.). Start here when an incident occurs.
🐉 [SRE] Use when the user wants to set up Google Managed MCP (OneMCP) servers for their CLI environment. Automates enabling services, MCP servers, generating API keys, and configuring the MCP settings file for the active harness (Gemini, Antigravity, or Copilot CLI).
正在显示 SKILL.md
基于 SOC 职业分类
| name | data-ingestion |
| description | 🐉 Fetches and parses time-series data from various sources. |
| metadata | {"author":"Szymon Stawski + Gemini","version":"0.2.0","status":"draft"} |
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.