一键导入
app-launcher
Launch applications, open URLs in browser, and list running processes. Requires approval for launching applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Launch applications, open URLs in browser, and list running processes. Requires approval for launching applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Capture images from device camera. Currently a placeholder - camera support depends on device capabilities.
Generate a daily briefing summary for the user
Structured multi-step reasoning tool for complex problem solving with branching, hypothesis testing, and evidence tracking.
A minimal example skill that demonstrates the AG3NT SKILL.md format and contract.
Open files with default applications, reveal files in explorer/finder, and search for files on the system. Requires approval for operations outside workspace.
Periodic system check for proactive updates and reminders
| name | app-launcher |
| description | Launch applications, open URLs in browser, and list running processes. Requires approval for launching applications. |
| version | 1.0.0 |
| tags | ["applications","desktop","device","browser"] |
| triggers | ["open app","launch application","start program","open browser","open url","running apps","list processes"] |
| entrypoints | {"launch":{"script":"scripts/app_control.py launch","description":"Launch an application by name"},"url":{"script":"scripts/app_control.py url","description":"Open a URL in the default browser"},"list":{"script":"scripts/app_control.py list","description":"List running applications"},"focus":{"script":"scripts/app_control.py focus","description":"Bring an application to the foreground"}} |
| required_permissions | ["execute","application_control"] |
| license | MIT |
| compatibility | AG3NT 1.x |
| metadata | {"author":"ag3nt-team","category":"device-integration","node_capability":"application_control"} |
This skill provides application control on the local system. It can launch applications, open URLs, and manage running processes.
Launching applications requires user approval. The agent will pause and ask for confirmation before:
Launch an application by name.
python scripts/app_control.py launch "notepad"
python scripts/app_control.py launch "Visual Studio Code"
python scripts/app_control.py launch "chrome"
Common app names:
Open a URL in the default browser.
python scripts/app_control.py url "https://example.com"
python scripts/app_control.py url "https://github.com"
Show currently running applications (not all processes).
python scripts/app_control.py list
python scripts/app_control.py list --all # Include background processes
Bring an application window to the foreground.
python scripts/app_control.py focus "notepad"
python scripts/app_control.py focus "chrome"
| Operation | Windows | macOS | Linux |
|---|---|---|---|
| Launch | ✅ start | ✅ open -a | ✅ Various |
| Open URL | ✅ webbrowser | ✅ webbrowser | ✅ webbrowser |
| List apps | ✅ tasklist | ✅ ps | ✅ ps |
| Focus | ⚠️ Limited | ✅ AppleScript | ⚠️ Limited |