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

claude-code-skills

автор levnikolaevich · levnikolaevich/claude-code-skills

A 7-plugin suite for Claude Code with 135+ skills and 3 bundled MCPs (hash-verified editing, code graph, remote SSH) — covers the full software lifecycle.

claude-code-skills (levnikolaevich) bundles plugins for Agile workflow, documentation, audits, bootstrap, optimization, community, and environment setup. Ships hex-line (hash-verified edits), hex-graph (code knowledge graph), and hex-ssh MCPs. MIT, fully open source.

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

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

Живое демо

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

claude-code.replay ▶ готово
0/0

Установка

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

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "claude-code-skills"
      ],
      "_inferred": true
    }
  }
}

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "claude-code-skills"
      ],
      "_inferred": true
    }
  }
}

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

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "claude-code-skills"
      ],
      "_inferred": true
    }
  }
}

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

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-code": {
      "command": "npx",
      "args": [
        "-y",
        "claude-code-skills"
      ],
      "_inferred": true
    }
  }
}

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

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-code",
      "command": "npx",
      "args": [
        "-y",
        "claude-code-skills"
      ]
    }
  ]
}

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

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-code": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "claude-code-skills"
        ]
      }
    }
  }
}

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

claude mcp add claude-code -- npx -y claude-code-skills

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

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

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

Bootstrap a new project with Clean Architecture via claude-code-skills

👤 Solo devs, startup founders ⏱ ~30 min intermediate

Когда использовать: You want a structured starting point instead of a blank directory.

Предварительные требования
  • Claude Code installed — claude.ai/code
Поток
  1. Install the marketplace
    Add the claude-code-skills marketplace and install 'Project Bootstrap'.✓ Скопировано
    → Plugin installed and commands available
  2. Scaffold
    Use the bootstrap skill to scaffold a Python FastAPI project with Clean Architecture: domain / application / infrastructure / interfaces layers.✓ Скопировано
    → Directory tree with the standard layering + example module
  3. Set up dev env
    Use Setup Environment to add pre-commit, linters, test runner.✓ Скопировано
    → Working make test out of the box

Итог: A day-1 project with the structure you'd refactor toward eventually.

Get multi-model code review with claude-code-skills

👤 Teams that want cross-checked AI reviews ⏱ ~20 min advanced

Когда использовать: Before merging significant PRs, you want more than one model's opinion.

Предварительные требования
  • Codex and Gemini API keys configured — Plugin docs show env var names
Поток
  1. Run the review skill
    Use the Agile Workflow plugin's review skill on PR #123. Run Codex and Gemini in parallel; fall back to Claude if either times out.✓ Скопировано
    → Three-column review: security, architecture, style
  2. Aggregate disagreements
    Where do the models disagree? Highlight those for human review.✓ Скопировано
    → Disagreement list — the most valuable section

Итог: A review that surfaces issues a single model would miss.

Сочетать с: github

Auto-generate and maintain docs with the documentation pipeline

👤 Teams behind on docs ⏱ ~40 min intermediate

Когда использовать: Your README and architecture docs haven't been updated in months.

Поток
  1. Run framework detection + initial gen
    Run the Documentation Pipeline on this repo. Detect framework, generate README, architecture.md, and contributing.md.✓ Скопировано
    → Draft docs reflecting actual code
  2. Set up refresh on CI
    Add a CI job that regenerates doc sections marked <!-- AUTOGEN --> on every merge.✓ Скопировано
    → Docs stay fresh

Итог: Living docs backed by the same codebase source of truth.

Run a full codebase audit (security, quality, architecture)

👤 Tech leads inheriting a codebase ⏱ ~60 min intermediate

Когда использовать: First week on a new repo — you need a map and a risk list.

Поток
  1. Audit
    Run the Codebase Audit Suite. Return security, quality, architecture, test-coverage findings ranked by impact.✓ Скопировано
    → Prioritized findings with file citations
  2. Triage into backlog
    Convert top-10 findings into GitHub issues with labels.✓ Скопировано
    → Backlog populated

Итог: A clear picture of what to fix first.

Сочетать с: github

Комбинации

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

claude-code + github

Audit findings → issues → PRs via the same suite

Run the audit, create issues for the top 10 findings, then draft PRs for the first 3.✓ Скопировано
claude-code + hyper

Replace miscellaneous MCPs with a single hyper-mcp host

Keep hex-line/graph/ssh; retire unrelated npm MCPs in favor of signed plugins in hyper-mcp.✓ Скопировано

Инструменты

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

ИнструментВходные данныеКогда вызыватьСтоимость
hex-line (MCP) file edit ops with hash verification When correctness of edits matters — avoids 'phantom edit' bugs 0
hex-graph (MCP) codebase queries Navigate symbol references, callers, imports 0 after index
hex-ssh (MCP) host, command Run commands on dev/prod boxes via SSH with audit 0

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

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

Квота API
Uses your LLM quotas plus whatever the MCPs reach
Токенов на вызов
Audit skills can use 20k+ tokens — worth it once per project
Деньги
Free, MIT
Совет
Install only the plugins you need — all 7 active at once is overwhelming

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

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

Хранение учётных данных: SSH keys for hex-ssh via standard ~/.ssh; no secrets stored by the suite
Исходящий трафик: Depends on enabled plugins
Никогда не давайте: broad SSH to prod without audit

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

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

Plugin commands missing after install

Restart Claude Code; plugin registry is loaded at session start

Multi-model review times out on one model

Plugin falls back to Claude — check logs for which model failed and why

hex-ssh fails with auth error

SSH config must work without interactive prompts; use keys not passwords

Проверить: ssh -o BatchMode=yes user@host true

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

claude-code-skills в сравнении

АльтернативаКогда использоватьКомпромисс
Individual MCPs composed yourselfYou prefer hand-picked tools over a suiteMore setup; no shared orchestration model
Cursor Rules + built-insYou use Cursor, not Claude CodeDifferent ecosystem

Ещё

Ресурсы

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

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

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