Agent Skills
› openai/openai-agents-js
› csv-workbench
csv-workbench
GitHub用于快速分析 /mnt/data 目录下的 CSV 文件,通过检查 schema 并执行 Python 脚本计算聚合统计量,返回包含具体数值和单位的简洁摘要。
Trigger Scenarios
用户请求分析表格数据
需要快速生成 CSV 文件的数值汇总
Install
npx skills add openai/openai-agents-js --skill csv-workbench -g -y
SKILL.md
Frontmatter
{
"name": "csv-workbench",
"description": "Analyze CSV files in \/mnt\/data and return concise numeric summaries."
}
CSV Workbench
Use this skill when the user asks for quick analysis of tabular data.
Workflow
- Inspect the CSV schema first (
head,python csv.DictReader, or both). - Compute requested aggregates with a short Python script.
- Return concise results with concrete numbers and units when available.
Constraints
- Prefer Python stdlib for portability.
- If data is missing or malformed, state assumptions clearly.
- Keep the final answer short and actionable.
Version History
- 13f68fa Current 2026-07-25 11:31


