Operations Toolkit
Document conversion, meeting minutes, doc consolidation, internal comms, and diagram generation.
Install the whole bundle
5 skills into ~/.claude/skills/. Free.
Paste into your terminal. Restart Claude Code afterwards — new skills are picked up on startup.
git clone https://github.com/daymade/claude-code-skills.git /tmp/daymade__claude-code-skills
mkdir -p ~/.claude/skills/docs-cleaner-daymade && cp -r /tmp/daymade__claude-code-skills/daymade-docs/docs-cleaner/. ~/.claude/skills/docs-cleaner-daymade/
mkdir -p ~/.claude/skills/doc-to-markdown-daymade && cp -r /tmp/daymade__claude-code-skills/daymade-docs/doc-to-markdown/. ~/.claude/skills/doc-to-markdown-daymade/
mkdir -p ~/.claude/skills/meeting-minutes-taker-daymade && cp -r /tmp/daymade__claude-code-skills/daymade-docs/meeting-minutes-taker/. ~/.claude/skills/meeting-minutes-taker-daymade/
git clone https://github.com/anthropics/skills.git /tmp/anthropics__skills
mkdir -p ~/.claude/skills/internal-comms && cp -r /tmp/anthropics__skills/skills/internal-comms/. ~/.claude/skills/internal-comms/
mkdir -p ~/.claude/skills/mermaid-tools-daymade && cp -r /tmp/daymade__claude-code-skills/daymade-docs/mermaid-tools/. ~/.claude/skills/mermaid-tools-daymade/This copies each skill's full folder (SKILL.md plus any supporting scripts, reference docs, or asset templates) so every skill works out of the box. Safe default.
Faster alternative (instruction-only skills)
Skips the git clone and downloads only each SKILL.md. Avoid if any skill in the bundle ships Python scripts, reference markdowns, or asset templates — they'll be missing and the skill will fail when it tries to load them.
mkdir -p ~/.claude/skills/docs-cleaner-daymade && curl -fsSL https://raw.githubusercontent.com/daymade/claude-code-skills/main/daymade-docs/docs-cleaner/SKILL.md -o ~/.claude/skills/docs-cleaner-daymade/SKILL.md
mkdir -p ~/.claude/skills/doc-to-markdown-daymade && curl -fsSL https://raw.githubusercontent.com/daymade/claude-code-skills/main/daymade-docs/doc-to-markdown/SKILL.md -o ~/.claude/skills/doc-to-markdown-daymade/SKILL.md
mkdir -p ~/.claude/skills/meeting-minutes-taker-daymade && curl -fsSL https://raw.githubusercontent.com/daymade/claude-code-skills/main/daymade-docs/meeting-minutes-taker/SKILL.md -o ~/.claude/skills/meeting-minutes-taker-daymade/SKILL.md
mkdir -p ~/.claude/skills/internal-comms && curl -fsSL https://raw.githubusercontent.com/anthropics/skills/main/skills/internal-comms/SKILL.md -o ~/.claude/skills/internal-comms/SKILL.md
mkdir -p ~/.claude/skills/mermaid-tools-daymade && curl -fsSL https://raw.githubusercontent.com/daymade/claude-code-skills/main/daymade-docs/mermaid-tools/SKILL.md -o ~/.claude/skills/mermaid-tools-daymade/SKILL.mdWhat's inside
Documentation Consolidator
daymade
Consolidates redundant documentation while preserving all valuable content. This skill should be used when users want to clean up documentation bloat, merge redundant docs, reduce documentation sprawl, or consolidate multiple files covering the same topic. Triggers include "clean up docs", "consolidate documentation", "too many doc files", "merge these docs", or when documentation exceeds 500 lines across multiple files covering similar topics.
Document to Markdown Converter
daymade
Converts DOCX/PDF/PPTX to high-quality Markdown with automatic post-processing. Fixes pandoc grid tables, simple tables, image paths, CJK bold spacing, attribute noise, and code blocks. Benchmarked best-in-class (7.6/10) against Docling, MarkItDown, Pandoc raw, and Mammoth. Trigger on "convert document", "docx to markdown", "parse word", "doc to markdown", "解析word", "转换文档".
Meeting Minutes from Transcript
daymade
Transforms raw meeting transcripts into high-fidelity, structured meeting minutes with iterative review for completeness. This skill should be used when (1) a meeting transcript is provided and meeting minutes, notes, or summaries are requested, (2) multiple versions of meeting minutes need to be merged without losing content, (3) existing minutes need to be reviewed against the original transcript for missing items, (4) transcript has anonymous speakers like "Speaker 1/2/3" that need identification. Features include: speaker identification via feature analysis (word count, speaking style, topic focus) with context.md team directory mapping, intelligent file naming from content, integration with transcript-fixer for pre-processing, evidence-based recording with speaker quotes, Mermaid diagrams for architecture discussions, multi-turn parallel generation to avoid content loss, and iterative human-in-the-loop refinement.
Internal Comms Writer
anthropics
A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).
Mermaid Diagram to PNG
daymade
Extracts Mermaid diagrams from markdown files and generates high-quality PNG images using bundled scripts. Activates when working with Mermaid diagrams, converting diagrams to PNG, extracting diagrams from markdown, or processing markdown files with embedded Mermaid code.