Run a task

Run a task in Visual Studio Code — with the four heights of help laid out: do it now, make it easier for the next person to accept, work out the right move when you are stuck, and learn the pattern so it stops coming back.

4prompt heights
Open it in the interactive atlas →

The four heights

The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.

Execute — do the immediate task

+
Run the existing build task named BuildProject now. Use the Run Task command, ensure the integrated…
Run the existing build task named BuildProject now. Use the Run Task command, ensure the integrated terminal shows the full build log, and if the task fails, capture the last 200 lines into build-failure.log at the workspace root. Do not run any clean or deploy steps—only the BuildProject task.

Improve — make it easier to accept

+
Before I run BuildProject for QA, make it easy to spot failure: surface the exact command and cwd…
Before I run BuildProject for QA, make it easy to spot failure: surface the exact command and cwd the task will use, highlight any preLaunchTask it depends on, and flag environment variables that affect the build. Point out the three things that would make a reviewer hesitate to approve running this on a shared branch.

Decide — diagnose the stuck moment

+
I kicked off the BuildProject task and the terminal opens then closes with no output. The task used…

BuildProject task starts but stops immediately with no output.

I kicked off the BuildProject task and the terminal opens then closes with no output. The task used to run fine last week. I suspect the task's command or problemMatcher is misconfigured or the task is launching in the wrong shell. I can't tell whether an extension update changed the default shell or whether the task is marked as background. What's the likely cause and the safest next step to get the build log without breaking anything for other developers?

Become — change the pattern

+
Across the team, people are avoiding the configured build task and running ad-hoc build scripts…

Developers rerun builds manually because automated tasks are flaky.

Across the team, people are avoiding the configured build task and running ad-hoc build scripts instead. That loses build flags and makes CI mismatches. I want a single habit change that reduces friction and makes the shared build task the default. What should I change first so everyone trusts and uses the task instead of hand-run scripts?

Next to this one

Other code editor work people do in Visual Studio Code.

Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.

The rest of the map

Same library, five ways in.