一键导入
environment-discovery
Strategies for quickly discovering what tools, languages, and files are available in a Terminal-Bench container.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Strategies for quickly discovering what tools, languages, and files are available in a Terminal-Bench container.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Keyboard shortcuts for common desktop applications — LibreOffice, GIMP, Chrome, Thunderbird, VS Code.
When to prefer GUI mouse clicks over keyboard shortcuts — especially for formatting, multi-step visual tasks, and cross-application workflows.
General GUI navigation patterns for desktop environments — finding elements, interacting with menus, and handling dialogs.
How to interpret accessibility tree elements and correlate them with screenshot regions for accurate GUI interaction.
Verification patterns to confirm task completion before submitting. Read this before calling submit().
Workarounds for bot detection, CAPTCHA, 403 errors, and Cloudflare challenges when browsing the web.
| name | environment-discovery |
| description | Strategies for quickly discovering what tools, languages, and files are available in a Terminal-Bench container. |
When starting a new Terminal-Bench challenge, quickly assess the environment.
which python python3 pip node npm gcc g++ make cmake perl ruby 2>/dev/null
ls /app/ 2>/dev/null
find /app -type f 2>/dev/null | head -30
Many containers have specialized tools already installed:
# Security/crypto tools
which john hashcat 7z 7za openssl 2>/dev/null
ls /app/john/run/ 2>/dev/null
# Bio tools
which oligotm primer3_core samtools 2>/dev/null
# Data tools
pip list 2>/dev/null | head -30
which python perl 2>/dev/null # python2 may exist as 'python'
# Use perl for text processing if python unavailable
# Use /app/john/run/john for password cracking (has its own perl scripts)
/app/john/run/*.pl (perl-based, use perl not python3)/app/ or /usr/local/bin//app/ first — it often contains task-specific files and toolsdpkg -l or apt list --installed to see system packages