Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

agent-sheetAgent 表

Agent Skill

agent-sheet 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,353

周安装

257

GitHub Stars

2

下载量

1,994
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-sheet

简介

提供命令行电子表格工具,支持读写、导入导出及审阅表构建。

  • 适用于数据分析、报表生成等需结构化数据处理的任务。
  • 兼容主流格式,可直接在终端操作复杂表格逻辑。
  • 安装命令:openclaw skills install agent-sheet;需安装底层 CLI 工具链。
  • 注意大文件处理可能占用资源,建议分批操作避免卡顿。

SKILL.md

name
agent-sheet
description
shell-native spreadsheet CLI for agent work. Use it for workbook inspection, sheet/range reads, precise writes, import/export handoff, review-table construction, formula analysis, and bounded workbook-native scripting with verification.
metadata
openclaw
os
requires
bins
anyBins
install
package
agent-sheet@latest
bins
links
repository
https://github.com/dream-num/skills
documentation
https://github.com/dream-num/skills

agent-sheet

agent-sheet is a local spreadsheet CLI for agents. Prefer it when the task needs real workbook structure, formulas, sheet lifecycle, import/export handoff, or a safe shell roundtrip instead of plain CSV cleanup or ad-hoc xlsx library use.

Use it for

  • resolving a workbook and keeping the target explicit with --entry-id
  • inspecting workbook structure, sheets, ranges, formulas, and search hits
  • writing sparse cells, bounded ranges, anchored review tables, or formula fills
  • importing a local workbook, continuing edits, and exporting a final file
  • streaming workbook data through shell tools, then writing verified results back
  • using bounded script js only when built-in commands do not express the workbook change cleanly

Do not default to

  • reopening the workbook with a local workbook library for reads or writes that agent-sheet already covers
  • using shell transforms when a direct write cells, write range, write table, write fill, or sheet ... command is clearer
  • trusting metadata-only surfaces such as file info as proof of workbook structure
  • finishing after a write without a task-specific verification pass

First path

  1. Run playbooks/00-preflight.md.
  2. Resolve the workbook and keep using --entry-id.
  3. Choose the smallest matching command via references/command-selection-matrix.md.
  4. Verify with playbooks/15-verify.md before finishing.

Hard defaults

  • prefer entryId over unitId for local workbooks and imports
  • treat write range as a full bounded rectangle replacement
  • treat write table --sheet <name> as an A1-anchored table write with header semantics
  • verify shell roundtrips with structure plus sample rows, not row count alone
  • use sheet list or inspect workbook for sheet existence and handoff verification

Highest-signal gotchas

  • imported local entries can be healthy even when later file info shows unitId: null; keep operating on entryId
  • file info is metadata only; it does not prove sheet count, sheet names, or formula state
  • do not run init inside an already initialized workspace tree; nested workspace refusal is expected
  • non-English sheet names work, but quote the full A1 range string in the shell
  • shell pipelines can preserve the expected row count while still shifting headers or keys; verify the first rows and key columns after writeback

Read references/gotchas.md when the task looks routine but has import/handoff, shell roundtrip, or workspace ambiguity.

Task routing

TaskRead next
workspace root, CLI resolution, or workbook target is unclearplaybooks/00-preflight.md
inspect workbook state, extract data, search, or review formulasplaybooks/10-read-analyze.md
plan the smallest safe mutation pathreferences/command-selection-matrix.md
make data-visible edits or structural workbook changesplaybooks/20-write-safe.md
verify a mutation, shell roundtrip, or handoffplaybooks/15-verify.md
create, import, open, or export a local workbookplaybooks/30-file-lifecycle.md
stream workbook data through shell toolsreferences/shell-patterns.md
formatting, layout, or other built-in command gapsplaybooks/40-script-fallback.md
import/handoff, entryId targeting, file info, or shell verification edge casesreferences/gotchas.md

Output style

  • prefer bounded previews, file paths, or stream output over oversized inline dumps
  • use --to-stdout for shell pipelines
  • use --to-file --output <path> for large reusable extracts
  • when reporting success, include the verification surface you actually used

Ready-made assets

Use these before improvising shell snippets:

AssetUse when
examples/roundtrip-awk-write-table.mdbuilding a review sheet through shell roundtrip
examples/handoff-verify.mdexporting, importing, and proving handoff structure
examples/template-import-anchor-check.mdimporting a template workbook and checking anchor cells
scripts/verify_csv_preview.pycomparing header, head sample rows, and a key column
scripts/check_csv_cells.pyasserting anchor values or non-empty cells from a CSV snippet

Read next

Read only the file needed for the task:

FileUse when
playbooks/00-preflight.mdworkspace or workbook context is not yet resolved
playbooks/10-read-analyze.mdinspecting workbook state, extracting data, searching, or reviewing formulas
references/command-selection-matrix.mdpicking the smallest correct command before writing
playbooks/15-verify.mdproving a mutation or handoff actually succeeded
playbooks/20-write-safe.mdchoosing the smallest safe mutation path
playbooks/30-file-lifecycle.mdcreating, importing, opening, or exporting a local workbook
playbooks/40-script-fallback.mdbuilt-in commands cannot express the requested workbook change
references/shell-patterns.mdthe task is naturally a shell pipeline
references/gotchas.mdthe task involves common real-world failure modes
references/js-api-minimal.mdscript js is necessary and must stay tightly bounded
examples/roundtrip-awk-write-table.mdyou need a concrete shell roundtrip example
examples/handoff-verify.mdyou need a concrete export/import handoff example
examples/template-import-anchor-check.mdyou need a concrete non-English template import example

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.43%
按下载量换算1,684

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install agent-sheet 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills