Her(ヘール)— クロード・コードセッションのための探偵ツール
本文の状態
日本語全文を表示中
詳細モードで約4分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Hugging Face Blog
Hugging Face が、Claude Code の利用セッションを監視・分析する新ツール「Her」を発表した。このツールは開発者の作業プロセスを検証し、デバッグや効率化を支援する機能を提供する。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
Her · हेर — *マラーティー語で「探偵」を意味します。* Claude Code セッションのための探偵です。
こちらでお試しください:Hugging Face の Her
すべての Claude Code セッションは痕跡を残します — 各ターン、ツール呼び出し、トークンを含む .jsonl ファイルとして。しかし実際には、その痕跡は書き込み専用です。なぜエージェントが本番環境に手を伸ばしたのか、コンテキスト予算の実際の使い道はどこだったのか、あるいはどのサブエージェントが実行時間の半分を静かに消費したのかを理解するために、4,000 行もの JSON を読み返すことはめったにありません。
Her はそれをあなたのために読み解きます。
前提はシンプルです:セッションファイルをページにドロップするだけで、Her が調査を開始します。 Her は何が起こったかを平易な英語で再構築し、危険な動き(デプロイ、設定変更、本番環境への改変、シークレットなど)をフラグ付けし、それぞれがどの正確なターンで発生したのかを追跡します。
Her はトークンがどこへ行ったか、どのツール、サブエージェント、スキル、MCP サーバーが使用されたかを示し、名前付きで修正可能なパターンが発生した場合のみ(かつその場合に限って)、Anthropic とコミュニティのベストプラクティスに基づいて「より良くできたこと」を提案します。Her は*主張するのではなく提案する*だけで、言うべきことがない場合は沈黙を守ります。
また、ビルトインのコパイロットAsk Herも用意されています。「なぜこのツールが使用されたのか?」と尋ねると、Her は痕跡から回答し、該当ターンを引用して正確なツール呼び出しを開きます。1 つのファイルをドロップすればセッションビューが表示され、複数のファイルをドロップすればプロジェクトビューが構築され、多数のセッションにわたって質問を検索できます。
サードパーティの AI API は一切呼び出されません。 モデル(Nemotron-Mini-4B-Instruct)は、ZeroGPU を介してスペース自体の GPU 上で実行されます。セッションは、あなたのランに属するプライベートで自動削除される名前空間へのみアップロードされ、その内容が外部へ漏れることはありません。
この信頼性を支える決定的な点は、評価エンジンが完全に決定論的であることです。モデルは英語の記述とより穏やかな提案を行うためだけに使用され、発見を断定することはありません。モデルが変わっても数値は変動しません。
興味深い点として、Her はセッションで使用された CLI ツールを単に列挙するだけでなく、それらを特定します。Homebrew、npm、PyPI からの主要ツールデータベースがスペースと共に同梱されており、ほとんどのツールはオフラインで一行の簡潔な説明付きで名前付けられます。デプロイ用ツール、データベースクライアント、または開発サーバーが実際に実行された場合、Her はその活動をフラグ付けし、再確認に値する二回目のチェックを行います。
これは週末の開発で成長しました。 最初は友人のために作られた運用者の視点であり、各クエリをコストに応じてサイズを変えたノードとし、最も重いものが輝くようなジャーニー(旅路)グラフでした。
これをよりシンプルにしてほしいと願う別の友人に見せると、グラフには現在デフォルトとなっている実行役のレポートが追加されました。その後、最初の友人が「なぜ自分の CLI ツールが表示されないのか」と尋ねたことがきっかけで、ツールデータベースが誕生しました。
フロントエンドは Gradio サーバーから直接提供される React アプリであり、決定論的なエンジンが捜査を行い、Nemotron が文章を生成します。
Claude が狂ったときは、Her を呼んでください。 ;)
こちらでお試しください:Hugging Face の Her
翻訳全文
原文を表示
Her · हेर — Marathi for “detective.” A detective for your Claude Code sessions.
Try it here: Her on Hugging Face
Every Claude Code session leaves a trace — a .jsonl file with every turn, tool call, and token. But in practice, that trace is write-only. Rarely anyone reads 4,000 lines of JSON to figure out *why the agent reached for production*, where the context budget actually went, or which subagent quietly burned half the run.
Her reads it for you.
The premise is simple: drop a session file onto the page and let her investigate. She reconstructs what happened in plain English, flags the risky moves — deploys, config and production changes, secrets — and traces each one back to the exact turn where it happened.
She shows where the tokens went, which tools, subagents, skills, and MCP servers were used, and — only when a named, fixable pattern fires — what you could have done better, grounded in Anthropic’s and the community’s best practices. She *suggests, never asserts*, and stays silent when there’s nothing worth saying.
There’s also a built-in copilot: Ask Her. Ask *“why was this tool used?”* and she answers from the trace, cites the turns, and opens the exact tool call. Drop one file for a session view; drop several to build a project view and hunt a question across many sessions at once.
No third-party AI API is ever called. The model — Nemotron-Mini-4B-Instruct — runs on the Space’s own GPU via ZeroGPU. Your session is uploaded only to a private, auto-deleted namespace that belongs to your run, and nothing about it leaves the box.
The split that makes this trustworthy: the evaluation engine is purely deterministic. The model is used *only* to write the English and propose softer suggestions. It never asserts a finding. The numbers don’t move when the model changes.
One nice detail: Her doesn’t just list the CLI tools a session used — she identifies them. A database of top tools from Homebrew, npm, and PyPI ships with the Space, so most tools are named offline with a one-line blurb. When deploy tools, database clients, or dev servers are actually executed, Her flags that activity for the second look it deserves.
It grew over a weekend. It started as an operator’s view — a journey graph where every query is a node sized by cost, the heaviest one glowing — built for a friend.
I showed it to another friend who wanted it simpler, so the graph grew an executive Report that’s now the default. Then the first friend asked why *their* CLI tool didn’t show up — which is how the tool database was born.
The frontend is a React app served straight off a Gradio server, with the deterministic engine doing the forensics and Nemotron handling the prose.
When Claude loses his mind, call Her. ;)
Try it here: Her on Hugging Face
News to Guide
ニュースの次に確認する
発表内容を、現在の料金や仕様と照らし合わせられる関連ガイドです。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み