Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

data-lakehouse数据湖屋

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

456

周安装

19

GitHub Stars

4

下载量

152
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:data-lakehouse(数据湖屋)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/data-lakehouse
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill data-lakehouse
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill data-lakehouse

简介

实现支持 ACID 事务的大数据存储架构,兼顾低成本存储与高并发查询。

  • 适用于 S3/Kafka 等大规模数据源接入,满足电商或 IoT 场景实时分析。
  • 推荐使用 Delta Lake 或 Apache Iceberg 作为底层表格式标准。
  • 设计阶段应定义清晰的读写分离策略,避免热点表争抢计算资源。
  • data-lakehouse 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

data-lakehouse

Purpose

This skill enables the design and implementation of data lakehouse architectures, combining data lakes with warehouse features for scalable big data storage and analytics. Use it to manage petabyte-scale data with ACID transactions, schema evolution, and optimized query performance on platforms like Delta Lake or Iceberg.

When to Use

  • When handling large-scale data ingestion from sources like S3 or Kafka, requiring both raw storage and structured querying.
  • For analytics workloads needing real-time updates, such as ETL pipelines in e-commerce or IoT data processing.
  • If you're integrating with Spark or Presto for SQL analytics on unstructured data.

Key Capabilities

  • Architecture Design: Generate blueprints for lakehouse setups, including partitioning strategies and metadata management (e.g., using Iceberg for table formats).
  • Data Ingestion: Support for batch and streaming ingestion with tools like Apache Spark, handling formats like Parquet or ORC.
  • Query Optimization: Implement caching and indexing for faster queries, such as creating Delta Lake tables with Z-order clustering.
  • Scalability: Auto-scale storage and compute resources via cloud APIs, e.g., AWS Glue for ETL jobs.
  • Security: Enforce row-level access controls using policies like AWS Lake Formation grants.

Usage Patterns

  • Pattern 1: For new lakehouse setup, invoke the skill to generate a configuration file, then use it to initialize storage. Example: Create a Delta Lake table from CSV data.
  • Pattern 2: In analytics workflows, use the skill to optimize queries by adding indexes, then execute via Spark SQL.
  • Pattern 3: For maintenance, periodically run checks for schema evolution and merge operations on existing tables.

Common Commands/API

Use the OpenClaw CLI or API for this skill. Authentication requires setting $DATA_LAKEHOUSE_API_KEY as an environment variable.

  • CLI Command: Initialize a lakehouse project: openclaw skill data-lakehouse init --project my-lakehouse --storage s3://my-bucket --engine delta This creates a basic configuration file with S3 bucket and Delta Lake engine.
  • API Endpoint: Create a table via POST request: curl -H "Authorization: Bearer $DATA_LAKEHOUSE_API_KEY" \ -d '{"table_name": "sales_data", "format": "parquet", "partition_by": ["date"]}' \ https://api.openclaw.ai/data-lakehouse/tables Response includes table metadata for immediate use.
  • Code Snippet: In Python, integrate with Spark: from pyspark.sql import SparkSession spark = SparkSession.builder.appName("lakehouse").getOrCreate() df = spark.read.format("delta").load("s3://my-bucket/sales_data") df.write.format("delta").mode("append").save("s3://my-bucket/sales_data") This appends data to a Delta table; ensure Spark is configured with AWS credentials.
  • Config Format: Use JSON for lakehouse configs, e.g.: {"storage": "s3://my-bucket", "engine": "iceberg", "auth": {"key": "$DATA_LAKEHOUSE_API_KEY"}} Load this via CLI: openclaw skill data-lakehouse apply --config path/to/config.json.

Integration Notes

  • With Other Skills: Link to "big-data" skills by passing outputs, e.g., pipe data from a Kafka ingestion skill into this one using Spark streaming.
  • External Tools: Integrate with AWS S3 by setting bucket policies; use --aws-region us-west-2 in CLI commands. For Spark, ensure dependencies like spark.delta are in your environment.
  • API Integration: When calling from other services, handle retries for rate limits; example: Use the same $DATA_LAKEHOUSE_API_KEY in chained API calls.
  • Dependency Management: Always specify versions, e.g., require Spark 3.0+ for Delta Lake compatibility.

Error Handling

  • Common Errors: Handle authentication failures by checking if $DATA_LAKEHOUSE_API_KEY is set; use os.environ.get('DATA_LAKEHOUSE_API_KEY') in scripts.
  • Prescriptive Steps: For storage access errors (e.g., S3 permissions), add try-except blocks: try: spark.read.format("delta").load("s3://my-bucket/data") except Exception as e: print(f"Error: {e}. Check bucket permissions and retry.") Retry transient errors like network issues with exponential backoff in API calls.
  • Debugging: Use CLI flag --verbose for detailed logs, e.g., openclaw skill data-lakehouse init --verbose. Validate configs with openclaw skill data-lakehouse validate --file config.json.

Concrete Usage Examples

  • Example 1: Building a sales analytics lakehouse: First, initialize: openclaw skill data-lakehouse init --project sales-ana --storage s3://sales-data. Then, ingest data: Use the API to create a table, and append via Spark as shown above. Finally, query with: spark.sql("SELECT * FROM sales_data WHERE date > '2023-01-01'").
  • Example 2: Optimizing an existing lakehouse for IoT data: Run: openclaw skill data-lakehouse optimize --table iot_metrics --add-index date. This adds an index; verify with a query snippet: df = spark.read.format("iceberg").load("s3://iot-bucket/metrics").filter(df.date > current_date()). Monitor performance post-optimization.

Graph Relationships

  • Related to: "big-data" (shares tags for data processing pipelines), "data-engineering" (cluster affiliation for ETL workflows).
  • Connected via: Tags like "data-lakehouse" for cross-skill queries, and "data-engineering" cluster for sequential task flows.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.91%
按下载量换算55

Claude

29.8%
按下载量换算45

Cursor

18.13%
按下载量换算28

Gemini CLI

8.29%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills