원클릭으로
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