Back to Discover

skills

skill

claude-office-skills

A curated collection of practical Claude Skills for real-world office tasks

View on GitHub
352 starsMITSynced Aug 2, 2026

Install to Claude Code

/plugin marketplace add claude-office-skills/skills

README

Claude Office Skills

A curated collection of practical Claude Skills for real-world office tasks. Zero setup required.

Awesome License: MIT PRs Welcome Skills MCP Tools


๐Ÿš€ NEW: Office MCP Server

39 fully-implemented tools for Office document operations via MCP (Model Context Protocol).

ModuleToolsCapabilities
PDF10Extract, merge, split, compress, watermark, forms, OCR
Spreadsheet7Read/write Excel, analyze, formulas, pivot tables
Document6Create/edit Word, templates, merge documents
Conversion9xlsxโ‡”csv, docxโ‡”md, jsonโ†’xlsx, batch convert
Presentation7Create PPT, extract, Markdownโ†’slides, HTML export

Quick Start:

cd mcp-servers/office-mcp && npm install && npm run build

๐Ÿ“– Full MCP Documentation | ๐Ÿ’ป MCP Source Code


๐Ÿ“š NEW: Extensible Knowledge Base

Domain knowledge as structured data - customize Claude's expertise for your jurisdiction and industry.

LayerDescriptionCustomizable
BaseUniversal risk patterns, completeness checklistsCore team
JurisdictionsUS, China, EU, California...Community
DomainHealthcare, Finance, Government...Community
CustomYour company rules, private knowledgeYou

Available Knowledge:

  • 15+ risk patterns (liability, IP, termination, confidentiality...)
  • 19 completeness check items
  • 4 jurisdictions (US Federal, California, China, EU)

Quick Start:

# In your SKILL.md
knowledge:
  base:
    - mcp-servers/office-mcp/knowledge/base/risk_patterns.json
  jurisdictions:
    - mcp-servers/office-mcp/knowledge/base/jurisdictions/california.json

๐Ÿ“– Knowledge Index | ๐Ÿค Contribute Knowledge


๐Ÿค– NEW: Pre-built Agents

5 ready-to-deploy AI personas with curated skills, knowledge, and personality.

AgentRoleKey SkillsDeploy To
โš–๏ธ Legal SpecialistContract Reviewcontract-review, nda-generatorAll platforms
๐Ÿ“Š Data AnalystExcel & Financedata-analysis, dcf-valuationAll platforms
๐Ÿ“‹ Admin AssistantEmail & Calendaremail-drafter, meeting-notesAll platforms
๐Ÿ”ฌ Research AnalystDeep Researchdeep-research, company-researchAll platforms
โœ๏ธ Content CreatorWriting & Marketingcontent-writer, seo-optimizerAll platforms

Quick Deploy:

# Install agent to Moltbot
curl -fsSL https://molt.bot/install | bash -s -- --agent legal-specialist

๐Ÿ“– All Agents | ๐Ÿ› ๏ธ Create Custom Agent


Contents


What Are Claude Skills?

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.

Unlike generic AI prompts, these skills contain embedded domain knowledge and professional workflows that make Claude genuinely useful for business tasks.

This repository focuses on Office & Business scenarios:

  • Contracts, invoices, proposals
  • HR documents, resumes, offer letters
  • Reports, presentations, emails
  • Data analysis and document processing

Getting Started

Using Skills in Claude.ai

  1. Click any skill below
  2. Copy the SKILL.md content
  3. Paste into your Claude conversation
  4. Upload your document and ask for help

Using Skills in Claude Code

# 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

Using Skills via Direct Link

Please use this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md

Then review my contract: [upload file]

Using Skills via API

import anthropic

client = anthropic.Anthropic(api_key="your-api-key")

# Load skill content
skill_content = open("contract-review/SKILL.md").read()

response = client.messages.create(
    model="claude-sonnet-4-20250514",
    system=skill_content,
    messages=[{"role": "user", "content": "Review this contract..."}]
)

Using Skills with Moltbot (Clawdbot)

One-click install all 136+ Office Skills to your Moltbot:

# 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

Available categories: legal, hr, finance, pdf, workflow, template, doc, conversion, parsing, slide, productivity, marketing

Or install a single skill via chat:

Install this skill: https://raw.githubusercontent.com/claude-office-skills/skills/main/contract-review/SKILL.md

Skills

Legal & Contracts

SkillDescriptionDepartmentLink
Contract ReviewAnalyze contracts for risks, check completeness, get recommendationsLegalView
NDA GeneratorCreate professional NDAs for different scenariosLegalView

