From claude-code-harness
Renders an HTML scorecard and terminal summary showing how much a session/project used Claude, Codex, and Cursor backends, based on the orchestration ledger and lifetime totals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-code-harness:harness-orchestration [--out <path>|--no-open|--terminal][--out <path>|--no-open|--terminal]This skill is limited to the following tools:
These tools are removed from Claude's available pool while this skill is active:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
このセッション/プロジェクトの backend 活用度(Claude=ホスト / Codex / Cursor への委譲)を可視化する read-only スキル。
このセッション/プロジェクトの backend 活用度(Claude=ホスト / Codex / Cursor への委譲)を可視化する read-only スキル。
記録の正本は .claude/state/orchestration-ledger.jsonl(companion が委譲ごとに追記、Phase 90.1.1)と
.claude/state/orchestration-totals.json(セッション終了/完了時に冪等 roll up、Phase 90.1.2)。
表示は on-demand のみ。作業中は出さず、見たい時にこのスキルで出す。 全タスク完了時の 1 回だけは task-completed が自動でターミナルサマリを出す(このスキルとは別経路)。
| 出力 | 生成物 |
|---|---|
| HTML スコアカード | scripts/orchestration-scorecard.sh --format html-data → scripts/render-html.sh --template orchestration で単一 HTML |
| ターミナルサマリ | scripts/orchestration-scorecard.sh --format terminal(3-5 行) |
tri-state: used(count>0)/ available(設定済み未使用)/ not-configured(binary 不在=中立、壊れではない)。
委譲ゼロなら "no delegations observed" に degrade。
helper script は plugin bundle root から呼ぶ:
HARNESS_PLUGIN_ROOT="${HARNESS_PLUGIN_ROOT:-${CLAUDE_PLUGIN_ROOT:-}}"
--terminal)bash "${HARNESS_PLUGIN_ROOT}/scripts/orchestration-scorecard.sh" --format terminal
3-5 行を要約してそのまま提示する。
--out / --no-open)OUT="${1:-.claude/state/orchestration-scorecard.html}" # --out <path> で上書き
bash "${HARNESS_PLUGIN_ROOT}/scripts/orchestration-scorecard.sh" --format html-data \
| bash "${HARNESS_PLUGIN_ROOT}/scripts/render-html.sh" --template orchestration --data - --out "$OUT"
--no-open 指定がなければ生成後にパスを提示し、ブラウザで開くよう案内する(自動 open は環境依存なのでパス提示を基本とする)harness-progress — 進捗ダッシュボード(タスク進捗。本スキルは backend 活用度に特化)harness-work / breezing — 実装(backend を実際に使う側)npx claudepluginhub chachamaru127/claude-code-harness --plugin claude-code-harnessGenerates usage analytics dashboard from Claude Code sessions with epistemic protocol coverage metrics, friction analysis, growth timelines, and improvement recommendations.
Queries local cross-project analytics for agent, skill, hook, and team performance in OrchestKit projects. Replays sessions, estimates costs, analyzes model delegation trends.
Audits Claude Code harness maturity using 6-axis 24-item checklist and 2x3 matrix (Static/Behavioral/Growth × User/Project), running 4 sub-agents for skill portfolio, sessions, context, and automation. Outputs scorecards, action reports, HTML/MD files.