/ ディレクトリ / プレイグラウンド / Harness (Meta-skill)
● コミュニティ revfactory ⚡ 即起動

Harness (Meta-skill)

作者 revfactory · revfactory/harness

A meta-skill: tell it your domain, it designs the agent team for you (roles, prompts, hand-offs) and saves the specs for reuse.

Harness treats agent design as a first-class workflow: you describe your domain (incident response, content review, code triage); it asks the right questions, then emits a documented team — roles, system prompts, when each takes over, and shared memory boundaries.

なぜ使うのか

主な機能

ライブデモ

実際の動作

準備完了

インストール

クライアントを選択

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ユースケース

実用的な使い方: Harness (Meta-skill)

Design an incident-response agent team

👤 Claude Code users ⏱ ~15 min intermediate

使うタイミング: You want multiple agents (triage, comms, scribe) cooperating on real incidents instead of one big system prompt.

フロー
  1. Brief
    Tell harness: "incident response, B2B SaaS, 3 specialists please."✓ コピーしました
    → Harness asks scope questions
  2. Answer
    Define escalation, channels, scribe duties.✓ コピーしました
    → Spec drafts emerge
  3. Save
    Save specs into /agents/incident/.✓ コピーしました
    → Reusable team def written

結果: Documented multi-agent team you can rerun next incident, not a one-off prompt.

組み合わせ

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

harness-skill + filesystem

Save designed teams alongside your project

Combine harness-skill with filesystem: Save designed teams alongside your project✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
design (see docs) Run the design interview 1 call
review (see docs) Critique an existing team for missing roles or unclear hand-offs 1 call

コストと制限

運用コスト

APIクォータ
N/A
呼び出しあたりのトークン
Interview is moderate
金額
Free skill
ヒント
Reuse outputs as-is for next domain; don't redesign from scratch

セキュリティ

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

最小スコープ: fs-read fs-write
認証情報の保管: None
データ送信先: None

トラブルシューティング

よくあるエラーと対処法

Output too generic

Provide concrete examples (real past incidents) during the interview

代替案

Harness (Meta-skill) 他との比較

代替案代わりに使う場面トレードオフ
Hand-rolled promptsSingle-agent flowDoesn't scale to multi-agent

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

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