ワンクリックで
sms
Send SMS messages. Preferred: send_sms (sends immediately). Alternative: intent (opens SMS app). Look up contact number first.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Send SMS messages. Preferred: send_sms (sends immediately). Alternative: intent (opens SMS app). Look up contact number first.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search, subscribe, and listen to podcasts. Download RSS feeds, manage episodes, and play audio with position tracking. Tools: http, file_storage, media_queue, play_audio.
Manage local lists (shopping, to-do, etc.) stored as files. Add, remove, check and read items. Tools: file_storage.
Read, create, update and delete Google Calendar events. Requires Google OAuth. Tools: http.
Search contacts by name and retrieve phone numbers. Use before calling or sending SMS. Tools: query.
Read, search and send emails via Gmail API. Requires Google OAuth. Tools: gmail_send, http.
Start navigation, get directions and route info via Google Maps app. Tools: intent, http (optional, requires Maps API key for traffic/route details).
| name | sms |
| description | Send SMS messages. Preferred: send_sms (sends immediately). Alternative: intent (opens SMS app). Look up contact number first. |
Send SMS directly or open the messaging app.
Sends SMS directly in the background – the user does NOT need to tap "Send" in the SMS app.
{
"phone_number": "+4366012345678",
"message": "I'll be 10 minutes late"
}
If the user wants to review or edit the SMS before sending, use the intent:
{
"action": "android.intent.action.SENDTO",
"uri": "smsto:{NUMBER}",
"extras": [
{ "key": "sms_body", "value": "{MESSAGE_TEXT}" }
]
}
{
"action": "android.intent.action.MAIN",
"package": "com.android.mms"
}
+4366012345678 (international format preferred)06601234567 (local format)query tool (contacts)send_sms toolFor WhatsApp messages:
{
"action": "android.intent.action.VIEW",
"uri": "https://wa.me/{NUMBER}?text={TEXT}",
"package": "com.whatsapp"
}