Back to the catalog

xlsx

appautomaton/document-skills · skills.sh

Open source Repository Open in the app JSON README (API)

About

Skill publicada por appautomaton/document-skills no skills.sh. Instale com: npx skills add appautomaton/document-skills@xlsx

Details

Kind
Agent skills
Topic
No topic detected
Publisher
appautomaton
Origin
skillssh
Category
ferramentas
Stars
161
Forks
10
Last push
2026-09-13T03:35:58Z
Repository state
ativo
Language
Python
License
MIT
Added
2026-08-30 15:22:33
Updated
2026-09-08 15:05:55
Origin id
appautomaton/document-skills/xlsx

README

# Document Processing Skills

English | [中文](README.zh-CN.md)

A collection of Claude Code / Codex skills for document manipulation — PDF extraction/forms, Excel analysis/formulas, Word, and PowerPoint.

## Quick start

### Claude Code, as a plugin

Two commands inside Claude Code, no cloning:

```
/plugin marketplace add appautomaton/document-SKILLs
/plugin install document-skills@appautomaton-skills
```

Skills are then invoked as `document-skills:pdf`, `document-skills:docx`, and so on.

### Any agent, via symlinks

> [!TIP]
> Clone this repo anywhere you keep your skills, then symlink each skill into your agent's skills directory.

```bash
git clone https://github.com/appautomaton/document-SKILLs.git ~/skills/documents
cd ~/skills/documents

# Claude Code
for s in docx pdf pptx xlsx; do
  ln -s "$(pwd)/$s" ~/.claude/skills/$s
done

# Codex
for s in docx pdf pptx xlsx; do
  ln -s "$(pwd)/$s" ~/.codex/skills/$s
done
```

## Skills

| Skill | What it does |
|---|---|
| [docx](docx/) | Create, edit, and analyze Word documents — tracked changes, comments, formatting |
| [pdf](pdf/) | Extract text/tables, fill forms, merge/split, OCR scanned pages |
| [pptx](pptx/) | Edit existing presentations — reorder slides, replace text, thumbnails |
| [xlsx](xlsx/) | Create/edit spreadsheets — formulas, formatting, data analysis |

## Dependencies

> [!NOTE]
> Python scripts use [uv](https://docs.astral.sh/uv/) + PEP 723 inline metadata — no virtual environments or `pip install` needed. Just `uv run`.

System tools:

```bash
# macOS: one command via the repo Brewfile.
# Installs uv and node only if missing, optional tools are commented in the file.
brew bundle

# Linux
sudo apt-get install -y pandoc poppler-utils tesseract-ocr qpdf libreoffice
```

Node.js packages (docx and pptx skills only):

```bash
cd docx && npm install
cd ../pptx && npm install
```

## License

MIT — see [LICENSE](LICENSE).

## Source

Based on [Anthropic's official skills](https://github.com/anthropics/skills).

---

🤖 Checkout [linux.do](https://linux.do) for more fun stuff about AI!

More