/ Verzeichnis / Playground / claude-code-skills
● Community levnikolaevich ⚡ Sofort

claude-code-skills

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

claude-code.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: claude-code-skills

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

👤 Solo devs, startup founders ⏱ ~30 min intermediate

Wann einsetzen: You want a structured starting point instead of a blank directory.

Voraussetzungen
  • Claude Code installed — claude.ai/code
Ablauf
  1. Install the marketplace
    Add the claude-code-skills marketplace and install 'Project Bootstrap'.✓ Kopiert
    → 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.✓ Kopiert
    → Directory tree with the standard layering + example module
  3. Set up dev env
    Use Setup Environment to add pre-commit, linters, test runner.✓ Kopiert
    → Working make test out of the box

Ergebnis: 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

Wann einsetzen: Before merging significant PRs, you want more than one model's opinion.

Voraussetzungen
  • Codex and Gemini API keys configured — Plugin docs show env var names
Ablauf
  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.✓ Kopiert
    → Three-column review: security, architecture, style
  2. Aggregate disagreements
    Where do the models disagree? Highlight those for human review.✓ Kopiert
    → Disagreement list — the most valuable section

Ergebnis: A review that surfaces issues a single model would miss.

Kombinieren mit: github

Auto-generate and maintain docs with the documentation pipeline

👤 Teams behind on docs ⏱ ~40 min intermediate

Wann einsetzen: Your README and architecture docs haven't been updated in months.

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

Ergebnis: 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

Wann einsetzen: First week on a new repo — you need a map and a risk list.

Ablauf
  1. Audit
    Run the Codebase Audit Suite. Return security, quality, architecture, test-coverage findings ranked by impact.✓ Kopiert
    → Prioritized findings with file citations
  2. Triage into backlog
    Convert top-10 findings into GitHub issues with labels.✓ Kopiert
    → Backlog populated

Ergebnis: A clear picture of what to fix first.

Kombinieren mit: github

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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.✓ Kopiert
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.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Uses your LLM quotas plus whatever the MCPs reach
Tokens pro Aufruf
Audit skills can use 20k+ tokens — worth it once per project
Kosten in €
Free, MIT
Tipp
Install only the plugins you need — all 7 active at once is overwhelming

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: SSH keys for hex-ssh via standard ~/.ssh; no secrets stored by the suite
Datenabfluss: Depends on enabled plugins
Niemals gewähren: broad SSH to prod without audit

Fehlerbehebung

Häufige Fehler und Lösungen

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

Prüfen: ssh -o BatchMode=yes user@host true

Alternativen

claude-code-skills vs. andere

AlternativeWann stattdessenKompromiss
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

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen