Skip to content

varunk130/claude-code-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

97 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

🧰 Claude Code Custom Skills

A curated, categorized library of production-grade skills for Claude Code β€” finance, product, strategy, and game theory.

Custom Skills Categories Plugin Skills License: MIT Built with Claude Code

Maintained by Varun Kulkarni


Table of Contents


What is a skill?

A skill is a single markdown file (SKILL.md) that gives Claude Code domain-specific knowledge, a structured workflow, and clear output expectations. Drop the file into ~/.claude/skills/ and Claude loads it on demand β€” invoked by slash command or by natural-language match against the description.

Every skill in this repository follows the same standard format (see Standard skill format) so they're easy to learn, easy to compose, and easy to extend.

How it works

flowchart LR
    A["πŸ’¬ You ask in<br/>Claude Code"] --> B["🧠 Claude matches<br/>skill trigger"]
    B --> C["πŸ“– SKILL.md loads<br/>workflow + rules"]
    C --> D["βš™οΈ Claude executes<br/>phased workflow"]
    D --> E["πŸ“¦ Structured output<br/>(memo, model, plan, doc)"]

    classDef step fill:#1a73e8,color:#fff,stroke:#1558b0,stroke-width:2px,rx:6,ry:6
    classDef io fill:#f8f9fa,color:#202124,stroke:#dadce0,stroke-width:1px,rx:6,ry:6
    class B,C,D step
    class A,E io
Loading

⚑ Quickstart

# 1. Clone this repo
git clone https://github.com/varunk130/claude-code-skills.git
cd claude-code-skills

