すべてのツール

create_referral_invites

診断とシステム · macOS · Windows

効果: 書き込み. 状態: 条件付き提供.

「条件付き提供」は、バージョン、プラットフォーム、権限、アカウント、設定に依存する可能性を示し、すべての環境で有効という意味ではありません。

macOS

目的

ユーザーが招待することを選んだ同僚への紹介招待を記録し、各人固有の紹介リンクを返します。これにより、その後誰が LMCP をインストールまたは有効化したか確認できます。このツール自体は何も送信しません。返された各リンクは、その人へのメールやメッセージに含められます。`lang` には招待文の言語(例: "es"、"en")を記録します。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがありません。これは無許可の操作を認めるものではありません。効果を確認し、承認を得てください。

英語の正規技術スキーマmacOS
{
  "properties": {
    "lang": {
      "description": "ISO language of the invite you're writing (the user's conversation language, e.g. 'es', 'en'). Defaults to the Mac's language.",
      "type": "string"
    },
    "recipients": {
      "description": "The picked recipients.",
      "items": {
        "properties": {
          "email": {
            "description": "Recipient's email",
            "type": "string"
          },
          "name": {
            "description": "Recipient's name",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "recipients"
  ],
  "type": "object"
}

ドキュメント例

create_referral_invites のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "recipients": [
    {
      "email": "[email protected]",
      "name": "Alex Rivera"
    }
  ]
}

Windows

目的

ユーザーが招待することを選んだ同僚への紹介招待を記録し、各人固有の紹介リンクを返します。これにより、その後誰が LMCP をインストールまたは有効化したか確認できます。このツール自体は何も送信しません。返された各リンクは、その人へのメールやメッセージに含められます。`lang` には招待文の言語(例: "es"、"en")を記録します。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがありません。これは無許可の操作を認めるものではありません。効果を確認し、承認を得てください。

英語の正規技術スキーマWindows
{
  "properties": {
    "lang": {
      "description": "ISO language of the invite you're writing (the user's conversation language, e.g. 'es', 'en').",
      "type": "string"
    },
    "recipients": {
      "description": "The picked recipients.",
      "items": {
        "properties": {
          "email": {
            "description": "Recipient's email",
            "type": "string"
          },
          "name": {
            "description": "Recipient's name",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "recipients"
  ],
  "type": "object"
}

ドキュメント例

create_referral_invites のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "recipients": [
    {
      "email": "[email protected]",
      "name": "Alex Rivera"
    }
  ]
}