Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

sheet-data-enrichment工作表数据丰富

Agent Skill

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

总安装

3,220

周安装

129

GitHub Stars

公开资料未说明

下载量

1,042
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sheet-data-enrichment(工作表数据丰富)
来源仓库:https://github.com/kylinr/sheet-data-enrichment
安装命令:
openclaw skills install sheet-data-enrichment
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install sheet-data-enrichment

简介

Sheet-data-enrichment 通过外部源填充电子表格缺失字段,丰富数据集。

  • 适用于 CSV/Excel 分析、指标计算和图表准备等数据处理任务。
  • 通过 clawhub 安装,安装命令为 openclaw skills install sheet-data-enrichment。
  • 需确保外部 API 可用性与数据字段映射准确性。
  • 建议对敏感信息进行脱敏后再写入表格。

SKILL.md

name
sheet-data-enrichment
description
Enrich spreadsheet data by fetching external sources (URLs, APIs) to fill missing columns, then aggregate results into summary sheets. Use when: (1) a spreadsheet has URLs/links in one column and you need to extract specific info (author, title, date, etc.) into another column, (2) batch-processing rows that require visiting web pages to scrape/extract data, (3) creating pivot/summary tables from enriched data (group-by, sum, count), (4) user says fill in, complete the table, extract from links, summarize by, aggregate, enrich spreadsheet, 补全表格, 汇总统计, 信息补齐. Works with Feishu Sheets, Google Sheets, or local CSV/Excel files.

Sheet Data Enrichment & Summarization

Workflow

Phase 1: Reconnaissance

  1. Read the full sheet (or specify range) to understand the schema
  2. Identify the source column (e.g., URLs/links) and target column (data to fill)
  3. Count empty rows in the target column — these are the work items
  4. Confirm the plan with the user before proceeding

Phase 2: Extraction

Process rows in batches. For each row with an empty target column:

  1. Classify the source before fetching:

- Regular article URL → web_fetch - SPA / JS-rendered page → browser automation - WeChat article (mp.weixin.qq.com) → browser (captcha may block web_fetch) - Social media (Weibo, Douyin, etc.) → browser or note as "no extractable data" - Dead link / paywall → flag for user

  1. Extract the target data from the fetched content:

- Search for the data in multiple locations (top, bottom, metadata) - Use targeted patterns (see references/extraction-patterns.md) - If ambiguous, flag for manual review rather than guessing

  1. Verify before writing (每篇先核实):

- Confirm the extracted value is correct before writing to the sheet - Cross-reference with known mappings if available - When batch-processing, verify a sample first, then apply patterns

Phase 3: Write-back

  1. Write confirmed values to the target column
  2. Always verify row alignment — read the row before writing to confirm the target cell matches the expected entry
  3. Use single-cell writes (G5:G5) not bare references (G5)
  4. For Feishu Sheets: range format must be sheetId!G5:G5

Phase 4: Summarization

When the user requests aggregation:

  1. Re-read all enriched sheets to capture any manual corrections
  2. Group by the requested dimensions (e.g., assignee → contributor → sum)
  3. Sort groups by total descending for readability
  4. Output to a new sheet/spreadsheet with headers + subtotals + grand total

Key Lessons (Extraction)

Where to find data on a web page

Data placement varies by source. Always check multiple locations:

PositionExample
Below title作者:张三 / By Jane Doe
End of article(记者 李四) / Reporter: John
Before timestamp王五 2026-03-18 14:00
Metadata line文|赵六 / Author: Sarah
Combined format采写:记者 孙七 编辑:周八

Never conclude "no data" after checking only the top of the page. Always check the end too.

When to use browser vs web_fetch

SignalTool
Static HTML, server-renderedweb_fetch (fast, cheap)
Returns empty/minimal contentSwitch to browser
URL contains mp.weixin.qq.comBrowser (WeChat captcha)
SPA framework (React/Vue/Angular)Browser
Baidu mini-program (smartapps.cn)Browser or find alternate URL
Social media embeds (Weibo, Douyin)Browser, but often no structured data

Reusable mappings

When the same source consistently maps to the same value across rows/sheets:

  1. Build a mapping table after confirming 2+ instances
  2. Apply mappings to future rows without re-fetching
  3. Always note the mapping source for audit

Common "no data" patterns

These formats typically have no individual attribution:

  • Flash news / wire alerts (e.g., "财联社电", "每经AI快讯")
  • Press releases / corporate announcements
  • Social media reposts without original attribution
  • Aggregated roundup articles

Mark these clearly (leave blank or use a placeholder like "/" per user preference).

Row Alignment Safety

Critical: Off-by-one errors are the #1 failure mode when writing to spreadsheets.

Before every write:

  1. Read the target row to verify the adjacent cells match expectations
  2. If processing multiple rows, re-read periodically to catch drift
  3. Never assume row N in your data maps to row N in the sheet — always verify

Feishu Sheets Specifics

  • Range format: sheetId!A1:B2 (not sheet name)
  • Single-cell write: sheetId!G5:G5 (not sheetId!G5)
  • Get sheet IDs via feishu_sheet action info
  • Write returns revision number — useful for tracking changes
  • Cannot create new sheet tabs in existing spreadsheet via API; create a new spreadsheet for summaries

Output Format

Summary sheets should include:

  • Headers: Group dimension, detail dimension, count, total
  • Subtotals: Per group
  • Grand total: Final row
  • Sorting: By total descending within each group, groups ordered by subtotal descending

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

92.07%
按下载量换算959

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills