Amplitude(データ分析プラットフォーム)から、AI エージェント(自動処理システム)が最近得たすべての結果を取得し、統合した上で、その重要度に基づいて優先順位付けします。利用可能なすべてのエージェントの種類に問い合わせを行い、データの新鮮さを確認してから、影響度の大きい順に情報をまとめた統一的な説明文を作成します。 次のような場合に使用: - 「AIが何を発見したのか」 - 「エージェントの分析結果を見たい」 - 「AIの発見内容はあるか」 - 「Amplitude が何を検出したのか」 - 「AI の分析結果を確認したい」 - Amplitude の AI エージェントが最近検出した全情報のまとめが必要な場合
Retrieves, synthesizes, and prioritizes all recent AI agent results from Amplitude. Queries every agent type available in get_agent_results, validates freshness, and produces a unified narrative ranked by impact. Use when the user asks "what has the AI found", "show me agent insights", "any AI findings", "what did Amplitude discover", "review AI insights", or wants a digest of everything Amplitude's AI agents have surfaced recently.
Amplitude の AI エージェントが最近発見した内容をすべて表示します。get_agent_results で利用可能なすべてのエージェントタイプをクエリし、古い情報がないか確認して、インパクト順にランク付けされた統一的なストーリーに合成し、具体的なフォローアップアクションを提供します。
主要ツール:
Amplitude:get_agent_results — Amplitude の AI エージェントから事前に計算された分析結果を取得します。複数のエージェントタイプに対応(ツールの agent_type 列挙型で現在のリストを確認)。各エージェントタイプは個別にクエリされます。すべてのタイプが created_after、created_before、query、agent_params、limit でのフィルタリングに対応しています。補助ツール:
Amplitude:get_amplitude_context — ユーザー、組織、プロジェクトの情報をセットアップします。Amplitude:use_amp_flags with action: "list_deployments" — フラグが付いた問題の修正がリリース済みか確認(古い情報の検証)。Amplitude:get_amplitude_context を呼び出してユーザーの組織、プロジェクト、最近のアクティビティ、主要ダッシュボードを取得します。複数プロジェクトがある場合は、どれをレビューするか確認するか、広範なスキャンが必要であれば全プロジェクトをレビューします。
ターゲットプロジェクトの設定と AI コンテキストについて Amplitude:get_amplitude_context を再度呼び出します。
ユーザーのリクエストからレビュー期間を決定します:
created_after ISO 8601 タイムスタンプを常に計算します。get_agent_results ツール記述子をチェックして、列挙型に含まれるすべての利用可能な agent_type を確認します。エージェントタイプごとに 1 回のコールを行い、並列実行します。 各コールについて:
agent_type: 列挙型から取得するエージェントタイプcreated_after: ステップ 1 で決定したレビュー期間のタイムスタンプlimit: 10ユーザーが特定の領域について質問した場合(例: 「オンボーディング(利用開始の手引き)のインサイト」)、すべてのコールに対してその領域と一致する query を追加します。エージェントタイプが agent_params(例: インパクト評価、カテゴリ、ダッシュボード ID)による追加フィルタリングをサポートしている場合、ユーザーのリクエストがより狭いスコープを示唆している場合は使用して結果を絞り込みますが、そうでなければ agent_params を省略して最広範なビューを取得します。
返された各結果について、以下をメモします:
エージェントタイプから正確に 1 つの結果が返された場合、アーティファクト(詳細な分析結果)は自動展開されます。複数の結果が返された場合は、プレビューをメモして、最も関連性の高い 2~3 つ(直近性またはユーザーのフォーカス領域との一致により判定)の完全なアーティファクトを session_id を使用して取得します。
あるエージェントタイプが 3 件未満の結果を返し、agent_params フィルタリングをサポートしている場合は、カバレッジを広げるために緩いフィルタで 2 回目のコールを実行することを検討します。
エージェントのインサイトは数日以内に古くなります。合成する前に、信頼性のないものをフィルタリングするかフラグを付けます。
作成日をチェック。 各発見について、今日との相対的な古さをメモします:
デプロイメント(リリース内容)と相互参照(1 回のコール)。 use_amp_flags を action: "list_deployments" で 1 回呼び出します。AI が検出した各問題について、分析実行後に影響を受けた領域への修正または変更をデプロイがリリースしたかどうかを確認します。リリースしている場合は、その発見を「[デプロイメント名]によって解決された可能性あり」と記載し、アクティブな問題として提示しません。
エージェントタイプ間で重複排除。 同じ問題が複数のエージェントタイプから表面化することがあります。これらを複数エージェントの証拠でマークされた単一の発見にマージします — 同じ問題を複数回提示しません。
インパクトと証拠の強度でランク付けします。
エージェントタイプではなく、テーマでグループ化。 発見を製品テーマまたは問題領域(「チェックアウトフロー」「オンボーディング」「検索機能」)でまとめます。どのエージェントが生成したかではなく、それらでもありません。各テーマ内で、すべての貢献するエージェントタイプからの証拠を織り交ぜます。
ギャップを特定。 最近の結果を返さなかったエージェントタイプ、またはカバレッジがない製品領域を記載します。
出力を PM がチームに転送できるナラティブ ダイジェストとして構成します。
必須セクション:
要約(3~4 文): どのエージェントタイプがクエリされたか、レビュー期間、結果の合計数、最も重要な 1 つの発見、全体評価。
主要な発見(3~7 項目、インパクト順):
各発見について:
### [発見のタイトル — 行動指向、10 語以内]
**インパクト:** [Critical/High/Medium/Low] | **エージェント:** [貢献したエージェントタイプをリスト] | **鮮度:** [X 日前に検出]
**AI が発見したこと:** インサイトを説明します — どんな異常、摩擦、問題が検出されたか。製品領域と各エージェントからの証拠について具体的に。
**鮮度チェック:** 分析後にデプロイがリリースされたか、または発見の新しい検証が必要かを記載。発見が 3 日以内の場合は、この行は省略します。
**推奨アクション:** 1 つの具体的な次のステップ。
カバレッジ ギャップ(2~4 項目): 結果がないエージェントタイプ、または AI カバレッジがない製品領域。各について、何をするか提案します — どのエージェントを実行し、どの内容に対して実行するか。
フォローアップ プロンプト: 発見周辺で何を掘り下げるかについて、2~3 の具体的な選択肢で終わります。
執筆標準:
query パラメータを追加します。関連する発見のみを提示します。ユーザーが言う: 「AI が最近発見したことは?」
アクション:
get_agent_results で利用可能なすべてのエージェントタイプを確認、created_after を 7 日前に設定してそれぞれを並列でクエリユーザーが言う: 「オンボーディング(利用開始の手引き)についての AI インサイトはありますか?」
アクション:
query: "onboarding"、created_after を 7 日前に設定してクエリユーザーが言う: 「AI エージェント インサイトをすべて表示してください」
アクション:
Surface everything Amplitude's AI agents have found recently. Query every available agent type in get_agent_results, validate for staleness, and synthesize into a unified narrative ranked by impact with concrete follow-up actions.
Primary tool:
Amplitude:get_agent_results — Retrieve pre-computed analyses from Amplitude's AI agents. Supports multiple agent types (check the tool's agent_type enum for the current list). Each agent type is queried separately. All support filtering by created_after, created_before, query, agent_params, and limit.Supporting tools:
Amplitude:get_amplitude_context / Amplitude:get_amplitude_context — Bootstrap user, org, and project info.Amplitude:use_amp_flags with action: "list_deployments" — Check whether fixes have shipped for flagged issues (staleness validation).Amplitude:get_amplitude_context to get the user's org, projects, recent activity, and key dashboards. If multiple projects, ask which to review — or review all if the user wants a broad scan.Amplitude:get_amplitude_context for the target project's settings and AI context.Determine the review window from the user's request:
created_after ISO 8601 timestamp for the review window.Check the get_agent_results tool descriptor to discover every available agent_type in the enum. Make one call per agent type, in parallel. For each:
agent_type: the agent type from the enumcreated_after: the review window timestamp from Step 1limit: 10If the user asked about a specific area (e.g., "onboarding insights"), add a query matching that area to every call. If an agent type supports additional filtering via agent_params (e.g., impact ratings, categories, dashboard IDs), use them to focus results when the user's request suggests a narrower scope — otherwise omit agent_params to get the broadest view.
For each result returned, note:
If exactly 1 result is returned for an agent type, artifacts auto-expand. If multiple results, note the previews and fetch full artifacts for the 2-3 most relevant ones (by recency or by matching the user's focus area) using session_id.
If any agent type returns fewer than 3 results and supports agent_params filtering, consider a second call with relaxed filters to broaden coverage.
Agent insights go stale within days. Before synthesizing, filter out or flag anything unreliable.
Check creation dates. For each finding, note how old it is relative to today:
Cross-reference with deployments (1 call). Call use_amp_flags with action: "list_deployments" once. For each AI-detected issue, check if a deployment shipped a fix or change to the affected area after the analysis was run. If so, note the finding as "potentially resolved by [deployment]" rather than presenting it as an active issue.
Deduplicate across agent types. The same problem may surface from multiple agent types. Merge these into a single finding with multi-agent evidence — don't present the same issue multiple times.
Rank by impact and evidence strength.
Group by theme, not by agent type. Organize findings by product theme or problem area ("Checkout flow," "Onboarding," "Search feature"), not by which agent produced them. Within each theme, weave together evidence from all contributing agent types.
Identify gaps. Note agent types that returned no recent results, or product areas with no coverage.
Structure the output as a narrative digest that a PM could forward to their team.
Required sections:
Summary (3-4 sentences): Which agent types were queried, the review window, how many results total, the single most important finding, and overall assessment.
Key Findings (3-7 items, ranked by impact):
For each finding:
### [Finding Title — action-oriented, ≤10 words]
**Impact:** [Critical/High/Medium/Low] | **Agents:** [list agent types that contributed] | **Freshness:** [X days old]
**What the AI found:** Describe the insight — what anomaly, friction, or issue was
detected. Be specific about the product area and the evidence from each agent.
**Staleness check:** Note if deployments shipped after the analysis, or if the finding
needs fresh validation. Omit this line if the finding is < 3 days old.
**Recommended action:** One concrete next step.
Coverage Gaps (2-4 items): Agent types with no results, or product areas with no AI coverage. For each, suggest what to do — which agent to run and on what.
Follow-on prompt: End with 2-3 specific options for what to dig into next, framed around the findings.
Writing standards:
query parameter to every agent type call. Present only relevant findings.User says: "What has the AI found recently?"
Actions:
get_agent_results for all available agent types, query each in parallel with created_after set to 7 days agoUser says: "Any AI insights about onboarding?"
Actions:
query: "onboarding", created_after set to 7 days agoUser says: "Show me all AI agent insights"
Actions:
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。