# Platform IOS

> Platform functions available on iOS. Use invoke_platform to call native iOS capabilities like local notifications.

- Skill: `ionclaw-org/platform-ios` (Agent Skill)
- Install (CLI): `npx skillmds@latest add ionclaw-org/platform-ios`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ionclaw-org/platform-ios/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ionclaw-org (https://skillmd.com/u/ionclaw-org)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/ionclaw-org/platform-ios

---


# Platform: iOS

You are running on an **iOS** device.

## Tool: `invoke_platform`

Call platform-specific functions using:

```
invoke_platform(function="function.name", params={"key": "value"})
```

## Available Functions

### local-notification.send

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   |

