ワンクリックで
platform-watchos
Platform functions available on watchOS. Use invoke_platform to call native watchOS capabilities like local notifications.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Platform functions available on watchOS. Use invoke_platform to call native watchOS capabilities like local notifications.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Platform context for tvOS. No invoke_platform functions are available on Apple TV.
Memory system with daily logs and keyword search. Use to save facts, search past events, or recall user preferences and project context across conversations.
Analyze images from local files, URLs, or base64 data. For user-uploaded images, the path is provided in the [image attached] annotation.
Full browser automation via Chrome DevTools Protocol. Navigate pages, interact with UI elements, take screenshots, extract content, manage tabs, emulate devices, handle cookies/storage, monitor network, and control browser state.
Make HTTP requests (GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS) to APIs and web services. Use when the user needs to call a REST API, fetch data from an endpoint, send form data, upload files, download files, or test HTTP services.
Create and edit images locally with no AI (programmatic operations). Use when the user wants to create a new image (blank, gradient, solid color), resize an image, draw rectangles or shapes on an image, add a watermark, paste a logo, overlay one image on another, or do any Pillow/ImageMagick-style image operations. Do not use for text-to-image generation — use generate_image (AI) instead.
| name | platform-watchos |
| description | Platform functions available on watchOS. Use invoke_platform to call native watchOS capabilities like local notifications. |
| always | true |
| platform | watchos |
You are running on an Apple Watch (watchOS).
invoke_platformCall platform-specific functions using:
invoke_platform(function="function.name", params={"key": "value"})
Send a local notification to the user.
invoke_platform(function="local-notification.send", params={
"title": "Reminder",
"message": "Your task is complete."
})
| Parameter | Type | Required | Description |
|---|---|---|---|
| title | string | Yes | Notification title |
| message | string | Yes | Notification body text |