/SKILL.md
一个为 OpenClaw 开发的 Excel 文件读写技能,提供方便的 API 来读取和写入 Excel 文件,支持多种格式导入和模板转换。
npx skillsauth add taath-wyx/openclaw-skills-excel openclaw-skills-excelInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
一个为 OpenClaw 开发的 Excel 文件读写技能,提供方便的 API 来读取和写入 Excel 文件,支持多种格式导入和模板转换。
✨ 核心功能
🌟 高级功能
pip install -r requirements.txt
from src.excel_handler import ExcelHandler
import pandas as pd
# 创建数据
data = {
'Name': ['Alice', 'Bob', 'Charlie'],
'Age': [25, 30, 35],
'Department': ['Sales', 'IT', 'HR']
}
df = pd.DataFrame(data)
# 写入文件
handler = ExcelHandler()
handler.write_excel(df, 'output.xlsx', sheet_name='Employees')
from src.excel_handler import ExcelHandler
handler = ExcelHandler()
# 读取指定工作表
df = handler.read_excel('data.xlsx', sheet_name='Employees')
print(df)
# 读取所有工作表
all_sheets = handler.read_excel('data.xlsx', sheet_name=None)
from src.format_converter import DataFormatConverter
from src.template_engine import create_employee_template
from src.excel_handler import ExcelHandler
# 读取 CSV 文件
df = DataFormatConverter.read_csv('employees.csv')
# 使用预定义员工模板
template = create_employee_template()
# 转换数据(自动验证)
transformed_df = template.transform(df, validate=True)
# 写入 Excel
handler = ExcelHandler()
handler.write_excel(transformed_df, 'output.xlsx',
sheet_name=template.sheet_name)
handler.style_worksheet('output.xlsx')
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.