fix: add Script Path Rule to docx/pptx/xlsx skills (#14)

## Summary

- 为 docx/pptx/xlsx 三个技能的 SKILL.md 和 SKILL.zh-CN.md 添加"脚本路径规则"章节
- 告知 Agent 在执行技能自带脚本时必须使用 `<skill-dir>/` 前缀,因为 Agent 工作目录是用户项目目录而非技能目录
- 更新 en-US 块的 `source_hash`(内容已变更)
- 将 en-US 标记为 `translated_by: human`,跳过 CI 自动翻译

## Test plan

- [ ] 在 dev 环境验证 docx/pptx/xlsx 技能执行脚本时路径正确
- [ ] CI i18n-validate 通过
- [ ] CI i18n-auto-translate 跳过(translated_by: human)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-13 20:25:09 +08:00
committed by GitHub
parent dfd0cb62cf
commit b8af171fcc
6 changed files with 91 additions and 12 deletions

View File

@@ -40,7 +40,7 @@ metadata:
description: >-
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved. Use when 用户提到 Excel、 电子表格、xlsx、表格处理、公式计算、数据清洗、图表、CSV导入导出。
body: ./SKILL.zh-CN.md
source_hash: sha256:de1660781d23798b
source_hash: sha256:17c76a78ed03d451
translated_by: human
en-US:
name: Spreadsheet Processing
@@ -48,9 +48,8 @@ metadata:
description: >-
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved. Use when the user mentions Excel, spreadsheets, xlsx, table processing, formula computation, data cleaning, charts, or CSV import/export.
body: ./SKILL.md
source_hash: sha256:de1660781d23798b
translated_by: ai:claude-opus-4-7
translated_at: '2026-05-03'
source_hash: sha256:17c76a78ed03d451
translated_by: human
market:
icon: >-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0
@@ -93,6 +92,19 @@ xlsx is a **Procedural Skill** that provides full processing capabilities for Ex
## L2: Detailed Specification
### Script Path Rule (mandatory)
The Python scripts bundled with this skill live inside the skill installation directory. You **MUST use full paths** when invoking them — never use bare relative paths.
The skill directory is provided by the `<skill-dir>` tag in the context. Prefix all `scripts/` commands accordingly:
```bash
python "<skill-dir>/scripts/recalc.py" output.xlsx
python "<skill-dir>/scripts/recalc.py" output.xlsx 30
```
**NEVER** run `python scripts/recalc.py` directly — that relative path does not exist in the user's working directory.
## Prerequisites
### Python 3 (required)

View File

@@ -57,6 +57,19 @@ python3 -c "import openpyxl; import pandas" 2>/dev/null || echo "MISSING"
# Requirements for Outputs
### 脚本路径规则(强制)
本技能自带的 Python 脚本位于技能安装目录内。执行时**必须使用完整路径**,不能使用相对路径。
技能目录由上下文中的 `<skill-dir>` 标签提供。所有 `scripts/` 开头的命令都应拼接为:
```bash
python "<skill-dir>/scripts/recalc.py" output.xlsx
python "<skill-dir>/scripts/recalc.py" output.xlsx 30
```
**禁止**直接执行 `python scripts/recalc.py`——该相对路径在用户工作目录下不存在。
## Output Rule
When you create or modify a .xlsx file, you **MUST** tell the user the absolute path of the output file in your response. Example: "文件已保存到:`/path/to/output.xlsx`"