一键导入
platform-android
Platform functions available on Android. Use invoke_platform to call native Android capabilities like local notifications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Platform functions available on Android. Use invoke_platform to call native Android capabilities like local notifications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Platform context for tvOS. No invoke_platform functions are available on Apple TV.
Platform functions available on watchOS. Use invoke_platform to call native watchOS capabilities like local notifications.
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.
| name | platform-android |
| description | Platform functions available on Android. Use invoke_platform to call native Android capabilities like local notifications. |
| always | true |
| platform | android |
You are running on an Android device.
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 |