A collection of production-ready skills for Claude Code and other AI coding assistants.
| Skill | Description |
|---|---|
| blog-editor | Brutal content editor for blog posts and articles |
| contrarian-thought-partner | Adversarial critique for stress-testing ideas |
| docs-auditor | Audit documentation against codebase for accuracy |
| folk-crm | Folk CRM integration with ID handling and tool guidance |
| pdfco | PDF.co integration for HTML-to-PDF and document manipulation |
| qa-tester | Comprehensive QA engineer for test design and edge cases |
| seo-optimizer | SEO analysis and optimization for content |
| skill-author | Create new skills from natural language descriptions |
| strategic-thought-partner | Collaborative strategic thinking for decision-makers |
| whitepaper-editor | Technical white paper review with source verification |
| zoom | Zoom meeting creation with proper calendar integration |
# Install a skill
mpak skill install @nimblebraininc/blog-editor
# List available skills
mpak skill searchCopy the skill folder to your project's .claude/skills/ directory:
cp -r blog-editor /path/to/project/.claude/skills/Once installed, skills are automatically available in Claude Code. Invoke them by:
- Using the Skill tool directly
- Triggering with natural language (e.g., "review this draft" triggers blog-editor)
Use the skill-author skill to create new skills:
Build me a skill that reviews PRs for security issues
Or follow the Agent Skills Specification.
Each skill versions independently using release-please with conventional commits.
See CLAUDE.md for detailed workflow documentation.
- Fork this repository
- Create a new skill in its own directory
- Include a
SKILL.mdwith proper frontmatter - Submit a pull request
Each skill must have:
- A directory named after the skill (kebab-case)
- A
SKILL.mdfile with YAML frontmatter containing:name(must match directory name)description(what it does and when to use it)metadata.version(semver)
- A
version.txtfile with the current version
Example structure:
my-skill/
├── SKILL.md
└── version.txt
Example SKILL.md:
---
name: my-skill
description: Does X when Y. Use when Z. Triggers include "phrase 1", "phrase 2".
metadata:
version: 1.0.0
category: development
tags:
- tag1
- tag2
---
# My Skill
[Skill content...]MIT