claude-skills/

Anthropic公式スキル・プラグインの日本語ディレクトリ

last sync 22h ago
スキルOfficialproductivity

🔍search-notes

プラグイン
carta-crm

説明

Carta CRM からノートレコードを検索・取得します。 次のような場合に使用: ユーザーが「ノートを探して」「ノートを検索して」「ノートを調べて」「[トピック]に関するノートを見せて」「ノートを一覧表示して」「[キーワード]が含まれるノートを見つけて」または「/search-notes」と言ったとき。 ID・タイトル・テキストコンテンツを含むノートの詳細を返します。

原文を表示

Searches for and retrieves note records from the Carta CRM. Use this skill when the user says things like "find a note", "search notes", "look up a note", "show me notes about [topic]", "list notes", "find notes mentioning [keyword]", or "/search-notes". Returns note details including ID, title, and text content.

ユースケース

  • ノートを検索・取得したい
  • 特定のトピックに関するノートを探したい
  • キーワードが含まれるノートを見つけたい
  • ノートを一覧表示したい

本文(日本語訳)

概要

search_notes を使用して、Carta CRM 内のノートをキーワードで検索します。 結果は読みやすいサマリー形式で返します。

ステップ 1 — 検索キーワードの収集

ユーザーがキーワードまたはトピックを指定している場合は、そのまま使用します。 検索キーワードが指定されていない場合は、ユーザーに入力を求めます。

ステップ 2 — 検索の実行

mcp__carta_crm__search_notes({
  query: "<検索キーワード>",
  limit: 20
})

ユーザーがより多くの結果の表示を求めた場合は、limit を増やしてください。 remainingCount > 0 の場合は、offset を使用してページネーションを行います。

ステップ 3 — 結果の表示

返却された各ノートについて、以下の情報を表示します:

  • タイトル
  • テキストコンテンツ(長い場合は約 200 文字に切り詰め)
  • 作成日および所有者(取得できる場合)

ノートが見つからなかった場合:

「検索に一致するノートが見つかりませんでした。別のキーワードをお試しください。」

ノートの総件数を表示し、残りの結果がある場合はページネーションを提案してください。

原文(English)を表示

Overview

Search for notes in the Carta CRM by keyword using search_notes. Return results in a readable summary.

Step 1 — Collect the search term

If the user provided a keyword or topic, use it directly. If no search term was given, ask for one.

Step 2 — Execute the search

mcp__carta_crm__search_notes({
  query: "<search term>",
  limit: 20
})

Increase limit if the user asks to see more results. Use offset to paginate when remainingCount > 0.

Step 3 — Present results

For each note returned, display:

  • Title
  • Text content (truncated to ~200 chars if long)
  • Creation date and owner if available

If no notes are found:

"No notes found matching your search. Try a different keyword."

Note the total count and offer to paginate if there are more results.

原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。