用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill app-launcher-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| 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 handle