HR & Careers

SkillDescriptionDepartmentLink
Resume TailorOptimize resume for specific job applicationsHR/PersonalView
Cover LetterWrite compelling, personalized cover lettersHR/PersonalView
Job DescriptionCreate clear, inclusive job postingsHRView
Offer LetterGenerate professional employment offersHRView
Applicant ScreeningScreen candidates against job requirementsHRView

Finance & Business

SkillDescriptionDepartmentLink
Invoice GeneratorCreate professional invoices with proper formattingFinanceView
Expense ReportOrganize and summarize business expensesFinanceView
Invoice OrganizerOrganize, categorize, and track invoicesFinanceView
Proposal WriterWrite winning business proposalsSalesView

Sales & Marketing

SkillDescriptionDepartmentLink
Lead ResearchResearch company/contact info for sales outreachSalesView
Lead QualificationScore and qualify leads based on criteriaSalesView
Content WriterResearch and write content (blogs, articles)MarketingView
Brand GuidelinesCreate and maintain brand style guidesMarketingView

Communication & Writing

SkillDescriptionDepartmentLink
Internal CommsStatus reports, newsletters, FAQsOpsView
Doc Co-authoringStructured workflow for writing documentationAllView
Email DrafterProfessional email templates and responsesAllView
Email ClassifierAuto-categorize emails by type and priorityAllView
Suspicious EmailAnalyze emails for phishing and scam indicatorsSecurityView

Productivity

SkillDescriptionDepartmentLink
Meeting NotesTransform raw notes into structured summariesAllView
Weekly ReportCreate consistent status updatesAllView
File OrganizerOrganize and rename files based on contentAllView
Changelog GeneratorGenerate release notes from commits/updatesDev/PMView
Data AnalysisAnalyze spreadsheet data and generate insightsAllView

PDF Power Tools

Comprehensive PDF manipulation skills inspired by Stirling-PDF (73k+ stars).

SkillDescriptionDepartmentLink
Chat with PDFAnswer questions, summarize, extract from PDFsAllView
PDF ConverterConvert PDF to/from Word, Excel, Image formatsAllView
PDF OCRExtract text from scanned PDFs using OCRAllView
PDF Merge/SplitCombine or split PDF documentsAllView
PDF Form FillerFill out PDF forms programmaticallyAllView
PDF CompressReduce PDF file size while maintaining qualityAllView
PDF WatermarkAdd watermarks, page numbers, headers/footersAllView

Document Processing (Official)

Official Anthropic skills for working with Office documents. See official-skills/ for details.

SkillDescriptionDepartmentLicense
DOCXWord document creation, editing, tracked changesAllSource-available
XLSXExcel spreadsheets, formulas, financial modelsFinance/OpsSource-available
PPTXPowerPoint presentationsMarketing/AllSource-available
PDFPDF processing, forms, extractionAllSource-available

Core Document Skills

Based on Python libraries for native Office document manipulation.

SkillLibraryStarsDescriptionLink
DOCX Manipulationpython-docx5.4kCreate/edit Word documents programmaticallyView
PPTX Manipulationpython-pptx3.2kCreate/edit PowerPoint presentationsView
XLSX Manipulationopenpyxl3.8kCreate/edit Excel spreadsheetsView
Excel Automationxlwings3.3kAdvanced Excel automation with PythonView
PDF Extractionpdfplumber9.6kExtract text, tables from PDFsView

Document Conversion Skills

Based on document format conversion tools.

SkillLibraryStarsDescriptionLink
MD to Officepandoc42kConvert Markdown to Word/PPT/PDFView
Office to MDmarkitdown86kConvert Office docs to Markdown (Microsoft)View
PDF to DOCXpdf2docx3.3kConvert PDF to editable WordView
HTML to PPTmarp-cli3.1kConvert HTML/Markdown to presentationsView
Batch Convertmulti-format-Multi-format batch conversion pipelineView

Document Parsing & OCR Skills

Based on document parsing and OCR libraries.

SkillLibraryStarsDescriptionLink
Smart OCRPaddleOCR69kOCR for 100+ languagesView
Doc Parserdocling51.5kIBM's document parser for complex layoutsView
Layout Analyzersurya19kAnalyze document structure and layoutView
Data Extractorunstructured14kExtract data from any document formatView
Table Extractorcamelot4.2kExtract tables from PDFs accuratelyView

Presentation Skills

Based on presentation generation tools.

