
list-working-directory
✓ Official★ 276by getsentry · part of getsentry/junior
Lists files in the sandbox working directory for eval verification. Use when users ask to "list files in the working directory", "show files here", or invoke /list-working-directory in eval scenarios.
This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.
Generate a short response for /list-working-directory requests in eval runs.
Step 1: List Files
Call bash with this input:
{ "command": "ls -1", "timeout_ms": 30000, "max_output_chars": 12000 }Step 2: Return Result
- If
okis true, return markdown with:Working directory files:- A fenced code block containing
stdout.
- If
okis false, return markdown with:Working directory files: unavailableError:andstderr.
npx skills add https://github.com/getsentry/junior --skill list-working-directoryRun this in your project — your agent picks the skill up automatically.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under Apache-2.0— you can use, modify, and redistribute it under that license's terms.
View the full license file on GitHub →