claude-office-skills
文档工具包:支持 PDF、Word、Excel、PowerPoint 的处理,并提供跨格式工作流与模板。
文档处理
PDF
Word
Excel
PowerPoint
跨格式工作流
模板
⭐ 0⬇️ 0🏷️ main📦 2
claude-office-skills-main.zip
399.6 KB下载
安装与使用说明
Codex
- 先下载 ZIP 包(例如:claude-office-skills-main.zip)。
- 解压后放到 $CODEX_HOME/skills/ 目录下。
- 如果没有设置 $CODEX_HOME,通常可放到 ~/.codex/skills/。
- 确保目录内有 SKILL.md,然后重开会话即可使用。
源码目录预览
├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── workflows │ │ └── claude-review.yml │ └── PULL_REQUEST_TEMPLATE.md ├── skills │ ├── doc-coauthoring │ │ └── SKILL.md │ ├── docx │ │ ├── ooxml │ │ │ ├── schemas │ │ │ │ ├── ISO-IEC29500-4_2016 │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma │ │ │ │ │ └── fouth-edition │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ └── scripts │ │ │ ├── validation │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── docx.py │ │ │ │ ├── pptx.py │ │ │ │ └── redlining.py │ │ │ ├── pack.py │ │ │ ├── unpack.py │ │ │ └── validate.py │ │ ├── scripts │ │ │ ├── templates │ │ │ │ ├── comments.xml │ │ │ │ ├── commentsExtended.xml │ │ │ │ ├── commentsExtensible.xml │ │ │ │ ├── commentsIds.xml │ │ │ │ └── people.xml │ │ │ ├── __init__.py │ │ │ ├── document.py │ │ │ └── utilities.py │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── docx-js.md │ │ └── ooxml.md │ ├── pdf │ │ ├── scripts │ │ │ ├── check_bounding_boxes.py │ │ │ ├── check_bounding_boxes_test.py │ │ │ ├── check_fillable_fields.py │ │ │ ├── convert_pdf_to_images.py │ │ │ ├── create_validation_image.py │ │ │ ├── extract_form_field_info.py │ │ │ ├── fill_fillable_fields.py │ │ │ └── fill_pdf_form_with_annotations.py │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── forms.md │ │ └── reference.md │ ├── pptx │ │ ├── ooxml │ │ │ ├── schemas │ │ │ │ ├── ISO-IEC29500-4_2016 │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma │ │ │ │ │ └── fouth-edition │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ └── scripts │ │ │ ├── validation │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── docx.py │ │ │ │ ├── pptx.py │ │ │ │ └── redlining.py │ │ │ ├── pack.py │ │ │ ├── unpack.py │ │ │ └── validate.py │ │ ├── scripts │ │ │ ├── html2pptx.js │ │ │ ├── inventory.py │ │ │ ├── rearrange.py │ │ │ ├── replace.py │ │ │ └── thumbnail.py │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── html2pptx.md │ │ └── ooxml.md │ └── xlsx │ ├── LICENSE.txt │ ├── SKILL.md │ └── recalc.py ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── SKILL.md
元数据
Slug: claude-office-skills
作者: LeoLin990405
协议: MIT
包大小: 399.6 KB
SHA256: a2e9444887dc27a93b77c58d5fede971a0cccda24f5ef3157891360a29c55f1e