Skip to main content

Get started in four steps

Step 1: Install OpenWork

npm install -g openwrk
openwrk start --workspace /path/to/workspace --approval auto
This runs OpenCode + OpenWork server + optional router without desktop UI.

Step 2: Create your first worker

Use one worker per business domain.Suggested first worker names:
  • agency-core
  • client-a
  • client-b
This keeps context and automations isolated.

Step 3: Connect and run one task

Start with a deterministic workflow:
  • competitor research
  • daily report
  • weekly summary
Keep prompts and outputs in one worker first, then scale.

Step 4: Share with your team

CLI example

npm install -g openwrk
openwrk start --workspace /path/to/workspace --approval auto
openwrk status --openwork-url http://127.0.0.1:8787 --opencode-url http://127.0.0.1:4096

Next steps

  • Use /tutorials/automations-repeatable-jobs to add reliable recurring outputs.
  • Use /tutorials/worker-isolation before onboarding more teammates.
  • Use /tutorials/share-worker-invite-link to remove copy/paste friction.