/ Каталог / Песочница / skills
● Сообщество wondelai ⚡ Сразу

skills

автор wondelai · wondelai/skills

48 book-derived agent skills — Clean Code, DDIA, JTBD, Hooked, Made to Stick — turning canonical texts into actionable pair-programming and thinking partners.

A collection of 48 skills across product strategy, UX design, marketing, sales, innovation, strategy, team, and software craftsmanship. Each skill distills a canonical book (Clean Code, Refactoring, DDIA, Mom Test, Influence, Crossing the Chasm, Lean Startup, etc.) into an applicable SKILL-style interaction. Installable via Claude Code plugin marketplace, skills.sh, or npm.

Зачем использовать

Ключевые функции

Живое демо

Как выглядит на практике

skills-skill.replay ▶ готово
0/0

Установка

Выберите клиент

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "skills-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wondelai/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "skills-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wondelai/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "skills-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wondelai/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "skills-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wondelai/skills",
        "~/.claude/skills/skills"
      ],
      "_inferred": true
    }
  }
}

Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "skills-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/wondelai/skills",
        "~/.claude/skills/skills"
      ]
    }
  ]
}

Continue использует массив объектов серверов, а не map.

~/.config/zed/settings.json
{
  "context_servers": {
    "skills-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/wondelai/skills",
          "~/.claude/skills/skills"
        ]
      }
    }
  }
}

Добавьте в context_servers. Zed перезагружается автоматически.

claude mcp add skills-skill -- git clone https://github.com/wondelai/skills ~/.claude/skills/skills

Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.

Сценарии использования

Реальные сценарии: skills

Refactor a legacy module using the Clean Code + Refactoring patterns

👤 Senior developers tackling legacy code ⏱ ~120 min advanced

Когда использовать: You're about to touch a 500-line god-class and want principled guidance.

Поток
  1. Assess with Clean Code lens
    Use the Clean Code skill. Review this file — what SOLID violations are present?✓ Скопировано
    → Concrete violations named after principles, not vibes
  2. Plan with Refactoring patterns
    Use the Refactoring Patterns skill. Plan the refactor using Extract Class and Replace Conditional with Polymorphism.✓ Скопировано
    → Named Fowler refactorings with stepwise plan
  3. Execute incrementally
    Apply the first step; run tests; repeat.✓ Скопировано
    → Small safe steps, not one giant rewrite

Итог: A refactor defensible in code review with explicit principles.

Подводные камни
  • Refactor without tests = risk — Skill insists on characterization tests first
Сочетать с: claude-skill-2

Run Mom Test-style customer interviews

👤 Founders validating a product idea ⏱ ~45 min intermediate

Когда использовать: Before writing any code, you need to pressure-test the problem.

Поток
  1. Plan the interview
    Use the Mom Test skill. I want to validate [idea]. Help me draft questions that avoid bias.✓ Скопировано
    → Questions focused on past behavior, not hypothetical future
  2. Debrief after calls
    Here are notes from 5 calls. Apply the Mom Test frame — what's signal vs compliment?✓ Скопировано
    → Honest separation of validated evidence from polite agreement

Итог: Interview notes you can actually make a decision on.

Подводные камни
  • Customer says 'I'd buy that' — skill flags this as worthless without behavior evidence — Trust the frame; push for past behavior
Сочетать с: product-manager-skill

Design a system using DDIA + System Design skills

👤 Senior engineers and architects ⏱ ~90 min advanced

Когда использовать: You're whiteboarding a new service and want depth, not hand-waving.

Поток
  1. State constraints
    Use the DDIA and System Design skills. Design a real-time leaderboard for 5M users. Discuss reliability, scalability, maintainability.✓ Скопировано
    → Tradeoffs from DDIA vocabulary (replication, partitioning, consistency)
  2. Pressure-test
    Apply the Release It! skill — what failure modes should I anticipate?✓ Скопировано
    → Stability patterns (circuit breaker, bulkhead, timeout) named explicitly

Итог: A design doc that a staff engineer would take seriously.

Подводные камни
  • Skills can over-index on book vocabulary — Insist on concrete numbers — latency targets, QPS, data sizes

Комбинации

Сочетайте с другими MCP — эффект x10

skills-skill + product-manager-skill

Books-based discovery + PM deliverable templates

Use Mom Test skill for the interview plan, then the product-manager-skill to turn findings into a PRD.✓ Скопировано
skills-skill + claude-skill-2

Clean Code / Refactoring skill for principles + full-stack skill for implementation

Refactor the auth module guided by the Clean Code skill; implement with the NestJS skill from claude-skill-2.✓ Скопировано

Инструменты

Что предоставляет этот MCP

ИнструментВходные данныеКогда вызыватьСтоимость
Code Craftsmanship skills (14) code to review/design Code quality, architecture, design work 0
UX Design skills (8) design problem UI/UX decisions 0
Product Strategy skills (4) product question Discovery, framing 0
Marketing & CRO skills (4) marketing question Messaging, landing pages 0
Strategy & Growth skills (4) strategy question Market/strategy decisions 0

Стоимость и лимиты

Во что обходится

Квота API
None
Токенов на вызов
2-6k per skill
Деньги
Free — skill is local
Совет
Pick one book-skill per task; stacking too many blurs recommendations.

Безопасность

Права, секреты, радиус поражения

Хранение учётных данных: No credentials — skill is prompts
Исходящий трафик: None

Устранение неполадок

Частые ошибки и исправления

Skill quotes principles but doesn't apply them

Force application: 'apply this principle to THIS line of my code, not in general'.

Not obvious which skill to invoke

The README maps problems to skills — start there.

Альтернативы

skills в сравнении

АльтернативаКогда использоватьКомпромисс
Reading the books directlyYou want depth and have timeMore depth, no interactive application
product-manager-skill / claude-skill-2You want deliverable templates or framework code, not book wisdomDifferent modality

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills