belumume/claude-skills
Personal collection of Claude skills - growing as I discover patterns and solve real-world problems
Deep Analysis
Claude 技能集合,包含文档处理、知识管理和工作流自动化等七个实用技能包
Core Features
Technical Implementation
- 单个 Obsidian 项目可节省约 80 小时工作量,已验证生成 37 文件/828KB 内容
- DOCX 模板填充保持 100% 原始结构(Logo、页脚、样式、元数据)
- 嵌套表格处理解决了标准库的局限性,相关 PR 已提交至 Anthropic 官方仓库
- 学术研究人员快速构建 Obsidian 知识库
- 企业批量填充 Word 模板文档
- 多语言文档本地化(特别是 RTL 语言)
- 需要自动重试的长时间迭代任务
- Ralph-Loop 仅支持 Claude Code CLI,不兼容 Web/Desktop 版本
- Web/Desktop 导出版本功能受限,需精简 frontmatter
Claude Skills Collection
Personal collection of custom Claude skills, created as I discover patterns and solve real-world problems.
Skills
Knowledge Management & Education
obsidian-study-vault-builder
Build comprehensive, mobile-compatible Obsidian study vaults from academic course materials with checkpoint-based workflow, error pattern recognition, and quality assurance. Works across all subjects - CS, medicine, business, self-study.
Battle-tested: 37-file vaults, 828KB content, 910-line comprehensive patterns, ~80 hours saved per project.
See obsidian-study-vault-builder/README.md
Document Processing
document-quality-standards
Quality patterns for all document operations (DOCX, PDF, XLSX, PPTX). Visual verification workflow, typography hygiene, formula best practices. Patterns from OpenAI skills that Anthropic's document-skills plugin lacks.
See document-quality-standards/
docx-template-filling
Fill DOCX template forms programmatically while preserving 100% of original structure - logos, footers, styles, metadata. Zero-artifact insertion for forms, applications, and standardized documents. Output indistinguishable from manual filling.
Key features: Anchor-based XML insertion, structure preservation, table repositioning, executable inspection script.
docx-advanced-patterns
Advanced python-docx patterns for nested tables, complex cell structures, and content extraction beyond basic .text property. Complements official docx skill with specialized read techniques.
See docx-advanced-patterns/README.md
rtl-document-translation
Translate structured documents (DOCX) to RTL languages (Arabic, Hebrew, Urdu) while preserving exact formatting, table structures, colors, and layouts.
See rtl-document-translation/README.md
More skills will be added as I discover and document new patterns.
Installation
Quick Install (All Skills)
# Clone this repository
git clone https://github.com/belumume/claude-skills.git
# Copy all skills to Claude
cp -r claude-skills/*/ ~/.claude/skills/
Individual Skill
# Install specific skill
cp -r claude-skills/obsidian-study-vault-builder ~/.claude/skills/
In Claude Web/Desktop
Ready-to-upload ZIPs are in web-desktop-exports/:
web-desktop-exports/
├── document-quality-standards.zip
├── docx-advanced-patterns.zip
├── docx-template-filling.zip
├── obsidian-study-vault-builder.zip
└── rtl-document-translation.zip
- Download the ZIP for the skill you want
- Go to Settings → Capabilities
- Upload the ZIP file
Note: Web/desktop exports have stripped frontmatter (name + description only, <200 chars) to meet Claude web/desktop requirements. The original Claude Code skills in the root folders retain full frontmatter (version, dependencies, tags).
Via API
from anthropic import Anthropic
client = Anthropic()
# Upload a skill
with open('skill-name.zip', 'rb') as f:
skill = client.skills.create(file=f)
Repository Structure
claude-skills/
├── README.md # This file
├── skill-name/ # Claude Code skills (full frontmatter)
│ ├── SKILL.md # Skill definition (required)
│ ├── README.md # User documentation
│ └── ... # Additional files
├── another-skill/
│ └── ...
└── web-desktop-exports/ # Claude web/desktop versions
├── skill-name.zip # Ready-to-upload ZIPs
└── skill-name/ # Stripped SKILL.md + supporting files
Contributing
Want to add a skill? Open a PR or issue!
Found a bug? Open an issue!
Have a suggestion? Open an issue!
This is a personal collection, but contributions are welcome.
Community Contributions
Skills or patterns from this repo that have been contributed upstream:
- Nested table extraction → Anthropic docx skill PR #87 (under review)
License
MIT License - Free for personal and commercial use
About
This collection grows organically as I:
- Encounter new problems
- Discover useful patterns
- Document reusable solutions
- Learn new Claude capabilities
Each skill is battle-tested on real-world use cases before being added.
Related Skills
wshobson/agents
wshobsonIntelligent automation and multi-agent orchestration for Claude Code
The most comprehensive Claude Code plugin ecosystem, covering full-stack development scenarios with a three-tier model strategy balancing performance and cost.
ComposioHQ/awesome-claude-skills
ComposioHQA curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
The most comprehensive Claude Skills resource list; connect-apps is a killer feature.
code-yeongyu/oh-my-opencode
code-yeongyuThe Best Agent Harness. Meet Sisyphus: The Batteries-Included Agent that codes like you.
Powerful multi-agent coding tool, but note OAuth limitations.
nextlevelbuilder/ui-ux-pro-max-skill
nextlevelbuilderAn AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
Essential for designers; comprehensive UI/UX knowledge base.
thedotmack/claude-mem
thedotmackA Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sessions.
A practical solution for Claude's memory issues.
OthmanAdi/planning-with-files
OthmanAdiClaude Code skill implementing Manus-style persistent markdown planning — the workflow pattern behind the $2B acquisition.
Context engineering best practices; an open-source implementation of Manus mode.

