Getting Started

Quick Start

Run your first parallel agent task in under 5 minutes.

Edit this page

1. Authenticate

Log in to your SeaSnoke workspace:

seasnoke auth login

2. Initialize a Project

Navigate to your repository and initialize SeaSnoke:

cd my-project
seasnoke init

3. Submit Your First Task

Create a task file and submit it:

cat > task.md << 'EOF'
## Task: Add rate limiting middleware

Implement a Redis-backed rate limiter for the /api/v1/* routes.
- Use sliding window algorithm
- Configurable limits per endpoint
- Return 429 with Retry-After header
EOF

seasnoke task submit task.md --agents 3

4. Watch the Results

Open the dashboard or watch in your terminal:

seasnoke runs watch
# Or open the web dashboard
seasnoke dashboard
Mermaid
sequenceDiagram
  participant Dev as Developer
  participant CLI as SeaSnoke CLI
  participant Agents as Agent Fleet
  participant Repo as Repository

  Dev->>CLI: submit task.md
  CLI->>Agents: start 3 isolated runs
  Agents->>Repo: propose validated changes
  CLI->>Dev: show results and diffs

On this page