بنقرة واحدة
app-list-skill
Get list of installed Android applications with package names, versions, and metadata.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Get list of installed Android applications with package names, versions, and metadata.
التثبيت باستخدام 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-list-skill |
| description | Get list of installed Android applications with package names, versions, and metadata. |
| allowed-tools | app_list |
| metadata | {"author":"machina","version":"1.0","category":"android"} |
Get list of installed applications on Android device.
This skill provides instructions for the App List tool node. Connect the App List node to Zeenie's input-tools handle to enable app listing.
Get list of installed applications.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "status" - Get installed apps |
Get installed apps:
{
"action": "status"
}
{
"success": true,
"service": "app_list",
"action": "status",
"data": {
"apps": [
{
"name": "WhatsApp",
"package_name": "com.whatsapp",
"version": "2.24.1.5",
"version_code": 2241005,
"system_app": false,
"enabled": true
},
{
"name": "Chrome",
"package_name": "com.android.chrome",
"version": "121.0.6167.101",
"version_code": 616710100,
"system_app": false,
"enabled": true
},
{
"name": "Settings",
"package_name": "com.android.settings",
"version": "14",
"version_code": 34,
"system_app": true,
"enabled": true
}
],
"total_apps": 85,
"user_apps": 42,
"system_apps": 43
}
}
| Field | Type | Description |
|---|---|---|
| name | string | Display name of the app |
| package_name | string | Android package identifier |
| version | string | Version string |
| version_code | int | Version code number |
| system_app | boolean | True if pre-installed system app |
| enabled | boolean | True if app is enabled |
| Field | Description |
|---|---|
| total_apps | Total number of apps |
| user_apps | User-installed apps count |
| system_apps | Pre-installed system apps count |
| Use Case | Description |
|---|---|
| Find apps | Discover what's installed |
| Get package names | Find package name for app_launcher |
| Version check | Verify app versions |
| Inventory | Audit installed applications |
app_list.statusapp_launcher.launchThe tool returns all apps. To find specific apps:
1. Get app list
2. Filter where name contains "message" or "chat"
3. Return matching apps
input-tools handle