office-combo
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMicrosoft Office 全功能支持
Full-featured Microsoft Office Support
本技能提供 Microsoft Office 文件处理能力,采用渐进式引入机制。
This skill provides Microsoft Office file processing capabilities with a progressive introduction mechanism.
支持的格式
Supported Formats
- Excel (.xlsx, .xlsm, .csv, .tsv) - 表格创建、编辑、数据分析
- PowerPoint (.pptx) - 演示文稿创建、编辑、设计
- PDF (.pdf) - 文档提取、合并、表单填写
- Word (.docx) - 文档创建、编辑、修订跟踪
- Excel (.xlsx, .xlsm, .csv, .tsv) - Spreadsheet creation, editing, data analysis
- PowerPoint (.pptx) - Presentation creation, editing, design
- PDF (.pdf) - Document extraction, merging, form filling
- Word (.docx) - Document creation, editing, track changes
渐进式引入
Progressive Introduction
本技能采用按需加载机制,详细文档仅在需要时读取,避免占用初始 token。
This skill uses an on-demand loading mechanism, where detailed documentation is only read when needed to avoid occupying initial tokens.
上下文效率
Context Efficiency
传统方式:
- 所有详细内容加载到 SKILL.md
- 估计上下文:~5000 tokens
本技能方式:
- 元数据仅:~150 tokens
- 详细文档(按需):~5k tokens
Traditional approach:
- All detailed content loaded into SKILL.md
- Estimated context: ~5000 tokens
This skill's approach:
- Metadata only: ~150 tokens
- Detailed documentation (on-demand): ~5k tokens
按需加载指南
On-demand Loading Guide
当需要处理特定格式的 Office 文件时,读取对应的详细文档:
bash
undefinedWhen you need to process a specific format of Office file, read the corresponding detailed documentation:
bash
undefinedExcel 处理
Excel Processing
cat $SKILL_DIR/references/xlsx.md
cat $SKILL_DIR/references/xlsx.md
PowerPoint 处理
PowerPoint Processing
cat $SKILL_DIR/references/pptx.md
cat $SKILL_DIR/references/pptx.md
PDF 处理
PDF Processing
cat $SKILL_DIR/references/pdf.md
cat $SKILL_DIR/references/pdf.md
Word 处理
Word Processing
cat $SKILL_DIR/references/docx.md
**注意**: Replace $SKILL_DIR with the actual discovered path of this skill directory.cat $SKILL_DIR/references/docx.md
**Note**: Replace $SKILL_DIR with the actual discovered path of this skill directory.使用模式
Usage Patterns
当用户请求匹配此技能的能力时:
Step 1: 识别文件类型(Excel / PowerPoint / PDF / Word)
Step 2: 加载对应的详细文档
bash
cd $SKILL_DIR
cat references/<type>.mdStep 3: 根据详细文档中的指导执行操作
When a user's request matches the capabilities of this skill:
Step 1: Identify the file type (Excel / PowerPoint / PDF / Word)
Step 2: Load the corresponding detailed documentation
bash
cd $SKILL_DIR
cat references/<type>.mdStep 3: Perform operations according to the guidance in the detailed documentation
技能来源
Skill Source
本技能整合了 Anthropic 官方技能:
- xlsx - Excel 处理
- pptx - PowerPoint 处理
- pdf - PDF 处理
- docx - Word 处理
This skill uses progressive disclosure to minimize initial context usage
This skill integrates official Anthropic skills:
- xlsx - Excel processing
- pptx - PowerPoint processing
- pdf - PDF processing
- docx - Word processing
Original source: https://github.com/anthropics/skills
This skill uses progressive disclosure to minimize initial context usage