DocsGet Started
View as Markdown

Quick Start

Learn the Agentastic workspace and launch a safe first task in a few minutes

This tour assumes Agentastic and at least one provider CLI are already installed. If not, start with Installation.

Open a repository#

Use any of these entry points:

  • Press Cmd+O in Agentastic.
  • Drag a folder onto the Agentastic icon.
  • Run open -a "Agentastic.dev" /path/to/repository.

A git repository unlocks the normal worktree-per-task workflow. Non-git folders can still use local or container mode.

Know the workspace#

AreaWhat it is for
NavigatorFiles, repositories, source control, and the Agents list
EditorCode, diffs, browser previews, settings, and Agent Home
Utility areaNative terminals, task output, and logs
InspectorWorktree status, changes, browser state, agents, commit, and pull-request actions

Useful shortcuts:

ActionShortcut
Quick OpenCmd+P
Command PaletteCmd+Shift+P
Toggle NavigatorCmd+0
Toggle Utility AreaCmd+J
Find in ProjectCmd+Shift+F

Launch a focused task#

  1. Open Agent Home.
  2. Choose the repository and base branch.
  3. Select an installed provider.
  4. Leave the isolation mode on Worktree.
  5. Enter a task such as:
text
Add a health-check endpoint that returns the app version. Follow the existing route pattern and add focused tests. Run those tests before you finish.
  1. Send the prompt.

Agentastic creates a branch and worktree, runs any configured setup script, launches the provider's CLI, and delivers your prompt.

Follow the work#

The new task appears in the Agents navigator. From there you can:

  • Watch its terminal output.
  • Open changed files in the editor.
  • Launch the worktree's development server.
  • Preview and inspect the result in the built-in browser.
  • Send a follow-up when the agent is waiting for input.

The main repository remains untouched because the task has its own checkout.

Review and finish#

When the agent stops:

  1. Open the worktree's diff.
  2. Run or inspect the relevant tests.
  3. Optionally run code review with Claude, Codex, CodeRabbit, or Greptile.
  4. Commit and open a pull request from the Inspector or source-control actions.
  5. Archive or remove the worktree after the change is merged.

Try the dev CLI#

After installing shell integration from Agentastic → Install Shell Integration…, launch a task from any terminal:

bash
dev agent create \ --repo ~/src/my-app \ --agent codex \ --name docs-cleanup \ --prompt "Tighten the installation guide and check every internal link."

Then inspect and message it:

bash
dev agents dev tail <terminal_id> 80 dev send <terminal_id> "Also verify the examples on macOS 14."

See Programmatic Control for scripts, schedulers, dashboards, and bot integrations.

Go deeper#