/ ディレクトリ / プレイグラウンド / skills
● コミュニティ tenequm ⚡ 即起動

skills

作者 tenequm · tenequm/skills

40+ practical skills for shipping software — React/TS, Cloudflare Workers, Solana/Foundry, Biome, code review, effect-ts, Swift macOS.

tenequm/skills is a broad agent skill collection spanning web frontend (react-typescript, shadcn-tailwind, vite, tanstack), backend/infra (cloudflare-workers, python-dev, mcp-best-practices), smart contracts (foundry-solidity, solana-development/compression/security, erc-8004, x402, mpp, privy-integration), code quality (biome, polish, review-github-pr), developer tools (chrome-extension-wxt, effect-ts, swift-macos), and content/strategy (impactful-writing, founder-playbook, web3-protocol-gtm).

なぜ使うのか

主な機能

ライブデモ

実際の動作

skills-skill-9.replay ▶ 準備完了
0/0

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

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

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

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

Claude Desktop と同じ形式。Windsurf を再起動して反映。

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

Continue はマップではなくサーバーオブジェクトの配列を使用。

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

context_servers に追加。保存時に Zed がホットリロード。

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

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: skills

Ship a React + TanStack feature with idiomatic patterns

👤 Frontend devs on TanStack + shadcn stacks ⏱ ~90 min intermediate

使うタイミング: New feature on a modern React stack and you want conventions locked in.

前提条件
  • Skill cloned — git clone https://github.com/tenequm/skills ~/.claude/skills/tenequm-skills
フロー
  1. Scaffold components
    Use react-typescript + shadcn-tailwind skills — build a data table with server-side sorting.✓ コピーしました
    → Component + hook pattern idiomatic to TanStack Query
  2. Lint/format pass
    Run the biome skill on the diff.✓ コピーしました
    → Biome-configured config + auto-fixes
  3. Pre-release polish
    Use polish skill — what's not ready to ship?✓ コピーしました
    → Specific pre-release concerns flagged

結果: A feature with conventional code and a pre-ship review done.

組み合わせ: github

Write and audit a Solana program with security baked in

👤 Solana devs building user-facing contracts ⏱ ~180 min advanced

使うタイミング: Writing an Anchor program that will hold user funds.

前提条件
  • Solana + Anchor toolchain installed — https://docs.anthropic.com/en/docs/... — actually: https://www.anchor-lang.com/install
フロー
  1. Build with solana-development
    solana-development skill — Anchor program for <intent>. Cover instructions, state, constraints.✓ コピーしました
    → Proper Anchor account macros, seeds, PDAs
  2. Security review
    Now solana-security — audit for reentrancy, signer-check omissions, arithmetic issues.✓ コピーしました
    → Specific findings tied to account checks
  3. Deploy plan
    What's the safe deployment / program upgrade path?✓ コピーしました
    → Keypair management + program-id steps

結果: A program that's audit-aware from day one.

注意点
  • Skill audit doesn't replace a real audit firm — Treat it as first pass; get a formal audit before mainnet with real TVL
組み合わせ: github

Ship an HTTP API on Cloudflare Workers

👤 Backend devs who want edge deployment ⏱ ~60 min intermediate

使うタイミング: Need a low-latency API without running your own servers.

フロー
  1. Scaffold with cloudflare-workers
    cloudflare-workers skill — REST API with D1 backend for <entities>.✓ コピーしました
    → Wrangler config + handler patterns + KV/D1 bindings
  2. MCP best-practices cross-check
    If this were an MCP server, does it follow mcp-best-practices?✓ コピーしました
    → Specific protocol conformance review

結果: A deployable Worker with modern conventions.

組み合わせ

他のMCPと組み合わせて10倍の力を

skills-skill-9 + github

Review + polish directly against PRs in your org

Use review-github-pr on PR #42, then polish the suggested fixes.✓ コピーしました
skills-skill-9 + filesystem

Apply skill-driven patterns across multiple files in a feature

Apply react-typescript patterns across every component under src/features/new-module/.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
react-typescript component / feature intent Writing React components 0
cloudflare-workers API intent + storage choice Edge backend 0
solana-development program intent Solana smart contract work 0
solana-security program code Before deploying to mainnet 0
polish pending diff Before pushing a release 0
review-github-pr PR number or diff Reviewing PRs 0

コストと制限

運用コスト

APIクォータ
None
呼び出しあたりのトークン
Moderate per sub-skill
金額
Free — skills are local files
ヒント
Don't auto-load all 40; reference by specific sub-skill name to keep context tight.

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: No credentials in the skill files. Deploy-related sub-skills reference your own secrets (Wrangler, deployer keypairs).
データ送信先: None from the skills themselves

トラブルシューティング

よくあるエラーと対処法

Skill not invoked — Claude uses generic React advice

Reference the specific sub-skill by name (react-typescript, shadcn-tailwind, etc.).

確認: ls ~/.claude/skills/tenequm-skills/
SKILL.md frontmatter wrong in a sub-skill

Each sub-skill has its own SKILL.md — inspect the specific folder.

確認: head ~/.claude/skills/tenequm-skills/react-typescript/SKILL.md
Wrong trigger keywords — wrong sub-skill activates for Solana work

Distinguish solana-development (general) vs solana-security vs solana-compression.

代替案

skills 他との比較

代替案代わりに使う場面トレードオフ
ay-skill (AY Automate)You want UI/browser emphasis with artifacts-builder and NotebookLMDifferent focus; less smart-contract and backend coverage
skills-skill-8You want meta-skills for skill authoring rather than product-building skillsDifferent layer

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る