← 返回 Skills 市场
cutesxy

tabular data processing and analysis

作者 Table Intelligence Group · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ✓ 安全检测通过
197
总下载
10
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install table-skill
功能描述
端到端表格数据引擎:提供工业级表格预处理(拆分、清洗、表头合并、描述生成),并支持在受控前提下进行深度探索性分析、可视化与报告生成。
安全使用建议
This skill appears to be what it says: a Python-based table preprocessor and EDA helper that uses an OpenAI-compatible LLM for intelligent header merging and summaries. Before installing or running it, consider the following: - Treat OPENAI_API_KEY as sensitive: the skill will (by design) send headers/schema and sometimes sample rows to the configured LLM; do not enable LLM features on tables containing PII, financial data, credentials, or other sensitive content unless you accept remote exposure. Use the --no-abstract flag or disable merge_header when you want to avoid sending data to the remote LLM. - Dynamic code execution: the EDA step allows the agent to generate and run Python code. Run the skill in a sandboxed environment or isolated workspace, and review generated code before execution if possible to prevent accidental directory traversal or data exfiltration. - Use minimal-sending defaults: when you must use LLM features, prefer sending only schema, aggregated stats, or redacted samples. The skill's docs recommend these practices — enforce them in agent policies or by disabling LLM features when privacy is required. - Dependency installation: install requirements in a virtual environment and audit dependencies (openai, pandas, matplotlib). The repo does not perform external downloads beyond pip package installation. If you want a lower-risk setup: run the non-LLM parts (split/clean/transfer) locally and keep OPENAI_API_KEY unset; alternatively configure a private/enterprise LLM endpoint (OPENAI_BASE_URL) with strict monitoring and token scope limits. If you need additional assurance, request a code review focusing on any added/truncated files (the listing shows some files omitted) and enable runtime logging to observe which files are read and what is sent to the LLM.
功能分析
Type: OpenClaw Skill Name: table-skill Version: 1.0.3 The table-skill bundle provides a comprehensive suite for industrial-grade table preprocessing, including splitting, cleaning, and metadata generation. While the skill instructions (SKILL.md and 05_eda_mining_skill.md) empower the AI agent to dynamically generate and execute Python code for Exploratory Data Analysis (EDA) and visualization, they include extensive and explicit safety guardrails. These instructions command the agent to follow the 'Minimum Necessary Principle,' avoid sending sensitive data (like PII or credentials) to LLMs, and restrict code execution strictly to data analysis tasks. The code utilizes standard libraries (pandas, matplotlib, openai) and lacks any indicators of malicious intent, such as data exfiltration, persistence mechanisms, or obfuscation.
能力评估
Purpose & Capability
Name/description match the code and runtime instructions. Requiring python and OPENAI_API_KEY is consistent with the skill's documented LLM-powered features (merge_header, describe_table, some EDA/report generation). No unrelated credentials or binaries are requested.
Instruction Scope
SKILL.md and the scripts allow reading workspace CSV/XLSX files and will, when LLM features are enabled, send table headers/schema and small sample rows to the configured OpenAI-compatible service. The SKILL.md documents constraints (minimal-send, sensitive-data defaults, --no-abstract flag) but the skill also allows the Agent to dynamically generate and execute Python for EDA — this grants the agent a broad runtime capability that could access other files or be misused if not controlled. The instructions do not direct the agent to read unrelated credentials or system config, but dynamic code execution is a notable surface to monitor.
Install Mechanism
No remote download/install spec in the registry; packaged as code + requirements.txt. Dependencies are standard (pandas, openai, matplotlib, etc.). Installing via pip -r requirements.txt is expected and proportional; there are no URLs or extract steps that would raise high install-risk flags.
Credentials
Only OPENAI_API_KEY is declared as required and is used by the LLM client. Optional OPENAI_BASE_URL and OPENAI_MODEL are referenced in docs/code but not required. No unrelated secrets or config paths are requested. The code explicitly reads the API key from env and will raise an error if missing — consistent with declared primary credential.
Persistence & Privilege
Skill does not request always:true, does not claim persistent system-wide modifications, and does not require access to other skills' config. It runs as an on-demand skill and writes only output files (cleaned CSV, description JSON) in specified output directories.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install table-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /table-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
No code or logic changes detected. Version bump for maintenance and path reference only. - Updated all example Python import paths and CLI calls to use the new version directory (from 1.0.2 to 1.0.3) - No functional or documentation changes beyond version number and directory references - Maintains backward compatibility and usage patterns
v1.0.2
**Major update: Enhanced description, usage boundaries, and security notes.** - Clarified and expanded documentation on privacy risks, LLM data transfer, and responsible usage principles. - Adjusted required environment variables: only `OPENAI_API_KEY` is now mandatory; others are optional. - Updated skill description and purpose for better alignment with actual functionality and script scope. - Added extensive sections on workspace data permissions, EDA execution boundaries, and output de-identification. - No changes to APIs, commands, or workflows; all usage samples updated to version 1.0.2.
v1.0.1
- Added requirements.txt to specify Python package dependencies. - Updated documentation to instruct users to install required dependencies via pip before use.
v1.0.0
- 首次发布:table-skill v1.0.0 提供端到端表格数据的预处理与分析能力。 - 支持表格智能拆分、清洗、复杂表头合并(需 OpenAI 环境)、详细描述生成等多项原子技能。 - 明确区分每个子技能的命令行及 Python API 用法,全部适配 OpenClaw Agent 执行。 - 针对深度 EDA 与绘图,规范 Agent 需自动动态编写分析与可视化代码,输出现代化 Web 报告。 - 完整流程及返回格式详尽标准化,便于多场景自动化集成。
元数据
Slug table-skill
版本 1.0.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

tabular data processing and analysis 是什么?

端到端表格数据引擎:提供工业级表格预处理(拆分、清洗、表头合并、描述生成),并支持在受控前提下进行深度探索性分析、可视化与报告生成。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 197 次。

如何安装 tabular data processing and analysis?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install table-skill」即可一键安装,无需额外配置。

tabular data processing and analysis 是免费的吗?

是的,tabular data processing and analysis 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

tabular data processing and analysis 支持哪些平台?

tabular data processing and analysis 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 tabular data processing and analysis?

由 Table Intelligence Group(@cutesxy)开发并维护,当前版本 v1.0.3。

💬 留言讨论