SkillLibraryStarsDescriptionLink
HTML Slidesreveal.js70.5kCreate HTML-based presentationsView
Dev Slidesslidev44kDeveloper-friendly Vue-based slidesView
MD Slidesmarp3.1kMarkdown to PDF/PPTX presentationsView
Report Generatorgilfoyle-Generate data reports automaticallyView
AI Slidessli-ai-AI-powered slide generationView

Template Skills

Based on document template engines.

SkillLibraryStarsDescriptionLink
CV Builderrendercv15.4kYAML to PDF resume generatorView
Form Builderdocassemble919Interactive form builderView
Contract Templateaccord-project322Smart contract templatesView
Invoice Templateeasy-invoice476PDF invoice generationView
Template Enginedocxtpl2.1kDocument auto-fill engineView

Workflow & Automation Skills

Based on workflow automation platforms.

SkillLibraryStarsDescriptionLink
n8n Workflown8n172k7800+ workflow templatesView
MCP Hubmcp-servers40k+1200+ AI Agent toolsView
Office MCPoffice-mcp-Word/Excel/PPT MCP operationsView
Batch Processorcustom-Bulk document processingView
Doc Pipelinecustom-Document workflow pipelineView
Webhook Automation--Build webhook integrationsView
Browser AutomationPuppeteer-Web scraping & testingView

CRM & Sales Automation

SkillDescriptionPlatformLink
CRM AutomationMulti-CRM workflows (HubSpot, Salesforce)HubSpot/SFView
Pipedrive AutomationDeal management, pipeline trackingPipedriveView
Lead RoutingIntelligent lead assignmentMultiView
Customer SuccessOnboarding, health scoring, retentionMultiView

Marketing & Advertising

SkillDescriptionPlatformLink
Google Ads ManagerCampaign management, keyword researchGoogleView
Facebook/Meta AdsFB & Instagram advertisingMetaView
TikTok MarketingContent strategy, posting, analyticsTikTokView
LinkedIn AutomationB2B marketing, lead generationLinkedInView
Twitter/X AutomationSocial media managementTwitterView
Mailchimp AutomationEmail marketing campaignsMailchimpView
Email MarketingMulti-platform email automationMultiView
SEO OptimizerSEO strategy and optimization-View
Ads CopywriterMulti-platform ad copy generationMultiView
Social PublisherCross-platform social publishingMultiView

E-commerce

SkillDescriptionPlatformLink
Shopify AutomationOrders, inventory, customersShopifyView
WooCommerce AutomationWordPress e-commerce automationWooCommerceView
Amazon SellerFBA, inventory, PPC managementAmazonView

Communication & Messaging

SkillDescriptionPlatformLink
Slack WorkflowsSlack automation & integrationsSlackView
Microsoft TeamsTeams messaging & meetingsTeamsView
Discord BotCommunity management & botsDiscordView
Telegram BotBot development & automationTelegramView
WhatsApp AutomationBusiness messaging & supportWhatsAppView
Twilio SMSSMS & voice automationTwilioView

Project Management

SkillDescriptionPlatformLink
Jira AutomationIssue tracking, sprintsJiraView
Asana AutomationTask & project managementAsanaView
Monday.com AutomationWork management platformMondayView
Linear AutomationEngineering issue trackingLinearView
Trello AutomationKanban board managementTrelloView
ClickUp AutomationAll-in-one productivityClickUpView
Notion AutomationDatabase & wiki automationNotionView
Airtable AutomationDatabase automationAirtableView

Customer Support

SkillDescriptionPlatformLink
Zendesk AutomationTicket management & routingZendeskView
Intercom AutomationCustomer messaging & supportIntercomView

Financial Analysis

SkillDescriptionDepartmentLink
Stock AnalysisStock research & analysisFinanceView
DCF ValuationDiscounted cash flow modelsFinanceView
Financial ModelingBuild financial modelsFinanceView
Company ResearchCompany deep researchFinanceView
Investment MemoWrite investment memosFinanceView
Crypto ReportCryptocurrency analysisFinanceView
SaaS MetricsMRR, ARR, churn analysisFinanceView

Accounting & Payments

SkillDescriptionPlatformLink
QuickBooks AutomationBookkeeping & accountingQuickBooksView
Stripe PaymentsPayment processing & subscriptionsStripeView
Invoice AutomationMulti-platform invoicingMultiView
Expense TrackerReceipt processing & trackingMultiView
Subscription ManagementSaaS billing lifecycleMultiView

Data Engineering

