Documents
05 - Send Your First Agent Task
05 - Send Your First Agent Task
Type
Document
Status
Published
Created
May 26, 2026
Updated
May 26, 2026
Updated by
Dosu Bot

05 - Send Your First Agent Task#

Once you have a workspace, send a prompt and watch the agent work. This page walks through your first session end to end.

Pick an agent#

Before sending, choose your agent in the workspace header:

AgentBest for
Claude CodeMulti-file edits, debugging, reasoning-heavy tasks
CodexImplementation, refactoring, code generation

Make sure the agent CLI is installed, on your PATH, and authenticated with its provider.

Write a good first prompt#

A strong first task is narrow, verifiable, and self-contained:

"Add a --verbose flag to the build command that prints each step as it runs. Update the existing test to cover the new flag."

Weak first tasks ("refactor the whole codebase", "make it better") produce sprawling diffs that are hard to review.

Send the task#

  1. Type your prompt in the composer at the bottom of the workspace.
  2. Press Enter (or click Send).
  3. Helmor starts a session, launches the sidecar, and streams agent output in real time.

You'll see:

  • Agent reasoning and tool calls in the session timeline.
  • File edits appearing as the agent writes them.
  • Follow-up questions if the agent needs clarification — reply inline.

When the session finishes#

The agent signals completion. You now have three options:

  • Review the diff — check changed files against the original task.
  • Continue — send a follow-up prompt to refine the result.
  • Discard — reset the workspace to its pre-session state.

Troubleshooting first sessions#

ProblemFix
Session hangs immediatelyVerify agent CLI works outside Helmor (claude --version).
"Sidecar not found" errorRun bun run dev:prepare if developing locally.
Agent produces no outputCheck provider credentials and API key validity.

Next: Learn how to Review Agent Changes before committing.