ワンクリックで
app-launcher-skill
Launch Android applications by package name. Open any installed app programmatically.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Launch Android applications by package name. Open any installed app programmatically.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | app-launcher-skill |
| description | Launch Android applications by package name. Open any installed app programmatically. |
| allowed-tools | app_launcher |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Launch applications on Android device.
This skill provides instructions for the App Launcher tool node. Connect the App Launcher node to Zeenie's input-tools handle to enable app launching.
Launch an installed application by package name.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "launch" |
| parameters | object | Yes | Contains package_name |
| Field | Type | Required | Description |
|---|---|---|---|
| package_name | string | Yes | Android package name of the app |
Launch an app:
{
"action": "launch",
"parameters": {
"package_name": "com.whatsapp"
}
}
| App | Package Name |
|---|---|
com.whatsapp | |
| Chrome | com.android.chrome |
| Gmail | com.google.android.gm |
| YouTube | com.google.android.youtube |
| Maps | com.google.android.apps.maps |
| Camera | com.android.camera2 |
| Phone | com.android.dialer |
| Messages | com.google.android.apps.messaging |
| Settings | com.android.settings |
| Play Store | com.android.vending |
| Spotify | com.spotify.music |
| Netflix | com.netflix.mediaclient |
| Twitter/X | com.twitter.android |
com.instagram.android | |
| Telegram | org.telegram.messenger |
Success:
{
"success": true,
"service": "app_launcher",
"action": "launch",
"data": {
"message": "App launched successfully",
"package_name": "com.whatsapp"
}
}
Error:
{
"error": "App not installed: com.example.notinstalled",
"service": "app_launcher",
"action": "launch"
}
| Use Case | Description |
|---|---|
| Quick launch | Open apps on command |
| Automation | Start apps as part of workflow |
| Shortcuts | Voice-controlled app opening |
| Workflows | Chain app launches with other actions |
To find an app's package name:
1. app_list.status -> get list of apps
2. Find desired app in results
3. app_launcher.launch with package_name
input-tools handleUse this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
Control Android camera - get camera info, take photos, and access camera capabilities.