{
  "markdown": "# Claude Office Skills\n\n> A curated collection of practical Claude Skills for real-world office tasks. Zero setup required.\n\n[![Awesome](https://awesome.re/badge.svg)](https://awesome.re)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)\n[![Skills](https://img.shields.io/badge/Skills-136+-blue.svg)](#skills)\n[![MCP Tools](https://img.shields.io/badge/MCP_Tools-39-green.svg)](#office-mcp-server)\n\n---\n\n## 🚀 NEW: Office MCP Server\n\n**39 fully-implemented tools** for Office document operations via MCP (Model Context Protocol).\n\n| Module | Tools | Capabilities |\n|--------|-------|--------------|\n| **PDF** | 10 | Extract, merge, split, compress, watermark, forms, **OCR** |\n| **Spreadsheet** | 7 | Read/write Excel, analyze, formulas, pivot tables |\n| **Document** | 6 | Create/edit Word, templates, merge documents |\n| **Conversion** | 9 | xlsx⇔csv, docx⇔md, json→xlsx, batch convert |\n| **Presentation** | 7 | Create PPT, extract, Markdown→slides, HTML export |\n\n**Quick Start:**\n```bash\ncd mcp-servers/office-mcp && npm install && npm run build\n```\n\n[📖 Full MCP Documentation](./office-mcp/SKILL.md) | [💻 MCP Source Code](./mcp-servers/office-mcp/)\n\n---\n\n## 📚 NEW: Extensible Knowledge Base\n\n**Domain knowledge as structured data** - customize Claude's expertise for your jurisdiction and industry.\n\n| Layer | Description | Customizable |\n|-------|-------------|--------------|\n| **Base** | Universal risk patterns, completeness checklists | Core team |\n| **Jurisdictions** | US, China, EU, California... | Community |\n| **Domain** | Healthcare, Finance, Government... | Community |\n| **Custom** | Your company rules, private knowledge | You |\n\n**Available Knowledge:**\n- 15+ risk patterns (liability, IP, termination, confidentiality...)\n- 19 completeness check items\n- 4 jurisdictions (US Federal, California, China, EU)\n\n**Quick Start:**\n```yaml\n# In your SKILL.md\nknowledge:\n  base:\n    - mcp-servers/office-mcp/knowledge/base/risk_patterns.json\n  jurisdictions:\n    - mcp-servers/office-mcp/knowledge/base/jurisdictions/california.json\n```\n\n[📖 Knowledge Index](./KNOWLEDGE_INDEX.md) | [🤝 Contribute Knowledge](./CONTRIBUTING_KNOWLEDGE.md)\n\n---\n\n## 🤖 NEW: Pre-built Agents\n\n**5 ready-to-deploy AI personas** with curated skills, knowledge, and personality.\n\n| Agent | Role | Key Skills | Deploy To |\n|-------|------|------------|-----------|\n| ⚖️ [Legal Specialist](./agents/legal-specialist/) | Contract Review | contract-review, nda-generator | All platforms |\n| 📊 [Data Analyst](./agents/data-analyst/) | Excel & Finance | data-analysis, dcf-valuation | All platforms |\n| 📋 [Admin Assistant](./agents/admin-assistant/) | Email & Calendar | email-drafter, meeting-notes | All platforms |\n| 🔬 [Research Analyst](./agents/research-analyst/) | Deep Research | deep-research, company-research | All platforms |\n| ✍️ [Content Creator](./agents/content-creator/) | Writing & Marketing | content-writer, seo-optimizer | All platforms |\n\n**Quick Deploy:**\n```bash\n# Install agent to Moltbot\ncurl -fsSL https://molt.bot/install | bash -s -- --agent legal-specialist\n```\n\n[📖 All Agents](./agents/) | [🛠️ Create Custom Agent](./agents/_template/)\n\n---\n\n## Contents\n\n- [What Are Claude Skills?](#what-are-claude-skills)\n- [Getting Started](#getting-started)\n- [Skills](#skills)\n  - [Legal & Contracts](#legal--contracts)\n  - [HR & Careers](#hr--careers)\n  - [Finance & Business](#finance--business)\n  - [Communication & Writing](#communication--writing)\n  - [Productivity](#productivity)\n  - [PDF Power Tools](#pdf-power-tools)\n  - [Document Processing (Official)](#document-processing-official)\n  - [Core Document Skills](#core-document-skills)\n  - [Document Conversion Skills](#document-conversion-skills)\n  - [Document Parsing & OCR Skills](#document-parsing--ocr-skills)\n  - [Presentation Skills](#presentation-skills)\n  - [Template Skills](#template-skills)\n  - [Workflow & Automation Skills](#workflow--automation-skills)\n  - [CRM & Sales Automation](#crm--sales-automation)\n  - [Marketing & Advertising](#marketing--advertising)\n  - [E-commerce](#e-commerce)\n  - [Communication & Messaging](#communication--messaging)\n  - [Project Management](#project-management)\n  - [Customer Support](#customer-support)\n  - [Financial Analysis](#financial-analysis)\n  - [Accounting & Payments](#accounting--payments)\n  - [Data Engineering](#data-engineering)\n  - [Research & Intelligence](#research--intelligence)\n  - [Visual & Creative](#visual--creative)\n  - [Media & Content](#media--content)\n  - [Smart Home & IoT](#smart-home--iot)\n  - [DevOps & Security](#devops--security)\n  - [HR & Operations](#hr--operations)\n  - [AI & Agents](#ai--agents)\n- [Creating Skills](#creating-skills)\n- [Advanced Usage](#advanced-usage)\n- [Contributing](#contributing)\n- [Resources](#resources)\n\n---\n\n## What Are Claude Skills?\n\n**Claude Skills** are customizable workflows that teach Claude how to perform specific tasks according to your unique requirements. Skills enable Claude to execute tasks in a repeatable, standardized manner.\n\nUnlike generic AI prompts, these skills contain **embedded domain knowledge** and **professional workflows** that make Claude genuinely useful for business tasks.\n\n**This repository focuses on Office & Business scenarios:**\n- Contracts, invoices, proposals\n- HR documents, resumes, offer letters\n- Reports, presentations, emails\n- Data analysis and document processing\n\n---\n\n## Getting Started\n\n### Using Skills in Claude.ai\n\n1. Click any skill below\n2. Copy the `SKILL.md` content\n3. Paste into your Claude conversation\n4. Upload your document and ask for help\n\n### Using Skills in Claude Code\n\n```bash\n# Place the skill in your skills directory\nmkdir -p ~/.config/claude-code/skills/\ncp -r contract-review ~/.config/claude-code/skills/\n\n# Start Claude Code - skill loads automatically\nclaude\n```\n\n### Using Skills via Direct Link\n\n```\nPlease use this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md\n\nThen review my contract: [upload file]\n```\n\n### Using Skills via API\n\n```python\nimport anthropic\n\nclient = anthropic.Anthropic(api_key=\"your-api-key\")\n\n# Load skill content\nskill_content = open(\"contract-review/SKILL.md\").read()\n\nresponse = client.messages.create(\n    model=\"claude-sonnet-4-20250514\",\n    system=skill_content,\n    messages=[{\"role\": \"user\", \"content\": \"Review this contract...\"}]\n)\n```\n\n### Using Skills with Moltbot (Clawdbot)\n\nOne-click install all 136+ Office Skills to your [Moltbot](https://molt.bot):\n\n```bash\n# Install ALL skills\ncurl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash\n\n# Install by category\ncurl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category legal\ncurl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category pdf\ncurl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category workflow\n```\n\nAvailable categories: `legal`, `hr`, `finance`, `pdf`, `workflow`, `template`, `doc`, `conversion`, `parsing`, `slide`, `productivity`, `marketing`\n\nOr install a single skill via chat:\n```\nInstall this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md\n```\n\n---\n\n## Skills\n\n### Legal & Contracts\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Contract Review** | Analyze contracts for risks, check completeness, get recommendations | Legal | [View](./contract-review/) |\n| **NDA Generator** | Create professional NDAs for different scenarios | Legal | [View](./nda-generator/) |\n\n### HR & Careers\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Resume Tailor** | Optimize resume for specific job applications | HR/Personal | [View](./resume-tailor/) |\n| **Cover Letter** | Write compelling, personalized cover letters | HR/Personal | [View](./cover-letter/) |\n| **Job Description** | Create clear, inclusive job postings | HR | [View](./job-description/) |\n| **Offer Letter** | Generate professional employment offers | HR | [View](./offer-letter/) |\n| **Applicant Screening** | Screen candidates against job requirements | HR | [View](./applicant-screening/) |\n\n### Finance & Business\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Invoice Generator** | Create professional invoices with proper formatting | Finance | [View](./invoice-generator/) |\n| **Expense Report** | Organize and summarize business expenses | Finance | [View](./expense-report/) |\n| **Invoice Organizer** | Organize, categorize, and track invoices | Finance | [View](./invoice-organizer/) |\n| **Proposal Writer** | Write winning business proposals | Sales | [View](./proposal-writer/) |\n\n### Sales & Marketing\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Lead Research** | Research company/contact info for sales outreach | Sales | [View](./lead-research/) |\n| **Lead Qualification** | Score and qualify leads based on criteria | Sales | [View](./lead-qualification/) |\n| **Content Writer** | Research and write content (blogs, articles) | Marketing | [View](./content-writer/) |\n| **Brand Guidelines** | Create and maintain brand style guides | Marketing | [View](./brand-guidelines/) |\n\n### Communication & Writing\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Internal Comms** | Status reports, newsletters, FAQs | Ops | [View](./official-skills/internal-comms.md) |\n| **Doc Co-authoring** | Structured workflow for writing documentation | All | [View](./official-skills/doc-coauthoring.md) |\n| **Email Drafter** | Professional email templates and responses | All | [View](./email-drafter/) |\n| **Email Classifier** | Auto-categorize emails by type and priority | All | [View](./email-classifier/) |\n| **Suspicious Email** | Analyze emails for phishing and scam indicators | Security | [View](./suspicious-email/) |\n\n### Productivity\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Meeting Notes** | Transform raw notes into structured summaries | All | [View](./meeting-notes/) |\n| **Weekly Report** | Create consistent status updates | All | [View](./weekly-report/) |\n| **File Organizer** | Organize and rename files based on content | All | [View](./file-organizer/) |\n| **Changelog Generator** | Generate release notes from commits/updates | Dev/PM | [View](./changelog-generator/) |\n| **Data Analysis** | Analyze spreadsheet data and generate insights | All | [View](./data-analysis/) |\n\n### PDF Power Tools\n\nComprehensive PDF manipulation skills inspired by [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) (73k+ stars).\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Chat with PDF** | Answer questions, summarize, extract from PDFs | All | [View](./chat-with-pdf/) |\n| **PDF Converter** | Convert PDF to/from Word, Excel, Image formats | All | [View](./pdf-converter/) |\n| **PDF OCR** | Extract text from scanned PDFs using OCR | All | [View](./pdf-ocr/) |\n| **PDF Merge/Split** | Combine or split PDF documents | All | [View](./pdf-merge-split/) |\n| **PDF Form Filler** | Fill out PDF forms programmatically | All | [View](./pdf-form-filler/) |\n| **PDF Compress** | Reduce PDF file size while maintaining quality | All | [View](./pdf-compress/) |\n| **PDF Watermark** | Add watermarks, page numbers, headers/footers | All | [View](./pdf-watermark/) |\n\n### Document Processing (Official)\n\nOfficial Anthropic skills for working with Office documents. See [official-skills/](./official-skills/) for details.\n\n| Skill | Description | Department | License |\n|-------|-------------|------------|---------|\n| **DOCX** | Word document creation, editing, tracked changes | All | [Source-available](./official-skills/docx-guide.md) |\n| **XLSX** | Excel spreadsheets, formulas, financial models | Finance/Ops | [Source-available](./official-skills/xlsx-guide.md) |\n| **PPTX** | PowerPoint presentations | Marketing/All | [Source-available](./official-skills/pptx-guide.md) |\n| **PDF** | PDF processing, forms, extraction | All | [Source-available](./official-skills/pdf-guide.md) |\n\n### Core Document Skills\n\nBased on Python libraries for native Office document manipulation.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **DOCX Manipulation** | python-docx | 5.4k | Create/edit Word documents programmatically | [View](./docx-manipulation/) |\n| **PPTX Manipulation** | python-pptx | 3.2k | Create/edit PowerPoint presentations | [View](./pptx-manipulation/) |\n| **XLSX Manipulation** | openpyxl | 3.8k | Create/edit Excel spreadsheets | [View](./xlsx-manipulation/) |\n| **Excel Automation** | xlwings | 3.3k | Advanced Excel automation with Python | [View](./excel-automation/) |\n| **PDF Extraction** | pdfplumber | 9.6k | Extract text, tables from PDFs | [View](./pdf-extraction/) |\n\n### Document Conversion Skills\n\nBased on document format conversion tools.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **MD to Office** | pandoc | 42k | Convert Markdown to Word/PPT/PDF | [View](./md-to-office/) |\n| **Office to MD** | markitdown | 86k | Convert Office docs to Markdown (Microsoft) | [View](./office-to-md/) |\n| **PDF to DOCX** | pdf2docx | 3.3k | Convert PDF to editable Word | [View](./pdf-to-docx/) |\n| **HTML to PPT** | marp-cli | 3.1k | Convert HTML/Markdown to presentations | [View](./html-to-ppt/) |\n| **Batch Convert** | multi-format | - | Multi-format batch conversion pipeline | [View](./batch-convert/) |\n\n### Document Parsing & OCR Skills\n\nBased on document parsing and OCR libraries.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **Smart OCR** | PaddleOCR | 69k | OCR for 100+ languages | [View](./smart-ocr/) |\n| **Doc Parser** | docling | 51.5k | IBM's document parser for complex layouts | [View](./doc-parser/) |\n| **Layout Analyzer** | surya | 19k | Analyze document structure and layout | [View](./layout-analyzer/) |\n| **Data Extractor** | unstructured | 14k | Extract data from any document format | [View](./data-extractor/) |\n| **Table Extractor** | camelot | 4.2k | Extract tables from PDFs accurately | [View](./table-extractor/) |\n\n### Presentation Skills\n\nBased on presentation generation tools.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **HTML Slides** | reveal.js | 70.5k | Create HTML-based presentations | [View](./html-slides/) |\n| **Dev Slides** | slidev | 44k | Developer-friendly Vue-based slides | [View](./dev-slides/) |\n| **MD Slides** | marp | 3.1k | Markdown to PDF/PPTX presentations | [View](./md-slides/) |\n| **Report Generator** | gilfoyle | - | Generate data reports automatically | [View](./report-generator/) |\n| **AI Slides** | sli-ai | - | AI-powered slide generation | [View](./ai-slides/) |\n\n### Template Skills\n\nBased on document template engines.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **CV Builder** | rendercv | 15.4k | YAML to PDF resume generator | [View](./cv-builder/) |\n| **Form Builder** | docassemble | 919 | Interactive form builder | [View](./form-builder/) |\n| **Contract Template** | accord-project | 322 | Smart contract templates | [View](./contract-template/) |\n| **Invoice Template** | easy-invoice | 476 | PDF invoice generation | [View](./invoice-template/) |\n| **Template Engine** | docxtpl | 2.1k | Document auto-fill engine | [View](./template-engine/) |\n\n### Workflow & Automation Skills\n\nBased on workflow automation platforms.\n\n| Skill | Library | Stars | Description | Link |\n|-------|---------|-------|-------------|------|\n| **n8n Workflow** | n8n | 172k | 7800+ workflow templates | [View](./n8n-workflow/) |\n| **MCP Hub** | mcp-servers | 40k+ | 1200+ AI Agent tools | [View](./mcp-hub/) |\n| **Office MCP** | office-mcp | - | Word/Excel/PPT MCP operations | [View](./office-mcp/) |\n| **Batch Processor** | custom | - | Bulk document processing | [View](./batch-processor/) |\n| **Doc Pipeline** | custom | - | Document workflow pipeline | [View](./doc-pipeline/) |\n| **Webhook Automation** | - | - | Build webhook integrations | [View](./webhook-automation/) |\n| **Browser Automation** | Puppeteer | - | Web scraping & testing | [View](./browser-automation/) |\n\n### CRM & Sales Automation\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **CRM Automation** | Multi-CRM workflows (HubSpot, Salesforce) | HubSpot/SF | [View](./crm-automation/) |\n| **Pipedrive Automation** | Deal management, pipeline tracking | Pipedrive | [View](./pipedrive-automation/) |\n| **Lead Routing** | Intelligent lead assignment | Multi | [View](./lead-routing/) |\n| **Customer Success** | Onboarding, health scoring, retention | Multi | [View](./customer-success/) |\n\n### Marketing & Advertising\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Google Ads Manager** | Campaign management, keyword research | Google | [View](./google-ads-manager/) |\n| **Facebook/Meta Ads** | FB & Instagram advertising | Meta | [View](./facebook-ads/) |\n| **TikTok Marketing** | Content strategy, posting, analytics | TikTok | [View](./tiktok-marketing/) |\n| **LinkedIn Automation** | B2B marketing, lead generation | LinkedIn | [View](./linkedin-automation/) |\n| **Twitter/X Automation** | Social media management | Twitter | [View](./twitter-automation/) |\n| **Mailchimp Automation** | Email marketing campaigns | Mailchimp | [View](./mailchimp-automation/) |\n| **Email Marketing** | Multi-platform email automation | Multi | [View](./email-marketing/) |\n| **SEO Optimizer** | SEO strategy and optimization | - | [View](./seo-optimizer/) |\n| **Ads Copywriter** | Multi-platform ad copy generation | Multi | [View](./ads-copywriter/) |\n| **Social Publisher** | Cross-platform social publishing | Multi | [View](./social-publisher/) |\n\n### E-commerce\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Shopify Automation** | Orders, inventory, customers | Shopify | [View](./shopify-automation/) |\n| **WooCommerce Automation** | WordPress e-commerce automation | WooCommerce | [View](./woocommerce-automation/) |\n| **Amazon Seller** | FBA, inventory, PPC management | Amazon | [View](./amazon-seller/) |\n\n### Communication & Messaging\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Slack Workflows** | Slack automation & integrations | Slack | [View](./slack-workflows/) |\n| **Microsoft Teams** | Teams messaging & meetings | Teams | [View](./microsoft-teams/) |\n| **Discord Bot** | Community management & bots | Discord | [View](./discord-bot/) |\n| **Telegram Bot** | Bot development & automation | Telegram | [View](./telegram-bot/) |\n| **WhatsApp Automation** | Business messaging & support | WhatsApp | [View](./whatsapp-automation/) |\n| **Twilio SMS** | SMS & voice automation | Twilio | [View](./twilio-sms/) |\n\n### Project Management\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Jira Automation** | Issue tracking, sprints | Jira | [View](./jira-automation/) |\n| **Asana Automation** | Task & project management | Asana | [View](./asana-automation/) |\n| **Monday.com Automation** | Work management platform | Monday | [View](./monday-automation/) |\n| **Linear Automation** | Engineering issue tracking | Linear | [View](./linear-automation/) |\n| **Trello Automation** | Kanban board management | Trello | [View](./trello-automation/) |\n| **ClickUp Automation** | All-in-one productivity | ClickUp | [View](./clickup-automation/) |\n| **Notion Automation** | Database & wiki automation | Notion | [View](./notion-automation/) |\n| **Airtable Automation** | Database automation | Airtable | [View](./airtable-automation/) |\n\n### Customer Support\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Zendesk Automation** | Ticket management & routing | Zendesk | [View](./zendesk-automation/) |\n| **Intercom Automation** | Customer messaging & support | Intercom | [View](./intercom-automation/) |\n\n### Financial Analysis\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **Stock Analysis** | Stock research & analysis | Finance | [View](./stock-analysis/) |\n| **DCF Valuation** | Discounted cash flow models | Finance | [View](./dcf-valuation/) |\n| **Financial Modeling** | Build financial models | Finance | [View](./financial-modeling/) |\n| **Company Research** | Company deep research | Finance | [View](./company-research/) |\n| **Investment Memo** | Write investment memos | Finance | [View](./investment-memo/) |\n| **Crypto Report** | Cryptocurrency analysis | Finance | [View](./crypto-report/) |\n| **SaaS Metrics** | MRR, ARR, churn analysis | Finance | [View](./saas-metrics/) |\n\n### Accounting & Payments\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **QuickBooks Automation** | Bookkeeping & accounting | QuickBooks | [View](./quickbooks-automation/) |\n| **Stripe Payments** | Payment processing & subscriptions | Stripe | [View](./stripe-payments/) |\n| **Invoice Automation** | Multi-platform invoicing | Multi | [View](./invoice-automation/) |\n| **Expense Tracker** | Receipt processing & tracking | Multi | [View](./expense-tracker/) |\n| **Subscription Management** | SaaS billing lifecycle | Multi | [View](./subscription-management/) |\n\n### Data Engineering\n\n| Skill | Description | Use Case | Link |\n|-------|-------------|----------|------|\n| **ETL Pipeline** | Extract, Transform, Load workflows | Data | [View](./etl-pipeline/) |\n| **Database Sync** | Cross-database synchronization | Data | [View](./database-sync/) |\n| **Sheets Automation** | Google Sheets workflows | Productivity | [View](./sheets-automation/) |\n| **Gmail Workflows** | Email automation & organization | Productivity | [View](./gmail-workflows/) |\n| **Calendar Automation** | Scheduling & time management | Productivity | [View](./calendar-automation/) |\n\n### Research & Intelligence\n\n| Skill | Description | Use Case | Link |\n|-------|-------------|----------|------|\n| **Deep Research** | Multi-source deep research | Research | [View](./deep-research/) |\n| **Web Search** | Intelligent web search | Research | [View](./web-search/) |\n| **Academic Search** | Scholarly paper research | Research | [View](./academic-search/) |\n| **Competitive Analysis** | Competitor research | Strategy | [View](./competitive-analysis/) |\n| **News Monitor** | News tracking & alerts | Intelligence | [View](./news-monitor/) |\n\n### Visual & Creative\n\n| Skill | Description | Use Case | Link |\n|-------|-------------|----------|------|\n| **Image Generation** | AI image creation | Creative | [View](./image-generation/) |\n| **Diagram Creator** | Technical diagrams | Documentation | [View](./diagram-creator/) |\n| **Chart Designer** | Data visualization | Analytics | [View](./chart-designer/) |\n| **Infographic** | Infographic design | Marketing | [View](./infographic/) |\n| **PPT Visual** | Presentation visuals | Presentations | [View](./ppt-visual/) |\n\n### Media & Content\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **YouTube Automation** | Video management & analytics | YouTube | [View](./youtube-automation/) |\n| **Podcast Automation** | Podcast production workflows | Multi | [View](./podcast-automation/) |\n| **Transcription** | Audio/video transcription | Multi | [View](./transcription-automation/) |\n\n### Smart Home & IoT\n\n| Skill | Description | Platform | Link |\n|-------|-------------|----------|------|\n| **Home Assistant** | Smart home automation | HA | [View](./home-assistant/) |\n| **Spotify Automation** | Music playback & playlists | Spotify | [View](./spotify-automation/) |\n| **Weather Automation** | Weather-based workflows | Multi | [View](./weather-automation/) |\n| **Apple Shortcuts** | iOS/macOS automation | Apple | [View](./apple-shortcuts/) |\n\n### DevOps & Security\n\n| Skill | Description | Use Case | Link |\n|-------|-------------|----------|------|\n| **DevOps Automation** | CI/CD & infrastructure | DevOps | [View](./devops-automation/) |\n| **Security Monitoring** | Threat detection & response | Security | [View](./security-monitoring/) |\n\n### HR & Operations\n\n| Skill | Description | Department | Link |\n|-------|-------------|------------|------|\n| **HR Automation** | Recruiting & onboarding workflows | HR | [View](./hr-automation/) |\n| **DocuSign Automation** | E-signature workflows | Legal/Ops | [View](./docusign-automation/) |\n\n### AI & Agents\n\n| Skill | Description | Use Case | Link |\n|-------|-------------|----------|------|\n| **AI Agent Builder** | Design multi-step AI agents | Development | [View](./ai-agent-builder/) |\n| **Obsidian Automation** | Knowledge management | PKM | [View](./obsidian-automation/) |\n\n---\n\n## Creating Skills\n\n### Skill Structure\n\nEach skill is a folder containing a `SKILL.md` file with YAML frontmatter:\n\n```\nskill-name/\n├── SKILL.md          # Required: Skill instructions and metadata\n├── README.md         # Optional: Usage documentation\n└── examples/         # Optional: Example files\n```\n\n### Basic Skill Template\n\n```markdown\n---\nname: my-skill-name\ndescription: A clear description of what this skill does\nversion: 1.0.0\nauthor: your-name\nlicense: MIT\n---\n\n# My Skill Name\n\n## Overview\n[What this skill does and when to use it]\n\n## How to Use\n[Step-by-step instructions]\n\n## Domain Knowledge\n[Embedded expertise that makes this skill valuable]\n\n## Examples\n[Real-world usage examples]\n\n## Limitations\n[What this skill cannot do]\n```\n\n### What Makes a Good Skill?\n\n- **Specific**: Solves one clear problem\n- **Knowledge-rich**: Contains real domain expertise\n- **Actionable**: Clear steps and outputs\n- **Tested**: Actually works with Claude\n- **Documented**: Examples and edge cases\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.\n\n---\n\n## Architecture\n\n![Claude Office Skills Architecture](./architecture.png)\n\n| Component | Description | Users |\n|-----------|-------------|-------|\n| **Community Hub** (this repo) | Zero setup - copy & paste SKILL.md | 90% of users |\n| **Advanced** | MCP Server + HTTP API + Cloudflare | Power users |\n\n---\n\n## Advanced Usage\n\nFor power users who need programmatic access or integrations:\n\n| Repository | Description | Features |\n|------------|-------------|----------|\n| [contract-review-skill](https://github.com/claude-office-skills/contract-review-skill) | Full MCP server + HTTP API | Claude Desktop, Cloudflare, CI/CD |\n\n---\n\n## Contributing\n\nWe welcome contributions! **No coding required** - just write clear instructions in Markdown.\n\n### Quick Contribution\n\n1. Fork this repo\n2. Create `your-skill-name/SKILL.md`\n3. Follow the [template](./_template/SKILL.md)\n4. Submit a PR\n\n### Contribution Ideas\n\nSee our [Skill Roadmap](SKILL_ROADMAP.md) for planned skills and [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.\n\nFuture skill ideas:\n- [ ] **Privacy Policy** - GDPR/CCPA compliant policies\n- [ ] **Terms of Service** - Fair, legally-sound ToS\n- [ ] **Project Brief** - Project scope and requirements\n- [ ] **Signal Integration** - Privacy-focused messaging\n- [ ] **Sonos/Audio** - Multi-room audio control\n- [ ] **3D Printing** - Printer management & slicing\n\n---\n\n## Resources\n\n### Official Documentation\n\n- [Claude Skills Overview](https://www.anthropic.com/news/agent-skills) - Official announcement\n- [Skills User Guide](https://support.claude.com/en/articles/12512180-using-skills-in-claude) - How to use skills\n- [Creating Custom Skills](https://support.claude.com/en/articles/12512198-creating-custom-skills) - Development guide\n- [Agent Skills Blog](https://anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills) - Engineering deep dive\n\n### Community Resources\n\n- [Anthropic Skills Repository](https://github.com/anthropics/skills) - Official example skills\n- [Awesome Claude Skills](https://github.com/ComposioHQ/awesome-claude-skills) - Community curation (27k+ stars)\n- [Awesome n8n Templates](https://github.com/enescingoz/awesome-n8n-templates) - Workflow automation inspiration\n\n### Related Projects\n\n- [MCP Protocol](https://modelcontextprotocol.io) - Model Context Protocol specification\n- [Claude Code](https://claude.ai/code) - Claude's coding environment\n\n---\n\n## License\n\nThis repository is licensed under the [MIT License](LICENSE).\n\nIndividual skills may have different licenses - check each skill's folder for specific terms.\n\n---\n\n## Acknowledgments\n\nInspired by:\n- [Anthropic Skills](https://github.com/anthropics/skills) - Official Claude Skills\n- [Awesome Claude Skills](https://github.com/ComposioHQ/awesome-claude-skills) - Community curation\n- [Awesome n8n Templates](https://github.com/enescingoz/awesome-n8n-templates) - Workflow automation\n\n---\n\n**Made with Claude, for everyone who works with documents.**\n\n*Note: Claude Skills work across Claude.ai, Claude Code, and the Claude API. Once you create a skill, it's portable across all platforms.*\n",
  "bytes": 29570,
  "sha": "4d3abc437b819da3519c9c0600be0e2c48c8ce46c63eac9e4b5aeffecda58989",
  "repo_slug": "claude-office-skills/skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_claude_office_skills_skills_trello_autom_d26927a4/readme"
}