/ 目录 / 演练场 / claude-skills-vault
● 社区 georgekhananaev ⚡ 即开即用

claude-skills-vault

作者 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.

为什么要用

核心特性

实时演示

实际使用效果

claude-skills-vault-skill.replay ▶ 就绪
0/0

安装

选择你的客户端

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

打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。

~/.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 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。

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

点击 Cline 侧栏中的 MCP Servers 图标,然后选 "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
    }
  }
}

格式与 Claude Desktop 相同。重启 Windsurf 生效。

~/.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 使用服务器对象数组,而非映射。

~/.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"
        ]
      }
    }
  }
}

加入 context_servers。Zed 保存后热重载。

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

一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。

使用场景

实战用法: claude-skills-vault

Run an architectural review on a proposed change

👤 Staff engineers, tech leads ⏱ ~30 min advanced

何时使用: You're about to approve a design doc or a big PR and want a second pass.

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

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

注意事项
  • Generic advice — Point at the actual code paths, not just the doc
搭配使用: github

Run a tight TDD cycle on a new feature

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

何时使用: You want red-green-refactor, not cowboy code.

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

结果: Feature shipped with honest test coverage.

注意事项
  • Claude writes test and impl together — Enforce phases explicitly in prompts
搭配使用: git

Manage a batch of stale PRs

👤 Maintainers / tech leads ⏱ ~30 min intermediate

何时使用: You inherited a repo with 40 open PRs and need triage.

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

结果: A cleaner PR queue without manual slog.

搭配使用: github

组合

与其他 MCP 搭配,撬动十倍杠杆

claude-skills-vault-skill + github

Apply triage actions directly — merge, close, comment

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

TDD cycle with atomic commits per phase

Commit after each TDD phase: red, green, refactor.✓ 已复制

工具

此 MCP 暴露的能力

工具输入参数何时调用成本
arch_review design doc or PR Pre-approval 0
tdd_cycle behavior description New feature dev 0
pr_triage repo Periodic PR cleanup 0

成本与限制

运行它的成本

API 配额
None
每次调用 Token 数
Moderate to high depending on workflow
费用
Free
提示
Batch arch reviews; don't review every PR with the skill.

安全

权限、密钥、影响范围

凭据存储: None in skill; downstream MCPs handle their own
数据出站: None from skill

故障排查

常见错误与修复

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

替代方案

claude-skills-vault 对比其他方案

替代方案何时用它替代权衡
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

更多

资源

📖 阅读 GitHub 上的官方 README

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills