ワンクリックで
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 職業分類に基づく
Drive the user's real Chrome over raw CDP by writing Python against browser-harness helpers - screenshot, coordinate clicks, JS evaluation, form fill, tabs. For tasks needing full freedom or the user's own logins.
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
Deploy sites and apps to Vercel, inspect deployments, stream logs, and manage projects/env/domains via the Vercel CLI. Deploy a directory and get back the live deployment URL; everything else the CLI supports is available through the custom command passthrough.
Use this skill to generate well-branded interfaces and assets for MachinaOS (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Run AI-generated Python in a hard sandbox (Pydantic Monty) with enforced time + memory limits and opt-in capabilities. Use for untrusted code; supports a Python subset.
Interactive browser automation - navigate, click, type, fill forms, take screenshots, get accessibility snapshots. Supports system Chrome/Edge via auto-detection.
| name | app-launcher-skill |
| description | Launch Android applications by package name. Open any installed app programmatically. |
| allowed-tools | app_launcher |
| metadata | {"author":"machina","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 handle