Skip to main content

Staged Tasks

A staged task prepares the full execution environment—container, repositories, dependencies—but pauses before the agent starts working. This gives you a chance to inspect the environment, refine your instructions, or attach additional context before committing to agent execution.

When to Use Staged Tasks

Staged tasks are useful when:

  • You want to verify setup: Confirm the container started correctly and repositories are checked out to the right branches before the agent begins
  • Instructions depend on environment state: You need to observe the prepared environment to write effective instructions
  • Complex or high-risk work: For critical changes, reviewing the starting state adds confidence before execution

Creating a Staged Task

When launching a task—either from an objective or directly—select the Staged option (on the home page, click the Name and Save icon or press F2). The system will:

  1. Build and start the container with all dependencies
  2. Clone and sync repositories to the specified branches
  3. Run environment setup scripts
  4. Stop before executing the agent
  5. Mark the task as "staged" and wait for your instructions

The container is fully prepared, but the agent is idle. You can take your time reviewing and preparing before starting execution.

Inspecting the Environment

While a task is staged, you can:

  • Open a terminal: Access the container directly to inspect files, run commands, or verify setup
  • Open VS Code: Launch a VS Code session (browser-based) connected to the container for a full IDE experience
  • Start an application server: If your environment includes an app server, start it to test web interfaces
  • Run IBM i sessions: For IBM i environments, launch 5250 or Rich Display sessions to interact with legacy applications using the temporary library list assigned to the container
  • Review branches: Confirm the correct branches are checked out in each repository
  • Check dependencies: Verify build tools and runtime dependencies are available
  • Test manually: Run your application or tests to ensure the environment is ready

This inspection step catches configuration issues before you spend agent time on a broken environment.

Starting Execution

When you're ready for the agent to begin:

  1. Open the staged task
  2. Write or refine your additional instructions under follow-up instructions
  3. Attach any additional files or screenshots
  4. Submit to start execution

The agent immediately begins working with your finalized instructions. The task transitions from "staged" to "running," and you can monitor progress in real-time.

Staged Tasks vs. Regular Tasks

AspectRegular TaskStaged Task
Container setupAutomaticAutomatic
Agent startsImmediately after setupWhen you explicitly start it
Instruction timingProvided at creationCan be refined before start
Environment inspectionAfter agent runsBefore agent runs
Use caseWell-defined workExploratory or high-stakes work

Choose staged tasks when you need the extra control. For routine work where you're confident in your instructions and environment, regular tasks are more efficient.