# 2. Install all skills globally for Claude Code
mkdir -p ~/.claude/skills
cp -r skills/* ~/.claude/skills/

# 3. Restart Claude Code, then invoke any skill
#    Examples:
#      /dcf-valuation-builder
#      /opportunity-solution-tree
#      /strategic-landscape-mapper
#      /negotiation-strategist

Install a single category (e.g., only the finance skills):

mkdir -p ~/.claude/skills
cp -r skills/financial-analysis/* ~/.claude/skills/

Project-local install (skills available only in one project):

mkdir -p .claude/skills
cp -r /path/to/claude-code-skills/skills/<category>/* .claude/skills/

πŸ’‘ New to Claude Code skills? See the official skills guide for installation locations and discovery rules.


πŸ“‚ Skill Categories

Skills are organized into five categories. Each category folder has its own README with the full skill index and design principles.

Category Skills What it's for
πŸ’° Financial Analysis 6 Valuation, capital allocation, SaaS economics, cash management, fundamental analysis
πŸ“¦ Product Management 8 Discovery, prioritization, customer research, strategic decisions, communication
🧭 Strategic Management 9 Industry analysis, positioning, landscape mapping, OKRs, go-to-market
β™ŸοΈ Game Theory 5 Equilibrium analysis, negotiation, competitive dynamics, mechanism design
πŸ“„ Document Processing 1 PDF extraction, form filling, merging

Financial Analysis (6 skills)

Rigorous, defensible financial modeling and analysis. Outputs survive an investment committee or board grilling. β€” Category README

Skill What it produces
ai-agent-financial-analyst Software as a Service (SaaS) financial models: unit economics, ROI calculators, pricing scenarios, revenue projections
burn-rate-runway-planner Burn decomposition, scenario plans, lever stack, 13-week cash forecast, fundraise trigger calendar
capital-allocation-framework Ranked investment portfolio across NPV / IRR / PI / EAA plus strategic option value and risk-adjusted frontier
dcf-valuation-builder Full Discounted Cash Flow (DCF) with WACC build, two terminal-value methods reconciled, sensitivity table, football field
financial-statement-analyzer Form 10-K and Form 10-Q teardown with margin waterfall, quality-of-earnings score, accounting red-flag log
saas-cohort-analyzer Cohort retention triangles, NRR / GRR, LTV, CAC payback, movement bridge, segmentation cuts

Product Management (8 skills)

Skills for the modern product manager and product trio: continuous discovery, multi-framework prioritization, customer research synthesis. β€” Category README

Skill What it produces
ai-decision-engine Multi-framework strategic recommendations from full project context (Product Requirement Documents (PRDs), research, metrics, competitive intel)
ai-product-strategy AI opportunity assessments with build / buy / partner analysis and data moat evaluation
ai-stakeholder-translator 5 audience-tailored communications (engineering, executives, board, customers, sales) from one product update
customer-interview-synthesizer Coded transcripts, themes, Jobs-to-be-Done (JTBD) signals, forces of progress, opportunity hypotheses
jobs-to-be-done-extractor Functional / emotional / social job statements, job map, outcome scoring, hire / fire analysis
opportunity-solution-tree Outcome β†’ opportunities β†’ solutions β†’ assumption tests, as a living tree
product-discovery-coach Continuous discovery practice: weekly trio cadence, assumption mapping, discovery / delivery dual track
product-roadmap-prioritizer Reach-Impact-Confidence-Effort (RICE) plus Kano plus Must-Should-Could-Won't (MoSCoW) plus Cost of Delay scoring with convergence analysis and quarterly roadmap

Strategic Management (9 skills)

Classical and modern strategy frameworks executed with rigor. β€” Category README

Skill What it produces
blue-ocean-strategy-canvas As-is and to-be value curves, Eliminate-Reduce-Raise-Create (ERRC) grid, non-customer analysis, buyer utility map, sequence test
go-to-market-strategy Complete go-to-market plan: channels, messaging matrix, launch timeline, success metrics
gtm-engineering Go-to-market data infrastructure: lead scoring, routing, lifecycle automation, attribution, reverse-ETL contracts
market-sizing Total / Serviceable / Obtainable Addressable Market (TAM / SAM / SOM) via top-down and bottom-up with assumption tracking
okr-cascade-planner Company β†’ function β†’ team Objectives and Key Results (OKRs) cascade with alignment map and quarterly rituals
porters-five-forces-analyzer Five Forces scorecard with dominant force, trajectory, and strategic moves per force
pricing-strategy-analyzer Pricing analysis with competitive positioning, packaging, and revenue modeling
strategic-landscape-mapper User-need value chain on a maturity axis with environmental forces, operating principles, and strategic plays
swot-tows-analyzer Evidence-anchored SWOT plus TOWS matrix producing prioritized strategic options

Game Theory (5 skills)

Apply game theory to real decisions: pricing wars, negotiation, mechanism design, repeated interactions. β€” Category README

Skill What it produces
competitive-response-modeler Multi-round action-reaction tree with reaction functions, commitment moves, and signaling analysis
mechanism-design-planner Mechanism design for auctions, matching, and pricing with Incentive Compatibility (IC), Individual Rationality (IR), revenue equivalence, and collusion stress tests
nash-equilibrium-solver Pure and mixed Nash equilibria, dominance, subgame perfection, and equilibrium selection
negotiation-strategist Best Alternative to a Negotiated Agreement (BATNA), Zone of Possible Agreement (ZOPA), multi-issue trade matrix, anchoring plan, concession schedule, tactical playbook
repeated-game-strategist Critical discount factor, strategy selection (Tit-for-Tat, grim trigger, Pavlov), reputation, and retaliation policy

Document Processing (1 skill)

Document extraction, transformation, merging, and form handling. β€” Category README

Skill What it produces
pdf-processing PDF text extraction, form filling, and document merging

πŸ”Œ Plugin Skills (bundled)

Skills from installed Claude Code plugins. These are managed by the plugin system and provide additional capabilities.

Document Skills (anthropic-agent-skills)

Skill Description
algorithmic-art Generative art with p5.js, seeded randomness, interactive parameters
brand-guidelines Apply Anthropic brand colors and typography to artifacts
canvas-design Museum-quality visual art as PDF or PNG
doc-coauthoring Structured 3-stage workflow for co-authoring documentation
docx Create, read, and edit Word documents with tracked changes, comments, and formatting
internal-comms Three-Paragraph (3P) updates, newsletters, FAQs, status reports
mcp-builder Build Model Context Protocol (MCP) servers to integrate Large Language Models (LLMs) with external services
pdf Full PDF processing: read, merge, split, rotate, watermark, OCR, encrypt, fill forms
pptx Create, read, and edit PowerPoint with design guidelines and visual QA
skill-creator Create effective Claude Code skills with progressive disclosure
slack-gif-creator Animated GIFs optimized for Slack with PIL and easing functions
theme-factory 10 pre-set themes plus custom theme generation
web-artifacts-builder Multi-component HTML artifacts with React, Tailwind CSS, and shadcn/ui
webapp-testing Test local web applications with Playwright plus server lifecycle management
xlsx Spreadsheets with formulas, formatting, and financial modeling conventions

Figma Plugin

Skill Description
code-connect-components Connect Figma design components to code implementations
create-design-system-rules Generate project-specific design system rules
implement-design Translate Figma designs into production-ready code with 1:1 fidelity

Notion Plugin

Skill Description
knowledge-capture Conversations to structured Notion documentation
meeting-intelligence Meeting prep with Notion context and Claude research
research-documentation Search Notion workspace and synthesize into research documents
spec-to-implementation Specifications to Notion tasks with implementation plans and tracking

Stripe Plugin

Skill Description
stripe-best-practices Stripe integrations: payments, checkout, subscriptions, Connect

Standard skill format

Every custom skill in this repository follows the same structure so they are easy to learn, compose, and extend:

---
name: <skill-name>
description: "<What the skill produces.> Use when <trigger 1>; <trigger 2>; <trigger 3>."
---

# <Skill Title>

> <One-line tagline / positioning statement.>

## What this skill is
<2–3 sentences describing the skill's role and approach.>

## What it solves
- <Pain 1>
- <Pain 2>
- <Pain 3>

## When to invoke
- <Trigger 1>
- <Trigger 2>
- <Trigger 3>

## Phase 1: ...
## Phase 2: ...
...

## Output
<Bullet list of deliverables produced.>

## Operating rules
**Always:** ...
**Never:** ...

Skills also follow two writing conventions: acronyms are spelled out at first use with the abbreviation in parentheses, and content uses professional, neutral vocabulary that travels well across organizations.


Authoring a new skill

See docs/SKILL_TEMPLATE.md for the full template, field-by-field guidance, length targets, and the quality checklist.

Quick checklist:

  • Single SKILL.md per skill, placed in the right category folder
  • Frontmatter with name and description
  • Description includes explicit "Use when…" triggers
  • Follows the Standard skill format above
  • Acronyms spelled out on first use

Contributing

Pull requests welcome. Please keep:

  • One skill per pull request for easier review
  • Skill placed in the correct category folder
  • Format consistent with the standard above
  • Description includes the trigger phrases people would actually type

See CONTRIBUTING.md for full guidelines and CODE_OF_CONDUCT.md.

For security issues, see SECURITY.md.


License

MIT


Built by Varun Kulkarni β€” part of a portfolio of AI agent systems for product, finance, and strategy teams.

About

A collection of Claude Code custom skills for product management, engineering, data analysis, and more.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors