--- title: "Quickstart" description: "Install OpenWork and run your first worker" --- ## Get started in four steps ### Step 1: Install OpenWork Download the latest release from: `https://openwork.software/download` Start with macOS if you want the fastest path. ```bash 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 Open worker actions in OpenWork and share: - `OpenWork worker URL` - `Access token` - `OpenWork invite link` (prefills URL + token) The invite link is best for fast teammate onboarding. ## CLI example ```bash 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.