Skill Library for Claude Code

A comprehensive collection of Claude Code skill plugins for structured thinking, writing, leadership, and negotiation.

Skill Library for Claude Code

A collection of Claude Code skill plugins for thinking, writing, leadership, and negotiation. 41 skills across 6 domain plugins teach Claude structured frameworks from 109 books — covering process discipline, strategic planning, executive decision-making, fiction craft, non-fiction persuasion, and interpersonal negotiation.

Built by Joel Lewis.

Contributions welcome! Found a way to improve a skill or have a new one to add? See CONTRIBUTING.md.


Plugins

meta — Process Enforcement

Skills that govern how the agent operates, learns, and improves. Full rigor — includes iron laws, state machines, and rationalization tables.

SkillWhat Claude can do
getting-startedBootstrap a session and route to the correct skill
using-skillsEnforce the 1% rule — invoke skills before responding
writing-skillsAuthor new skills using TDD methodology
prompt-optimizerRefine prompts using the Patty 4-D methodology
mental-model-libraryApply cross-domain reasoning frameworks
learning-acceleratorSynthesize knowledge using meta-learning patterns

6 skills.


workflow — Strategic Discovery-to-Delivery

The full strategic planning chain from problem definition through validated deliverables. Full rigor — each skill enforces gates before proceeding.

SkillWhat Claude can do
problem-framingDefine and validate the problem before analysis
stakeholder-discoveryMap audiences, influence, and information needs
market-contextAnalyze competitive landscape and market dynamics
competitive-analysisStructured competitor teardown and positioning
buyer-personaBuild JTBD-driven personas with behavioral detail
business-caseConstruct ROI models and investment theses
prd-writingWrite product requirements using PR/FAQ method
pitch-deckBuild investor or internal pitch narratives
one-pagerDistill strategy into executive summary documents
executive-briefingCommunicate at board level with precision
assumption-auditValidate every key claim with evidence
stakeholder-reviewCollect structured feedback and iterate

12 skills. Designed as a chain: problem-framingstakeholder-discoverymarket-contextcompetitive-analysisbuyer-personabusiness-case → deliverables → assumption-auditstakeholder-review.


executive — Leadership & Organizational Execution

Leadership frameworks grounded in books by Munger, Taleb, Duke, Collins, and others. Standard rigor — guiding principles with source citations.

SkillWhat Claude can do
strategy-clarityCut through ambiguity to define strategic direction
devils-advocateStress-test proposals using inversion and fragility detection
operational-excellenceDesign systems for consistent execution
platform-strategistEvaluate and design platform business models
ownership-coachBuild accountability and ownership culture
first-90-daysNavigate leadership transitions effectively
hiring-talentEvaluate candidates beyond resume signals
team-builderDesign and develop high-performing teams
decision-frameworksApply structured decision-making under uncertainty

9 skills.


narrative — Fiction & Storytelling

Fiction craft techniques from masters of story structure, character design, and world-building.

SkillWhat Claude can do
fiction-architectDesign plot architecture with structural precision
character-vulnerabilityCreate characters with authentic emotional depth
world-building-logicBuild internally consistent fictional worlds
dialogue-craftWrite dialogue that reveals character and advances plot

4 skills.


rhetorician — Non-Fiction Writing & Persuasion

Writing craft for clarity, emotional resonance, and evidence-based persuasion.

SkillWhat Claude can do
non-fiction-precisionStructure arguments with clarity and logical rigor
copy-editorPolish prose for grammar, rhythm, and consistency
resonance-engineCraft writing that connects emotionally with readers
memo-stress-testerPressure-test memos and briefs for weak arguments
scientific-advertisingApply evidence-based advertising principles

5 skills.


dealmaker — Negotiation & Interpersonal Skills

Negotiation and communication frameworks from Voss, Fisher, Cialdini, and others.

SkillWhat Claude can do
negotiation-tacticianApply tactical empathy and calibrated questions
influence-architectDesign ethical influence strategies
rapport-builderBuild trust and connection in professional contexts
feedback-coachDeliver and receive feedback effectively
difficult-conversationsNavigate high-stakes interpersonal situations

5 skills.


Installation

Option 1: Claude Code Marketplace (Recommended)

Register the marketplace and install plugins:

# Add the marketplace
/plugin marketplace add JoelLewis/skill-library

# Install individual plugins
/plugin install meta@skill-library
/plugin install workflow@skill-library
/plugin install executive@skill-library
/plugin install narrative@skill-library
/plugin install rhetorician@skill-library
/plugin install dealmaker@skill-library

Or browse available plugins interactively with /plugin → Discover tab.

Option 2: Clone and Copy

Copy skills directly into a project:

git clone https://github.com/JoelLewis/skill-library.git
mkdir -p /path/to/your/project/.claude/skills

# Copy a single plugin's skills
cp -r skill-library/plugins/executive/skills/* /path/to/your/project/.claude/skills/

# Or copy everything
for plugin in skill-library/plugins/*/; do
  cp -r "$plugin"skills/* /path/to/your/project/.claude/skills/
done

What Gets Installed

your-project/
└── .claude/
    └── skills/
        ├── getting-started/       # from meta
        ├── problem-framing/       # from workflow
        ├── devils-advocate/       # from executive
        └── ...

After installing, Claude automatically picks up the skills. They appear in your available skills list and trigger based on context.


Repository Structure

skill-library/
├── .claude-plugin/
│   └── marketplace.json           # Marketplace definition (6 plugins)
├── plugins/
│   ├── meta/
│   │   ├── .claude-plugin/plugin.json
│   │   └── skills/
│   │       ├── getting-started/SKILL.md
│   │       ├── using-skills/SKILL.md
│   │       └── ...
│   ├── workflow/                   # 12 skills
│   ├── executive/                  # 9 skills
│   ├── narrative/                  # 4 skills
│   ├── rhetorician/                # 5 skills
│   └── dealmaker/                  # 5 skills
├── CLAUDE.md                       # Claude Code project instructions
├── GEMINI.md                       # Extraction architecture spec
└── PROGRESS.md                     # Completion report

Skill Architecture

Two Rigor Levels

Full rigor (meta + workflow, 18 skills) enforce process:

  • Iron Law — single non-negotiable constraint
  • State Machine — Graphviz workflow diagram
  • Rationalization Table — intercepts common shortcut-thinking
  • Red Flags — thoughts that indicate process drift
  • Diagnostic Checklist — testable acceptance criteria

Standard rigor (executive, narrative, rhetorician, dealmaker, 23 skills) encode expertise:

  • Guiding Principles — foundational ideas with source citations
  • Frameworks & Models — domain-specific mental models
  • Common Mistakes — typical failure modes
  • Diagnostic Checklist — validation criteria

Source Attribution

Every principle and framework cites its source book or article. No ungrounded methodologies. Sources include works by Voss, Fisher, Munger, Taleb, Duke, Cialdini, and 100+ other authors across 109 PDFs.

Skill Chaining

Skills declare requires and enhances dependencies in frontmatter. The workflow family forms a validated chain — each skill gates the next.


License

MIT