| 1 | Feature: Directory listing acceptance |
| 2 | Scenario: Happy path lists a workspace directory |
| 3 | Given an offline CodeWhale evaluation workspace |
| 4 | When the user asks "list the current directory" |
| 5 | Then the simulated LLM should call the "File" tool with action "list" |
| 6 | And the tool output should include: |
| 7 | | entry | |
| 8 | | README.md | |
| 9 | | notes.txt | |
| 10 | | src | |
| 11 |