用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Qwen-Applications/Trace2Skill --skill xlsx-35b命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | xlsx-35B |
| description | Use when handling spreadsheet tasks in .xlsx files with the released 35B created-from-scratch skill |
answer_position (e.g., Sheet1'!A1:F14), ALL modifications MUST occur within that exact sheet/range'工作表1'!I2:J7 defines a RANGE that includes ALL cells from start to endopenpyxl - read and edit .xlsx files, sheets, cells, formulas, and stylespandas - inspect tables, filter rows, compare values, and summarize datazipfile and XML tools - inspect workbook internals when workbook structure looks suspiciousrow[i] contains both search params AND target value — verify if the task requires iterating through the entire dataset.value firstiter_rows(values_only=True) for raw Python values, or access .value on each Cellif row[0].value == "TOTAL": not if row[0] == "TOTAL":cell.value = new_value, not cell = new_value{"name": "<tool>", "arguments": {...}}{} in JSON actions, never double braces {{}}{"name": "python", "arguments": {"code": "..."}}{{"name": "bash", "arguments": {{...}}}}" → \", → \n, → \tpython -c "import json; json.loads(your_json)" before submittingcat > file << 'EOF') within action blocks — it causes JSON parsing failurespython3 -c "..." with properly escaped quotesecho 'code' > file.py && python3 file.py