/ Verzeichnis / Playground / claude-skills-vault
● Community georgekhananaev ⚡ Sofort

claude-skills-vault

von georgekhananaev · georgekhananaev/claude-skills-vault

Opinionated, curated skill vault for senior full-stack workflows — architectural reviews, TDD cycles, PR management automated.

A curated bundle of higher-impact Claude Code skills aimed at the senior full-stack workflow. Less a utility dump, more an opinionated vault: skills for architectural review, TDD cycles, PR management, and the repetitive grunt work a senior IC wants automated.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

claude-skills-vault-skill.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-skills-vault-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/georgekhananaev/claude-skills-vault",
        "~/.claude/skills/claude-skills-vault"
      ],
      "_inferred": true
    }
  }
}

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

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

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

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

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

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

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

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

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

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

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

Anwendungsfälle

Praxisnahe Nutzung: claude-skills-vault

Run an architectural review on a proposed change

👤 Staff engineers, tech leads ⏱ ~30 min advanced

Wann einsetzen: You're about to approve a design doc or a big PR and want a second pass.

Voraussetzungen
  • Skill installed — git clone https://github.com/georgekhananaev/claude-skills-vault ~/.claude/skills/claude-skills-vault
Ablauf
  1. Feed the proposal
    Use claude-skills-vault arch-review on this design doc: [link/path].✓ Kopiert
    → Review across consistency, failure modes, scalability, maintainability axes
  2. Rank concerns
    Rank the top 5 concerns by blast radius.✓ Kopiert
    → Ordered list with rationale

Ergebnis: A review document ready to leave as a PR / doc comment.

Fallstricke
  • Generic advice — Point at the actual code paths, not just the doc
Kombinieren mit: github

Run a tight TDD cycle on a new feature

👤 Devs practicing TDD with Claude as pair ⏱ ~45 min intermediate

Wann einsetzen: You want red-green-refactor, not cowboy code.

Ablauf
  1. Red
    Use claude-skills-vault TDD. Failing test for [behavior].✓ Kopiert
    → Test file committed that fails
  2. Green
    Minimum code to make it pass.✓ Kopiert
    → Smallest possible impl; test passes
  3. Refactor
    Refactor without breaking the test.✓ Kopiert
    → Diff preserving green; cleaner code

Ergebnis: Feature shipped with honest test coverage.

Fallstricke
  • Claude writes test and impl together — Enforce phases explicitly in prompts
Kombinieren mit: git

Manage a batch of stale PRs

👤 Maintainers / tech leads ⏱ ~30 min intermediate

Wann einsetzen: You inherited a repo with 40 open PRs and need triage.

Ablauf
  1. Triage
    Use claude-skills-vault pr-manager. Triage open PRs: category, age, blocker, owner.✓ Kopiert
    → Triage table
  2. Draft nudges or closures
    For each, propose: merge, close politely, or nudge.✓ Kopiert
    → Action per PR

Ergebnis: A cleaner PR queue without manual slog.

Kombinieren mit: github

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

claude-skills-vault-skill + github

Apply triage actions directly — merge, close, comment

Run triage and post the drafted nudges as comments on each PR.✓ Kopiert
claude-skills-vault-skill + git

TDD cycle with atomic commits per phase

Commit after each TDD phase: red, green, refactor.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
arch_review design doc or PR Pre-approval 0
tdd_cycle behavior description New feature dev 0
pr_triage repo Periodic PR cleanup 0

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
None
Tokens pro Aufruf
Moderate to high depending on workflow
Kosten in €
Free
Tipp
Batch arch reviews; don't review every PR with the skill.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: None in skill; downstream MCPs handle their own
Datenabfluss: None from skill

Fehlerbehebung

Häufige Fehler und Lösungen

Skill too heavy for small projects

Intended for senior / complex codebases; skip for simple work

Reviews are too long

Prompt for top-3 concerns only

Alternativen

claude-skills-vault vs. andere

AlternativeWann stattdessenKompromiss
claude-skill-4 (borghei mega-bundle)You want breadth over curation245 skills to audit
planning-with-files-skillJust need session persistence, not full workflow coverageNarrow but reliable

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen