/ ディレクトリ / プレイグラウンド / Claude Code Tips (dx plugin)
● コミュニティ ykdojo ⚡ 即起動

Claude Code Tips (dx plugin)

作者 ykdojo · ykdojo/claude-code-tips

45 Claude Code tips + the dx plugin skill bundle.

A skill+plugin package collecting 45 working Claude Code patterns — custom status line, system prompt trimming, using Gemini CLI as a Claude Code minion, running Claude Code in a container. The dx plugin codifies the best ones as runnable skills.

なぜ使うのか

主な機能

ライブデモ

実際の動作

claude-code-tips-skill.replay ▶ 準備完了
0/0

インストール

クライアントを選択

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

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

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

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

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

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

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

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

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

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

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

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

claude mcp add claude-code-tips-skill -- git clone https://github.com/ykdojo/claude-code-tips ~/.claude/skills/claude-code-tips

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

ユースケース

実用的な使い方: Claude Code Tips (dx plugin)

Delegate code-search to Gemini CLI to save Claude context

👤 Claude Code power users ⏱ ~15 min intermediate

使うタイミング: Your Claude context is precious; grep across 10k files isn't.

前提条件
  • Server/skill installed and authenticated — See repo README
フロー
  1. Install dx
    Install the dx plugin from claude-code-tips.✓ コピーしました
    → dx commands available
  2. Delegate
    Use dx minion gemini to grep for callers of parseConfig and feed me only the file:line hits.✓ コピーしました
    → Compact list of hits, big context saved

結果: Claude focuses on reasoning; minion handles bulk text ops.

注意点
  • The minion model still costs API money. Use it for context savings, not free lunch. — The minion model still costs API money. Use it for context savings, not free lunch.

コストと制限

運用コスト

APIクォータ
See provider docs for rate limits
呼び出しあたりのトークン
Varies by tool
金額
See repo README for pricing details
ヒント
Cache tool results and avoid repeated identical calls.

セキュリティ

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

認証情報の保管: Use environment variables; never commit secrets
データ送信先: Tool calls go to the provider's API as documented

トラブルシューティング

よくあるエラーと対処法

dx not found

After install, restart your shell or source ~/.claude/dx.zsh.

確認: which dx
minion provider missing

Install gemini-cli (or alt) separately and set GEMINI_API_KEY.

確認: gemini --version

代替案

Claude Code Tips (dx plugin) 他との比較

代替案代わりに使う場面トレードオフ
obra/superpowersYou want a deeper skill libraryMore opinionated

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

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