安全扫描
OpenClaw
安全
high confidence该技能的代码和说明与其声明的用途(本地 Markdown/CSV/JSON/TSV 表格操作)一致,不请求任何密钥,不进行网络调用,也没有意外的安装行为。
评估建议
This 技能 应用ears to do exactly what it says: local table conversion and 格式化ting using a small pure-Python script. Before 安装ing or enabling it, review any file paths you give it (to avoid accidental overwrites) and optionally inspect the included scripts/table_maker.py (it's short and readable). Because it reads and writes files you specify, 运行 it on non-sensitive data or in a sandbox the first time if you have concerns. There are no network calls or secret 请求s in the code, so there is no obvious e...详细分析 ▾
✓ 用途与能力
The name/description (Markdown table creation, conversion, alignment, 排序ing, transpose) match the included Python script: all functions operate on Markdown/CSV/JSON/TSV and perform expected read/write/格式化 operations. No unrelated binaries or 凭证s are 请求ed.
✓ 指令范围
技能.md describes operations that cor响应 to command-line actions implemented in scripts/table_maker.py. The 运行time instructions and examples reference reading and writing files specified by the user (e.g., data.csv, README.md), which is 应用ropriate for a table 工具. There are no broad or vague directives to harvest 系统 状态 or collect extra 上下文.
✓ 安装机制
No 安装 spec is provided (instruction-only 技能) and the single included Python file has no external dependencies. Nothing is 下载ed from external URLs during 安装; the risk surface from 安装ation is minimal.
✓ 凭证需求
The 技能 请求s no 环境 variables, no 凭证s, and no config paths. The script only reads files the user names and writes 输出 files if 请求ed—proportional to the declared functionality.
✓ 持久化与权限
always is false and the 技能 does not modify other 技能s or 系统 设置tings. It performs file I/O only on files the user specifies; it does not persist 凭证s or alter 代理 configuration.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install markdown-table-maker
镜像加速npx clawhub@latest install markdown-table-maker --registry https://cn.longxiaskill.com 镜像可用
技能文档
📋 Markdown Table Maker 作者:林辉 | GitHub | MIT License | v1.0.0
秒级生成精美 Markdown 表格。从零创建、CSV/JSON/TSV 转换、对齐、排序、合并、转置——纯 Python 实现。
✨ 功能 Create — 用自然语言描述生成表格 Convert — CSV / JSON / TSV → Markdown 表格 Align — 左 / 中 / 右列对齐 Sort — 按任意列升/降序排序 Transpose — 行列互换 Merge — 左右或上下合并多表 Format — 统一空格,美化输出
🚀 用法 Create a table 创建含 Name、Age、City 三列的 Markdown 表格,并添加 3 行示例数据。
Convert CSV to Markdown 将 data.csv 转为 Markdown 表格,保存为 table.md。
Align columns 将 README.md 中的表格按 Name 左对齐、Age 右对齐、City 居中对齐。
Sort a table 按 Price 列降序排序 Markdown 表格。
Transpose 转置 Markdown 表格(行列互换)。
⚙️ 技术细节 Runtime: Python 3.6+ Dependencies: 零依赖(仅标准库) Input formats: Markdown、CSV、JSON(对象数组)、TSV Output: GitHub-Flavored Markdown 表格