### Install Office MCP Server from source Source: https://github.com/claude-office-skills/skills/blob/main/mcp-servers/office-mcp/README.md Clone the repository, install dependencies, build, and start the server from source. ```bash git clone https://github.com/claude-office-skills/skills cd skills/mcp-servers/office-mcp npm install npm run build npm start ``` -------------------------------- ### Install Office MCP Server Source: https://github.com/claude-office-skills/skills/blob/main/README.md Navigate to the office-mcp directory, install dependencies, and build the server. This is the initial setup for using the Office MCP Server tools. ```bash cd mcp-servers/office-mcp && npm install && npm run build ``` -------------------------------- ### Install and Build Office MCP Server Source: https://github.com/claude-office-skills/skills/blob/main/office-mcp/SKILL.md Steps to clone the repository, install dependencies, and build the project. ```bash cd mcp-servers/office-mcp npm install npm run build ``` -------------------------------- ### Welcome Email Sequence - SaaS Product (Email 1) Source: https://github.com/claude-office-skills/skills/blob/main/email-marketing/SKILL.md The first email in a welcome sequence, sent immediately after signup. It aims to welcome the user, provide a quick start guide, and set expectations for future emails. ```markdown # Welcome Sequence - SaaS Product ## Email 1: Welcome (Immediate) **Subject**: Welcome to {Product}! Here's your quick start guide 🚀 ``` Hi {first_name}, Welcome to {Product}! I'm {founder_name}, and I'm thrilled you're here. You just joined 10,000+ teams who've transformed how they work. **Your first step**: [Complete your profile] (takes 2 min) Over the next week, I'll share: • The 3 features that save users 5+ hours/week • How {Company} increased productivity by 40% • Pro tips from power users Questions? Just reply to this email—I read every one. Let's do this, {founder_name} P.S. Need help? [Book a free onboarding call] ``` ``` -------------------------------- ### Install Office MCP Server using npx Source: https://github.com/claude-office-skills/skills/blob/main/mcp-servers/office-mcp/README.md Recommended installation method for the Office MCP Server. ```bash npx @claude-office-skills/office-mcp ``` -------------------------------- ### Installing Skills for Claude Code Source: https://context7.com/claude-office-skills/skills/llms.txt Skills are automatically loaded when Claude Code starts if placed in the specified directory. Use `cp` for individual skills or categories, or use the provided install script for bulk installation. ```bash # Create the skills directory mkdir -p ~/.config/claude-code/skills/ # Copy a single skill cp -r contract-review ~/.config/claude-code/skills/ # Copy an entire category cp -r invoice-generator expense-report invoice-organizer ~/.config/claude-code/skills/ # Or install all 136+ skills at once via the install script curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash # Install by category curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category legal curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category pdf curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category finance # Start Claude Code — skills load automatically claude ``` -------------------------------- ### Install a Skill in Claude Code Source: https://github.com/claude-office-skills/skills/blob/main/README.md Place a skill in your skills directory and start Claude Code. The skill will load automatically. ```bash # Place the skill in your skills directory mkdir -p ~/.config/claude-code/skills/ cp -r contract-review ~/.config/claude-code/skills/ # Start Claude Code - skill loads automatically claude ``` -------------------------------- ### Employee Onboarding Automation Example Source: https://github.com/claude-office-skills/skills/blob/main/hr-automation/SKILL.md An example markdown output for an employee onboarding automation, detailing a pre-start and Day 1 checklist. ```markdown # Employee Onboarding Automation ## Trigger New hire added to HRIS (e.g., BambooHR, Workday) ## Pre-Start Checklist ### Day -14 - [ ] Send welcome email - [ ] Collect: ID, Tax forms, Banking info - [ ] Order laptop & equipment ### Day -7 - [ ] Create email account - [ ] Create Slack account - [ ] Add to HRIS - [ ] Schedule orientation - [ ] Assign buddy ### Day -1 - [ ] Ship/setup equipment - [ ] Send Day 1 instructions - [ ] Prepare workspace (if office) ## Day 1 Checklist ### Morning - [ ] Manager welcome (9am) - [ ] IT setup (10am) - [ ] Team introductions ### Afternoon - [ ] HR orientation (1pm) - [ ] Buddy lunch - [ ] Tool walkthroughs ``` -------------------------------- ### Install Office MCP Server using npm Source: https://github.com/claude-office-skills/skills/blob/main/mcp-servers/office-mcp/README.md Install the Office MCP Server globally using npm and run it. ```bash npm install -g @claude-office-skills/office-mcp office-mcp ``` -------------------------------- ### Install Marp CLI Source: https://github.com/claude-office-skills/skills/blob/main/html-to-ppt/SKILL.md These commands show how to install the Marp CLI tool globally using npm or Homebrew. Verify the installation by checking the Marp CLI version. ```bash # Using npm npm install -g @marp-team/marp-cli # Using Homebrew brew install marp-cli # Verify installation marp --version ``` -------------------------------- ### Install All Skills with Moltbot Source: https://github.com/claude-office-skills/skills/blob/main/README.md Use a curl command to install all Office Skills to your Moltbot. Alternatively, install by category. ```bash # Install ALL skills curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash # Install by category curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category legal curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category pdf curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash -s -- --category workflow ``` -------------------------------- ### Install a Single Skill via Chat Source: https://github.com/claude-office-skills/skills/blob/main/README.md Provide a direct link to a skill's SKILL.md file in a chat to install it. ```text Install this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md ``` -------------------------------- ### Google Alerts Setup Guide Source: https://github.com/claude-office-skills/skills/blob/main/news-monitor/SKILL.md Steps to configure Google Alerts for monitoring specific queries. Ensure to select appropriate frequency, sources, language, and region for optimal results. ```text 1. Go to google.com/alerts 2. Enter search query: "Your Company" OR "Your Product" 3. Show options: - How often: As-it-happens / Daily / Weekly - Sources: Automatic / News / Blogs / Web - Language: [Select] - Region: [Select] - How many: All results / Best results 4. Create alert ``` -------------------------------- ### Install LibreOffice for Office Format Conversions Source: https://github.com/claude-office-skills/skills/blob/main/batch-convert/SKILL.md Install LibreOffice, a free and open-source office suite, which is used by the SKILL for converting legacy office document formats. Installation commands are provided for macOS and Ubuntu. ```bash # LibreOffice (for Office formats) brew install libreoffice # macOS apt install libreoffice # Ubuntu ``` -------------------------------- ### Install Pandoc for Markdown Conversions Source: https://github.com/claude-office-skills/skills/blob/main/batch-convert/SKILL.md Install Pandoc, a universal document converter, which is necessary for converting markdown files to other formats. Installation commands are provided for macOS and Ubuntu. ```bash # Pandoc (for MD conversions) brew install pandoc # macOS apt install pandoc # Ubuntu ``` -------------------------------- ### Example Marp Presentation Output Source: https://github.com/claude-office-skills/skills/blob/main/ai-slides/SKILL.md A complete example of a Marp-formatted presentation generated by the AI Slides skill, covering an introduction to Docker. ```markdown --- marp: true theme: gaia paginate: true --- # Introduction to Docker Containerization Made Simple --- # Agenda 1. What is Docker? 2. Core Concepts 3. Getting Started 4. Best Practices 5. Demo --- # What is Docker? - Container platform for packaging applications - Lightweight alternative to VMs - "Build once, run anywhere" - 15M+ developers, 7M+ applications --- # Why Containers? | VMs | Containers | |-----|------------| | GB size | MB size | | Minutes to start | Seconds to start | | Full OS | Shared kernel | --- # Core Concepts - **Image**: Blueprint/template - **Container**: Running instance - **Dockerfile**: Build instructions - **Registry**: Image storage (Docker Hub) --- # Getting Started ```bash # Pull an image docker pull nginx # Run a container docker run -p 8080:80 nginx # List containers docker ps ``` --- # Your First Dockerfile ```dockerfile FROM node:18 WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 3000 CMD ["npm", "start"] ``` --- ``` -------------------------------- ### Install Base System for MCP Servers Source: https://github.com/claude-office-skills/skills/blob/main/mcp-servers/office-mcp/knowledge/README.md Installs and builds the base system for MCP Servers Office MCP. Run this command in the project directory. ```bash cd mcp-servers/office-mcp npm install && npm run build ``` -------------------------------- ### Install Docling Package Source: https://github.com/claude-office-skills/skills/blob/main/doc-parser/SKILL.md Install the docling library using pip. Use the '[all]' option for full functionality and '[ocr]' for OCR support. ```bash pip install docling ``` ```bash # For full functionality pip install docling[all] ``` ```bash # For OCR support pip install docling[ocr] ``` -------------------------------- ### BAB Framework Example Source: https://github.com/claude-office-skills/skills/blob/main/ads-copywriter/SKILL.md An example showcasing the Before, After, Bridge (BAB) copywriting framework. Helps to illustrate the transformation a product or service offers. ```plaintext Before → After → Bridge Example: B: "Before: [current state]" A: "After: [desired state]" B: "Bridge: [your product] makes it possible. [CTA]" ``` -------------------------------- ### Header Configuration Setup Source: https://github.com/claude-office-skills/skills/blob/main/pdf-watermark/SKILL.md Markdown configuration for header setup, including layout options, styling, and dynamic fields for content. ```markdown ## Header Setup ### Layout (3-column) | Left | Center | Right | |------|--------|-------| | [Logo] | Document Title | [Date] | ### Styling - **Font**: Arial, 10pt - **Color**: #333333 - **Line below**: Yes, 0.5pt gray ### Dynamic Fields | Field | Code | Output | |-------|------|--------| | Page number | {page} | 5 | | Total pages | {pages} | 25 | | Date | {date} | Jan 29, 2026 | | Time | {time} | 14:30 | | Filename | {filename} | report.pdf | | Title | {title} | Q4 Report | ``` -------------------------------- ### Full CV Example with Design Source: https://github.com/claude-office-skills/skills/blob/main/cv-builder/SKILL.md A comprehensive example of a CV including personal details, sections, and specific design choices. ```yaml cv: name: Sarah Chen location: New York, NY email: sarah@email.com phone: "+1-555-123-4567" website: https://sarahchen.dev social_networks: - network: LinkedIn username: sarahchen - network: GitHub username: sarahchen sections: summary: - "Full-stack developer with 8 years of experience building scalable web applications. Passionate about clean code and user experience." experience: - company: Startup Inc position: Lead Developer location: New York, NY start_date: 2021-03 end_date: present highlights: - "Architected microservices handling 1M+ requests/day" - "Mentored 4 junior developers" - "Reduced deployment time by 60% with CI/CD" - company: Big Tech Co position: Software Engineer location: San Francisco, CA start_date: 2018-06 end_date: 2021-02 highlights: - "Built real-time analytics dashboard" - "Optimized database queries, 3x faster" education: - institution: Stanford University area: Computer Science degree: MS start_date: 2016 end_date: 2018 skills: - label: Languages details: Python, TypeScript, Go, SQL - label: Technologies details: React, Node.js, PostgreSQL, AWS, Docker - label: Practices details: Agile, TDD, Code Review, CI/CD design: theme: sb2nov font_size: 10pt ``` -------------------------------- ### File Organizer Skill - Document Naming Convention Example Source: https://github.com/claude-office-skills/skills/blob/main/file-organizer/SKILL.md Example of a recommended naming format for documents, including date, category, description, and version. ```text YYYY-MM-DD_Category_Description_v1.ext Example: 2026-01-29_Contract_ClientName_NDA_v1.pdf ``` -------------------------------- ### Install Camelot with Dependencies Source: https://github.com/claude-office-skills/skills/blob/main/table-extractor/SKILL.md Provides installation commands for Camelot, including optional dependencies for computer vision, and platform-specific instructions for macOS and Ubuntu. ```bash pip install camelot-py[cv] # Additional dependencies # macOS brew install ghostscript tcl-tk # Ubuntu apt-get install ghostscript python3-tk ``` -------------------------------- ### Clone Repository and Navigate Source: https://github.com/claude-office-skills/skills/blob/main/CONTRIBUTING_KNOWLEDGE.md Initial steps to set up your local development environment by cloning the project repository and changing into the project directory. ```bash git clone https://github.com/YOUR_USERNAME/skills.git cd skills ``` -------------------------------- ### n8n Workflow Example Source: https://github.com/claude-office-skills/skills/blob/main/whatsapp-automation/SKILL.md An example n8n workflow for processing Shopify orders, including steps for getting customer details, formatting order information, sending WhatsApp templates, and logging to a CRM. ```yaml trigger: Shopify Order Created steps: 1. Get customer phone 2. Format order details 3. Send WhatsApp template 4. Log to CRM ``` -------------------------------- ### User Prompts for PDF Page Numbering Source: https://github.com/claude-office-skills/skills/blob/main/pdf-watermark/SKILL.md Examples of natural language prompts for adding page numbers to PDFs. Supports custom formats and starting pages. ```plaintext "Add page numbers to this PDF" "Number pages starting from page 3" "Add 'Page X of Y' at the bottom center" ``` -------------------------------- ### Example Folder Structure Source: https://github.com/claude-office-skills/skills/blob/main/CONTRIBUTING.md This is the recommended folder structure for a new skill. The SKILL.md file is mandatory, while others are optional. ```bash your-skill-name/ ├── SKILL.md # Required: Main skill file ├── README.md # Optional: Extra documentation ├── examples/ # Optional: Example files │ ├── input/ │ └── output/ └── assets/ # Optional: Images for documentation ``` -------------------------------- ### Install and Use MarkItDown via Command Line Source: https://github.com/claude-office-skills/skills/blob/main/office-to-md/SKILL.md Provides instructions for installing the markitdown library using pip and demonstrates basic command-line usage for converting a file to Markdown, with options for redirecting output. ```bash # Install pip install markitdown # Convert file markitdown document.docx > output.md # Or with output file markitdown document.docx -o output.md ``` -------------------------------- ### Example: Sales Dashboard Setup Source: https://github.com/claude-office-skills/skills/blob/main/xlsx-manipulation/SKILL.md Initializes a new workbook and worksheet titled 'Sales Dashboard' for creating a sales dashboard. Imports necessary modules for charting and styling. ```python from openpyxl import Workbook from openpyxl.chart import BarChart, PieChart, Reference from openpyxl.styles import Font, PatternFill wb = Workbook() ws = wb.active ws.title = "Sales Dashboard" ``` -------------------------------- ### MCP Hub Skill Configuration Example Source: https://github.com/claude-office-skills/skills/blob/main/mcp-hub/SKILL.md Example JSON configuration for enabling and setting up MCP servers like filesystem and Google Drive within the skill. ```json { "mcpServers": { "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "/path/to/documents" ] }, "google-drive": { "command": "npx", "args": ["-y", "@anthropic/mcp-google-drive"] } } } ``` -------------------------------- ### New Hire Onboarding Workflow (YAML) Source: https://github.com/claude-office-skills/skills/blob/main/hr-automation/SKILL.md Outlines a comprehensive onboarding process from offer acceptance through the first month, detailing tasks and timelines for pre-start, first day, first week, and first month. ```yaml onboarding_workflow: trigger: offer_accepted duration: 30_days pre_start: day_minus_14: - send_welcome_email - collect_documents: [id, tax_forms, direct_deposit] - order_equipment: laptop, peripherals day_minus_7: - create_accounts: [email, slack, tools] - add_to_systems: hris, payroll - schedule_orientation - assign_buddy day_minus_1: - setup_desk: if_office - ship_equipment: if_remote - send_first_day_info first_day: morning: - welcome_meeting: with_manager - it_setup: credentials, tools - team_introductions afternoon: - hr_orientation: policies, benefits - access_verification - buddy_lunch first_week: - daily_checkins: with_manager - tool_training: as_needed - team_meetings: join_all - documentation_review first_month: - weekly_1on1s: with_manager - project_assignment - goal_setting - 30_day_survey ``` -------------------------------- ### Create Flowchart with Mermaid Source: https://github.com/claude-office-skills/skills/blob/main/diagram-creator/SKILL.md Use Mermaid syntax to define a flowchart. This example shows a simple decision tree with 'Start', 'Decision?', 'Action 1', 'Action 2', and 'End' nodes. ```mermaid flowchart TD A[Start] --> B{Decision?} B -->|Yes| C[Action 1] B -->|No| D[Action 2] C --> E[End] D --> E ``` -------------------------------- ### Twitter API - Get User Timeline Analytics Source: https://github.com/claude-office-skills/skills/blob/main/twitter-automation/SKILL.md Example of retrieving user timeline tweets and their public metrics using the Twitter API v2. Requires a userId and specifies tweet fields and max results. ```javascript // Get Analytics const metrics = await twitter.v2.userTimeline(userId, { "tweet.fields": ["public_metrics"], max_results: 100 }); ``` -------------------------------- ### Discord Bot Setup Steps Source: https://github.com/claude-office-skills/skills/blob/main/discord-bot/SKILL.md Defines the sequential steps for creating and setting up a Discord bot application, including obtaining a token, configuring intents, and inviting the bot to a server. ```yaml setup_steps: 1. create_application: url: https://discord.com/developers/applications action: "New Application" 2. create_bot: section: "Bot" action: "Add Bot" copy: token 3. configure_intents: enable: - PRESENCE_INTENT - SERVER_MEMBERS_INTENT - MESSAGE_CONTENT_INTENT 4. invite_bot: section: "OAuth2 > URL Generator" scopes: [bot, applications.commands] permissions: [based_on_needs] generate: invite_link ``` -------------------------------- ### Task Reminder System Setup - n8n Workflow Source: https://github.com/claude-office-skills/skills/blob/main/sheets-automation/SKILL.md An example of setting up an automated task reminder system using Google Sheets and n8n. It outlines the required sheet structure, automation workflow triggers and actions, and sample reminder messages. ```markdown # Task Reminder System Setup ## Sheet Structure Create a sheet named "Tasks" with these columns: | A | B | C | D | E | F | |---|---|---|---|---|---| | Task | Assignee | Due Date | Priority | Status | Slack ID | | Review proposal | Alice | 2026-01-31 | High | In Progress | U12345 | | Update docs | Bob | 2026-02-01 | Medium | Todo | U67890 | ## Automation Workflow ```yaml trigger: Every 15 minutes actions: 1. Check for tasks due within 24 hours 2. Send Slack DM to assignee 3. Post daily summary at 6pm ``` ## Sample Reminders **Overdue Alert:** ``` 🚨 *OVERDUE*: Review proposal Due: Jan 29 (1 day ago) Priority: High Please update status or mark complete. ``` **Due Today:** ``` ⏰ *Due Today*: Update documentation Priority: Medium You've got this! 💪 ``` **Daily Recap (6pm):** ``` 📋 *Daily Task Recap* ✅ Completed today: 5 ⏳ In Progress: 3 🚨 Overdue: 1 Tomorrow's priorities: • Review proposal (High) - Alice • Client call prep (High) - Bob ``` ## Setup Steps 1. Create Google Sheet with structure above 2. Set up n8n workflow with Schedule trigger 3. Connect Google Sheets and Slack nodes 4. Test with sample tasks 5. Activate workflow Would you like the complete n8n workflow JSON? ``` -------------------------------- ### MCP Filesystem Tool Examples (Python) Source: https://github.com/claude-office-skills/skills/blob/main/mcp-hub/SKILL.md Illustrates the available tools provided by the filesystem MCP server for interacting with local files. ```python # MCP tools become available to Claude automatically # Example: filesystem MCP provides these tools: # read_file(path) - Read file contents # write_file(path, content) - Write to file # list_directory(path) - List directory contents # search_files(query) - Search for files ``` -------------------------------- ### Install unstructured library Source: https://github.com/claude-office-skills/skills/blob/main/data-extractor/SKILL.md Basic installation command for the unstructured library. Use `[all-docs]` for all dependencies, `[pdf]` for PDF processing, or specify formats like `[docx,pptx,xlsx]`. ```bash # Basic installation pip install unstructured # With all dependencies pip install "unstructured[all-docs]" # For PDF processing pip install "unstructured[pdf]" # For specific formats pip install "unstructured[docx,pptx,xlsx]" ``` -------------------------------- ### Install Agent via Moltbot Source: https://github.com/claude-office-skills/skills/blob/main/agents/README.md Use this command to install an agent using Moltbot. Ensure you have curl installed. ```bash # Install an agent curl -fsSL https://molt.bot/install | bash -s -- --agent legal-specialist ``` -------------------------------- ### Install pdf2docx Package Source: https://github.com/claude-office-skills/skills/blob/main/pdf-to-docx/SKILL.md Install the pdf2docx library using pip. For image handling capabilities, also install Pillow. ```bash pip install pdf2docx # For image handling pip install Pillow ``` -------------------------------- ### SaaS Implementation Proposal Example Source: https://github.com/claude-office-skills/skills/blob/main/proposal-writer/SKILL.md A complete markdown example of a SaaS Implementation Proposal, detailing the executive summary, investment, and timeline for a software implementation project. ```markdown # HR Software Implementation Proposal **Prepared for:** [Client Company] **Prepared by:** [Your Company] **Date:** [Date] --- ## Executive Summary We're excited to partner with [Client Company] to modernize your HR operations with our comprehensive HR software platform. This implementation will streamline your people processes, reduce administrative burden, and provide real-time insights across your 500-person organization. **Key Benefits:** - Reduce HR administrative time by 40% - Single source of truth for all employee data - Self-service portal reducing HR tickets by 60% - Full implementation in 12 weeks --- ## Investment Summary | Phase | Investment | |-------|------------| | Implementation & Configuration | $45,000 | | Data Migration | $10,000 | | Training Program | $12,000 | | Go-Live Support | $8,000 | | **Total** | **$75,000** | *Includes 12 months of priority support* --- ## Implementation Timeline | Phase | Weeks | Activities | |-------|-------|------------| | Discovery & Planning | 1-2 | Requirements, data audit, project plan | | Configuration | 3-6 | System setup, workflows, integrations | | Data Migration | 7-8 | Historical data import, validation | | Testing & Training | 9-11 | UAT, admin training, employee training | | Go-Live & Support | 12 | Launch, monitoring, optimization | --- [Continue with full proposal structure...] ``` -------------------------------- ### Install xlwings Source: https://github.com/claude-office-skills/skills/blob/main/excel-automation/SKILL.md Installs the xlwings library using pip. Includes an optional command to install the xlwings add-in for Excel. ```bash pip install xlwings # For add-in functionality xlwings addin install ``` -------------------------------- ### n8n Self-Hosted Docker Quick Start (Bash) Source: https://github.com/claude-office-skills/skills/blob/main/n8n-workflow/SKILL.md Provides a bash command to quickly start a self-hosted n8n instance using Docker. Mounts the n8n configuration directory to ensure persistence. ```bash # Docker quick start docker run -it --rm \ -p 5678:5678 \ -v ~/.n8n:/home/node/.n8n \ n8nio/n8n ``` -------------------------------- ### Install Surya OCR and Dependencies Source: https://github.com/claude-office-skills/skills/blob/main/layout-analyzer/SKILL.md Installs the Surya OCR library and necessary dependencies for PDF processing. Use `pip` for installation. ```bash pip install surya-ocr # For PDF processing pip install pdf2image ``` -------------------------------- ### Welcome Bot Configuration Source: https://github.com/claude-office-skills/skills/blob/main/telegram-bot/SKILL.md Sets up a welcome bot that sends a message to new members, suggests introductions, and optionally handles member departures. Includes moderation settings for spam and link filtering. ```yaml group_bot: on_member_join: action: | 1. Check if new member 2. Send welcome message 3. Share rules 4. Suggest introduction template: | 👋 Welcome to {group_name}, {user_name}! Please: 1. Read the /rules 2. Introduce yourself 3. Ask questions anytime! Enjoy your stay! 🎉 on_member_leave: action: optional_goodbye moderation: - spam_detection: auto_delete + warn - link_filtering: whitelist_only - flood_control: rate_limit ``` -------------------------------- ### Welcome Email Sequence - SaaS Product (Email 2) Source: https://github.com/claude-office-skills/skills/blob/main/email-marketing/SKILL.md The second email in a welcome sequence, sent on Day 2. It highlights a key feature designed for a quick win and provides simple setup instructions. ```markdown ## Email 2: Quick Win (Day 2) **Subject**: {first_name}, try this 2-minute trick ``` Hi {first_name}, Day 2, and I want to share the #1 feature our users love: **[Feature Name]** It takes 2 minutes to set up, and users report saving 1+ hour every day. Here's how: 1. Go to Settings → [Feature] 2. Click "Enable" 3. That's it! [Set it up now →] Tomorrow, I'll show you how {Customer} used this to {impressive result}. Talk soon, {founder_name} ``` ``` -------------------------------- ### Install MarkItDown Python Package Source: https://github.com/claude-office-skills/skills/blob/main/office-to-md/SKILL.md Install the MarkItDown library using pip. Additional packages can be installed for specific features like image or audio processing. ```bash pip install markitdown # For image/audio processing pip install markitdown[all] # For specific features pip install markitdown[images] # Image OCR pip install markitdown[audio] # Audio transcription ``` -------------------------------- ### Install Pandoc using Package Managers Source: https://github.com/claude-office-skills/skills/blob/main/md-to-office/SKILL.md Install Pandoc on macOS using Homebrew, on Ubuntu/Debian using apt-get, or on Windows using Chocolatey. The Python wrapper 'pypandoc' can be installed via pip. ```bash # macOS brew install pandoc # Ubuntu/Debian sudo apt-get install pandoc # Windows choco install pandoc # Python wrapper pip install pypandoc ``` -------------------------------- ### Install openpyxl Source: https://github.com/claude-office-skills/skills/blob/main/xlsx-manipulation/SKILL.md Installs the openpyxl library, which is used for reading and writing XLSX files. ```bash pip install openpyxl ``` -------------------------------- ### Configure Extensible Knowledge Base Source: https://github.com/claude-office-skills/skills/blob/main/README.md Example configuration for the 'SKILL.md' file to include knowledge bases. Specify paths for base knowledge and jurisdictional data. ```yaml knowledge: base: - mcp-servers/office-mcp/knowledge/base/risk_patterns.json jurisdictions: - mcp-servers/office-mcp/knowledge/base/jurisdictions/california.json ``` -------------------------------- ### Install pdfplumber Source: https://github.com/claude-office-skills/skills/blob/main/pdf-extraction/SKILL.md Install the pdfplumber library for PDF extraction. Pillow is optional for image debugging. ```bash pip install pdfplumber ``` ```bash # For image debugging (optional) pip install Pillow ``` -------------------------------- ### Slidev Installation Command Source: https://github.com/claude-office-skills/skills/blob/main/dev-slides/SKILL.md The command to initialize a new Slidev project. ```bash npm init slidev@latest ``` -------------------------------- ### TikTok Caption Example (Markdown) Source: https://github.com/claude-office-skills/skills/blob/main/social-publisher/SKILL.md Example of a TikTok caption for a video about remote work tips. ```markdown # Multi-Platform Captions: Remote Work Tips ## TikTok ``` POV: you finally master working from home 🏠💻 These 3 tips changed everything for me ⬇️ #remotework #wfh #productivityhacks #workfromhome #fyp ``` ``` -------------------------------- ### Example: Client Intake Form - Docassemble YAML Source: https://github.com/claude-office-skills/skills/blob/main/form-builder/SKILL.md A comprehensive example of a docassemble interview for legal client intake. It includes metadata, object definitions, introductory screens, detailed fields, conditional logic for matter types, and a summary screen. ```yaml metadata: title: Legal Client Intake short title: Intake --- objects: - client: Individual --- question: | Welcome to our intake form. subquestion: | Please answer the following questions. continue button field: intro_screen --- question: | What is your name? fields: - First Name: client.name.first - Last Name: client.name.last - Email: client.email datatype: email - Phone: client.phone required: False --- question: | What type of matter is this? field: matter_type choices: - Contract: contract - Dispute: dispute - Advisory: advisory --- if: matter_type == "contract" question: | Contract Details fields: - Contract Type: contract_type choices: - Employment - Service Agreement - NDA - Other Party: other_party - Estimated Value: contract_value datatype: currency --- mandatory: True question: | Thank you, ${ client.name.first }! subquestion: | **Summary:** - Name: ${ client.name } - Email: ${ client.email } - Matter: ${ matter_type } We will contact you within 24 hours. ``` -------------------------------- ### Install PaddleOCR Source: https://github.com/claude-office-skills/skills/blob/main/smart-ocr/SKILL.md Provides commands for installing the CPU and GPU versions of PaddleOCR, along with additional dependencies. ```bash # CPU version pip install paddlepaddle paddleocr # GPU version (CUDA 11.x) pip install paddlepaddle-gpu paddleocr # Additional dependencies pip install pdf2image Pillow ``` -------------------------------- ### Install Claude Office Skills via install.sh Source: https://context7.com/claude-office-skills/skills/llms.txt The install.sh script can be used to install all available skills or specific categories of skills. It fetches the script from GitHub and executes it. ```bash # Install ALL 136+ skills curl -fsSL https://raw.githubusercontent.com/claude-office-skills/skills/main/install.sh | bash ``` ```bash # Category-specific install bash install.sh --category legal # contract-review, nda-generator, ... bash install.sh --category hr # resume-tailor, cover-letter, offer-letter, ... bash install.sh --category finance # invoice-generator, expense-report, dcf-valuation, ... bash install.sh --category pdf # chat-with-pdf, pdf-converter, pdf-ocr, pdf-merge-split, ... bash install.sh --category workflow # n8n-workflow, mcp-hub, batch-processor, ... bash install.sh --category marketing # content-writer, seo-optimizer, google-ads-manager, ... ``` ```bash # Load a single skill via URL (works in Claude.ai chat) # "Please use this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md" # "Then review my contract: [upload file]" ``` -------------------------------- ### Welcome Email Sequence - SaaS Product (Email 5) Source: https://github.com/claude-office-skills/skills/blob/main/email-marketing/SKILL.md The fifth email in a welcome sequence, sent on Day 10. It highlights user accomplishments, introduces premium features, and offers a discount for upgrading. ```markdown ## Email 5: Conversion (Day 10) **Subject**: Ready to unlock full power? ``` Hi {first_name}, You've been using {Product} for 10 days. Here's what you've accomplished: 📊 {personalized_stats} Impressive! But you're only using 40% of what {Product} can do. **With Pro, you unlock:** ✅ {Pro feature 1} ✅ {Pro feature 2} ✅ {Pro feature 3} Teams who upgrade see {X%} more productivity on average. [Upgrade to Pro →] Use code WELCOME20 for 20% off your first year. {founder_name} ``` ``` -------------------------------- ### File Organizer Skill - Image Naming Convention Example Source: https://github.com/claude-office-skills/skills/blob/main/file-organizer/SKILL.md Example of a recommended naming format for images, including date, event/project, description, and sequence number. ```text YYYY-MM-DD_Event/Project_Description_NNN.ext Example: 2026-01-29_ProductLaunch_HeroImage_001.png ``` -------------------------------- ### Instagram Reel Caption Example (Markdown) Source: https://github.com/claude-office-skills/skills/blob/main/social-publisher/SKILL.md Example of an Instagram Reel caption for remote work tips. ```markdown ## Instagram Reel ``` 3 years of remote work taught me these game-changers 🚀 The fake commute one? Actually life-changing. Save this for your next WFH day 📌 . . . #remotework #workfromhome #productivitytips #wfhlife #careeradvice #worklifebalance #homeoffice #remoteworker #digitalnomad #productivity ``` ``` -------------------------------- ### Template Syntax Examples Source: https://github.com/claude-office-skills/skills/blob/main/template-engine/SKILL.md Illustrates basic Jinja2 template syntax for variable substitution, loops, conditionals, and filters. ```jinja2 {{ variable }} {% for item in list %} - Loop {% if condition %} - Conditional {{ date | format_date }} - Filter ``` -------------------------------- ### Install python-docx Source: https://github.com/claude-office-skills/skills/blob/main/docx-manipulation/SKILL.md Installs the python-docx library using pip. This is the primary tool for manipulating DOCX files in Python. ```bash pip install python-docx ``` -------------------------------- ### Query Notion Database Example Source: https://github.com/claude-office-skills/skills/blob/main/notion-automation/SKILL.md An example JSON payload for querying a Notion database, including filters and sorting. ```json // n8n Notion Query { "database_id": "abc123", "filter": { "and": [ { "property": "Status", "select": { "equals": "In Progress" } }, { "property": "Due Date", "date": { "on_or_before": "{{$today}}" } } ] }, "sorts": [ { "property": "Priority", "direction": "ascending" } ] } ``` -------------------------------- ### Source and Target Database Setup Source: https://github.com/claude-office-skills/skills/blob/main/database-sync/SKILL.md Configures connection details for both source and target databases, including host, port, credentials, and SSL settings. ```yaml sync_config: source: type: postgresql host: "source-db.example.com" port: 5432 database: "production" credentials: type: secret_manager path: "db/source/credentials" ssl: required target: type: mysql host: "target-db.example.com" port: 3306 database: "analytics" credentials: type: secret_manager path: "db/target/credentials" ssl: required sync_settings: mode: incremental batch_size: 10000 parallel_tables: 4 retry_attempts: 3 checkpoint_interval: 5_minutes ```