Validate workspace roots at task creation/resume; surface "working directory not found" instead of downstream spawn ENOENT
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 125k
- Forks
- 19.4k
- PR merge metrics
- PR metrics pending
Description
Summary
A task rooted at a path that doesn't exist locally is created without warning. Every subsequent child-process spawn fails with ENOENT, which silently prevents the node_repl MCP server from starting — so the Computer Use plugin injects its SKILL.md but registers zero callable tools. The user sees "Computer Use isn't working" with no indication the working directory is the cause.
Mechanism
nonexistent task cwd
-> child-process spawn returns ENOENT
-> node_repl MCP server cannot start for that task
-> Computer Use exposes SKILL.md but no callable tools
Repro
Register a local project whose root is another macOS user's home. Create a task in it. Invoke @Computer.
Observed:
CreateProcess: Rejected("Failed to create unified exec process: No such file or directory (os error 2)")for both/bin/bashand/bin/zshFailed to watch workspace root for git init cwd=... errorCode=ENOENT- Tool catalog logs
omitting MCP server without an exact ready client server_name=node_repl
Control: an identical task under a valid local root passes all four checks — pwd, SKILL.md read, all three mcp__node_repl__js* tools registered, and a live sky.get_app_state({app:"Finder"}) capture. No reinstall, no permission change.
Why the error is misleading
No such file or directory reads as a missing binary. Both shells exist. The missing entity is the cwd, several layers removed from where the error surfaces.
Asks
- Validate the workspace root at task creation and resume; refuse or warn with
working directory not found: <path>. - When an MCP server fails to start, surface that in the task rather than silently omitting it from the tool catalog.
- Offer rebinding for tasks whose root is invalid, or state plainly that it isn't supported —
cwdis written into the rollout at creation and never re-read, so affected tasks are permanently unusable for execution while retaining full history.
Related: #29438, #26026
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by tracing task creation and resume handling, then follow child-process spawning and MCP server startup for an invalid workspace root. Reproduce with a nonexistent cwd and compare it with a valid root; done means the invalid root and failed MCP startup are surfaced clearly, with rebinding behavior established.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- cli, devtools
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 52/100