What problem does it solve? Setting up run commands for an Agent Session workspace requires manually editing .vscode/tasks.json with the correct schema, which is error-prone and easy to misconfigure. ## Core Features & Use Cases - Automatic command inference: Detects the project stack from files like package.json, Makefile, pyproject.toml, Cargo.toml, and go.mod to propose appropriate setup and run commands. - Schema-correct task generation: Writes tasks with "inAgents": true so they appear in the session's Run button, and optionally "runOptions": { "runOn": "worktreeCreated" } for setup commands that run when a worktree is created. - Safe merging: Reads the existing .vscode/tasks.json first and merges new commands without overwriting unrelated tasks. - Use Case: A developer opens a Node.js workspace in a new Agent Session and wants a one-click dev server. The Skill detects package.json, adds an npm install setup task and an npm run dev run task, and both appear in the Run button. ## Quick Start Ask the assistant to set up run commands for this workspace so they appear in the session's Run button.