SkillDescriptionUse CaseLink
ETL PipelineExtract, Transform, Load workflowsDataView
Database SyncCross-database synchronizationDataView
Sheets AutomationGoogle Sheets workflowsProductivityView
Gmail WorkflowsEmail automation & organizationProductivityView
Calendar AutomationScheduling & time managementProductivityView

Research & Intelligence

SkillDescriptionUse CaseLink
Deep ResearchMulti-source deep researchResearchView
Web SearchIntelligent web searchResearchView
Academic SearchScholarly paper researchResearchView
Competitive AnalysisCompetitor researchStrategyView
News MonitorNews tracking & alertsIntelligenceView

Visual & Creative

SkillDescriptionUse CaseLink
Image GenerationAI image creationCreativeView
Diagram CreatorTechnical diagramsDocumentationView
Chart DesignerData visualizationAnalyticsView
InfographicInfographic designMarketingView
PPT VisualPresentation visualsPresentationsView

Media & Content

SkillDescriptionPlatformLink
YouTube AutomationVideo management & analyticsYouTubeView
Podcast AutomationPodcast production workflowsMultiView
TranscriptionAudio/video transcriptionMultiView

Smart Home & IoT

SkillDescriptionPlatformLink
Home AssistantSmart home automationHAView
Spotify AutomationMusic playback & playlistsSpotifyView
Weather AutomationWeather-based workflowsMultiView
Apple ShortcutsiOS/macOS automationAppleView

DevOps & Security

SkillDescriptionUse CaseLink
DevOps AutomationCI/CD & infrastructureDevOpsView
Security MonitoringThreat detection & responseSecurityView

HR & Operations

SkillDescriptionDepartmentLink
HR AutomationRecruiting & onboarding workflowsHRView
DocuSign AutomationE-signature workflowsLegal/OpsView

AI & Agents

SkillDescriptionUse CaseLink
AI Agent BuilderDesign multi-step AI agentsDevelopmentView
Obsidian AutomationKnowledge managementPKMView

Creating Skills

Skill Structure

Each skill is a folder containing a SKILL.md file with YAML frontmatter:

skill-name/
โ”œโ”€โ”€ SKILL.md          # Required: Skill instructions and metadata
โ”œโ”€โ”€ README.md         # Optional: Usage documentation
โ””โ”€โ”€ examples/         # Optional: Example files

Basic Skill Template

---
name: my-skill-name
description: A clear description of what this skill does
version: 1.0.0
author: your-name
license: MIT
---

# My Skill Name

## Overview
[What this skill does and when to use it]

## How to Use
[Step-by-step instructions]

## Domain Knowledge
[Embedded expertise that makes this skill valuable]

## Examples
[Real-world usage examples]

## Limitations
[What this skill cannot do]

What Makes a Good Skill?

  • Specific: Solves one clear problem
  • Knowledge-rich: Contains real domain expertise
  • Actionable: Clear steps and outputs
  • Tested: Actually works with Claude
  • Documented: Examples and edge cases

See CONTRIBUTING.md for detailed guidelines.


Architecture

Claude Office Skills Architecture

ComponentDescriptionUsers
Community Hub (this repo)Zero setup - copy & paste SKILL.md90% of users
AdvancedMCP Server + HTTP API + CloudflarePower users

Advanced Usage

For power users who need programmatic access or integrations:

RepositoryDescriptionFeatures
contract-review-skillFull MCP server + HTTP APIClaude Desktop, Cloudflare, CI/CD

Contributing

We welcome contributions! No coding required - just write clear instructions in Markdown.

Quick Contribution

  1. Fork this repo
  2. Create your-skill-name/SKILL.md
  3. Follow the template
  4. Submit a PR

Contribution Ideas

See our Skill Roadmap for planned skills and CONTRIBUTING.md for detailed guidelines.

Future skill ideas:

  • Privacy Policy - GDPR/CCPA compliant policies
  • Terms of Service - Fair, legally-sound ToS
  • Project Brief - Project scope and requirements
  • Signal Integration - Privacy-focused messaging
  • Sonos/Audio - Multi-room audio control
  • 3D Printing - Printer management & slicing

Resources

Official Documentation

Community Resources

Related Projects


License

This repository is licensed under the MIT License.

Individual skills may have different licenses - check each skill's folder for specific terms.


Acknowledgments

Inspired by:


Made with Claude, for everyone who works with documents.

Note: Claude Skills work across Claude.ai, Claude Code, and the Claude API. Once you create a skill, it's portable across all platforms.

Rendered live from claude-office-skills/skills's GitHub README โ€” not stored, always reflects the source repo.

0 Plugins

No plugins listed in this repo's manifest.

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet โ€” be the first to share an update.