Install
Choose one installation method
Section titled “Choose one installation method”For macOS and Linux, the native installer is the recommended route:
curl -fsSL https://signetai.sh/install.sh | bashPackage-manager wrappers install the same compiled Signet binary as the direct installer through the matching native package:
npm install -g signetai# orbun add -g signetaiUse one method per machine. The npm and Bun routes require their corresponding runtime; the direct installer does not install Bun or rebuild Signet. Windows currently uses the npm route:
npm install -g signetaiConfirm that the launcher is available, then start onboarding:
signet --helpsignet setupIf more than one launcher is installed, signet doctor reports the conflict. Do not remove a package solely to remove its signet launcher: it may also provide signet-mcp.
macOS Gatekeeper
Section titled “macOS Gatekeeper”The macOS CLI binaries (signet-darwin-x64 and signet-darwin-arm64) are
currently unsigned by design. They will work, but macOS Gatekeeper can block a
binary downloaded through a browser because it has the quarantine attribute.
Apple Developer signing will be added when it becomes available.
If Gatekeeper blocks a browser-downloaded binary, use one of these options:
-
In Finder, right-click the binary, choose Open, then confirm Open.
-
Open System Settings > Privacy & Security, find the blocked app or binary, and choose Open Anyway.
-
In Terminal, remove the quarantine attribute from the downloaded file:
Terminal window xattr -d com.apple.quarantine <path>
Only use these steps for a binary you trust and downloaded from the official Signet source. Verify the release and checksum before bypassing Gatekeeper.
For non-server deployments, the Signet desktop app is the recommended install path. Use the CLI binary for server, terminal, and automation deployments.
Recommended first route
Section titled “Recommended first route”Use the interactive wizard unless a deployment system already knows the choices. It can create a workspace, configure selected harnesses, initialize the database, and start a local daemon. Continue with Set up Signet.
Headless setup
Section titled “Headless setup”signet setup refuses to prompt when standard input is not a TTY. For automation, use either --non-interactive with flags or a validated setup plan through --file or --json.
This example creates a managed Minimal identity, uses the local daemon, uses built-in embeddings, and disables background inference explicitly:
For agent-driven onboarding, use non-interactive mode:
signet setup --non-interactive \ --name "My Agent" \ --identity-mode managed \ --identity-preset minimal \ --network-mode localhost \ --harness claude-code \ --embedding-provider native \ --extraction-provider none--deployment-type local|vps|server only adjusts inferred defaults for non-interactive setup and reconfiguration. It is not an interactive wizard question. Explicit provider flags take precedence over those inferred defaults.
For a remote daemon, use --remote-url with a bare http:// or https:// origin. Setup records the remote URL and does not start a local daemon:
signet setup --non-interactive \ --name "Remote Agent" \ --identity-mode off \ --remote-url https://signet.example.test:3850 \ --embedding-provider none \ --extraction-provider noneRun signet setup --help in the installed version before automating a new release. The full flag reference, setup-plan schema, OpenClaw backup flags, roster flags, source flags, and Dreaming option are in Install and configure.
Provider choices
Section titled “Provider choices”Use the values accepted by setup validation:
- Embeddings:
native,ollama,openai, ornone. - Background inference:
acpx,claude-code,codex,llama-cpp,ollama,opencode,openrouter,openai-compatible, ornone.
Current CLI help also advertises llama-cpp for --embedding-provider, but the setup validator does not currently accept it. Use one of the validated embedding values above until that implementation discrepancy is resolved.
Installation is separate from development
Section titled “Installation is separate from development”These commands install a product release. To build Signet from source or contribute changes, use Contributing.

