ワンクリックで
apt-package-manager
Search, install, and verify Debian or Ubuntu packages with apt-get in the container.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search, install, and verify Debian or Ubuntu packages with apt-get in the container.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Drive a headed Chromium via the agent-browser CLI — open/click/type/hover/scroll/screenshot/snapshot/eval/pdf/network-route. Use this for any web interaction; no native browser tool is exposed.
Search the web using DuckDuckGo. No API key required. Supports instant answers and HTML scraping modes. Privacy-focused search alternative.
Control the Linux desktop GUI using xdotool, wmctrl, dogtail, and scrot. Provides a window list, an accessibility-tree viewer (with coordinates) for finding buttons and text fields, a thin xdotool wrapper for actuating them, and a launcher helper that enables accessibility for Electron/Chromium apps.
This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.
Placeholder task skill.
Extract text from images using Tesseract.js OCR (100% local, no API key required). Supports Chinese (simplified/traditional) and English.
| name | apt-package-manager |
| description | Search, install, and verify Debian or Ubuntu packages with apt-get in the container. |
Use this skill when a task requires installing or verifying Linux packages in this Ubuntu environment.
root, so sudo is unnecessary.apt-get over interactive frontends such as apt.apt-get upgrade or dist-upgrade unless the task explicitly requires them.Refresh package metadata:
apt-get update
Search for package names:
apt-cache search "<keyword>"
apt-cache policy <package>
Install one or more packages:
apt-get install -y <package>
apt-get install -y <package1> <package2>
Verify installation:
command -v <binary>
dpkg -s <package>
<binary> --version
apt-cache search if needed.apt-get update before the install if package metadata may be stale.apt-get install -y.