/ الدليل / الملعب / mattpocock/skills
● مجتمع mattpocock ⚡ فوري

mattpocock/skills

بواسطة mattpocock · mattpocock/skills

Matt Pocock's personal .claude directory — opinionated TypeScript, testing, and workflow skills straight from a TS OG.

Matt Pocock (TypeScript educator, creator of Total TypeScript) published his personal Claude Code skills directory. Includes TS-specific patterns, testing philosophy, refactoring patterns, and workflow opinions. Not a generic bundle — it's one engineer's actual setup.

لماذا تستخدمه

الميزات الأساسية

عرض مباشر

كيف يبدو في الممارسة

جاهز

التثبيت

اختر العميل

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

افتح Claude Desktop → Settings → Developer → Edit Config. أعد التشغيل بعد الحفظ.

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

يستخدم Cursor نفس مخطط mcpServers مثل Claude Desktop. إعدادات المشروع أولى من الإعدادات العامة.

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

انقر على أيقونة MCP Servers في شريط Cline الجانبي، ثم "Edit Configuration".

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

نفس الصيغة مثل Claude Desktop. أعد تشغيل Windsurf لتطبيق التغييرات.

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

يستخدم Continue مصفوفة من كائنات الخادم بدلاً من خريطة.

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

أضف إلى context_servers. يعيد Zed التحميل تلقائيًا عند الحفظ.

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

أمر من سطر واحد. تحقق باستخدام claude mcp list. احذف باستخدام claude mcp remove.

حالات الاستخدام

استخدامات عملية: mattpocock/skills

Apply Matt's TS patterns to an existing project

👤 TypeScript devs upgrading code quality ⏱ ~90 min intermediate

متى تستخدمه: Your project has anys and shrug-worthy types and you want a principled cleanup.

المتطلبات الأساسية
  • Skills installed — git clone https://github.com/mattpocock/skills ~/.claude/skills/mattpocock
الخطوات
  1. Scan
    Use mattpocock/ts-review. Scan /src and list every any, every unsafe cast, every type hole. Group by file.✓ تم النسخ
    → Itemized findings, not a summary
  2. Fix with principles
    Fix the top 20, narrowest fix per case. Respect Matt's "prefer inference" rule — don't explicit-annotate what TS can infer.✓ تم النسخ
    → Minimal diffs, type-safety gained
  3. Check
    Run tsc --noEmit. Any regressions?✓ تم النسخ
    → Clean compile or precisely-scoped remaining items

النتيجة: A measurably more type-safe codebase following a principled methodology.

المزالق
  • Skill applies Matt's opinions where your team disagrees (e.g. interface vs type) — Override with "skip the interface-vs-type conversion, keep existing style"
اجمعها مع: filesystem

Build a feature test-first, Matt's way

👤 Devs adopting a more test-forward workflow ⏱ ~60 min intermediate

متى تستخدمه: You have a new feature to build and want to try test-first with modern TS tooling.

الخطوات
  1. Write the test
    Use mattpocock/test-first. I want to add a parseInvoice function. Write the test (vitest, integration-over-unit bias) before any impl.✓ تم النسخ
    → Failing test with realistic fixtures
  2. Implement
    Now the minimal implementation. Type-safe, no any.✓ تم النسخ
    → Green test with clean types
  3. Refactor
    Apply refactor patterns from the skill — extract helpers if they earn it, no premature abstraction.✓ تم النسخ
    → Refactor only where the skill's criteria are met

النتيجة: A test suite that tests behavior, an impl that satisfies it, and restraint on the refactor.

المزالق
  • Opinions collide with team's existing Jest setup — Ask the skill to adapt — it's opinionated but can be reoriented
اجمعها مع: filesystem

التركيبات

اجمعها مع خوادم MCP أخرى لتحقيق نتائج x10

mattpocock-skills-skill + filesystem

Apply to a full repo

Run ts_review over the whole /src tree and report.✓ تم النسخ
mattpocock-skills-skill + github

Open a PR per review

For the top 3 cleanups, create one PR each with a clear description.✓ تم النسخ

الأدوات

ما يوفره هذا الـ MCP

الأداةالمدخلاتمتى تستدعيهاالتكلفة
ts_review path TS-specific audit 0
test_first feature_spec Starting a new feature 0
refactor_with_types path, goal Type-preserving refactor 0

التكلفة والحدود

تكلفة التشغيل

حصة API
N/A
الرموز لكل استدعاء
Review-heavy — budget for big reads on large codebases
التكلفة المالية
Free
نصيحة
Scope by directory first; don't scan everything

الأمان

الصلاحيات والأسرار ونطاق الأثر

الحد الأدنى من الصلاحيات: filesystem-read
تخزين بيانات الاعتماد: None
نقل البيانات الخارجي: None

استكشاف الأخطاء

الأخطاء الشائعة وحلولها

Skill feels too opinionated

That's the point — override specific opinions in your prompt, or fork and edit

Recommendations conflict with team style

Share the output with the team; use it as a discussion starter, not a mandate

Doesn't know my niche library

Skills are TS-general — prepend your library's docs to the context

البدائل

mattpocock/skills مقابل البدائل

البديلمتى تستخدمهاالمقايضة
Your team's linter configYou need CI-level enforcement, not interactive reviewNo LLM reasoning, no refactor help
Biome / ESLint with typescript-eslintWant rules-based, deterministicDoesn't explain its reasoning the way Matt's skills do

المزيد

الموارد

📖 اقرأ ملف README الرسمي على GitHub

🐙 تصفح القضايا المفتوحة

🔍 تصفح أكثر من 400 خادم MCP و Skills