Docs · v1.0

Welcome to Bizos.

Bizos is an AI-native ERP. Where legacy systems are forms-and-tables, Bizos is agents-and-policies. This documentation explains how to install, configure, integrate and extend.

Introduction

Bizos exposes three primary surfaces: the workspace (UI for humans), the agent runtime (where workflows execute), and the API (for embedding and integrations). Most teams use all three.

Install & setup

Create a workspace at app.bizos.com. Invite teammates with SSO. Connect your first integration in < 60 seconds.

# Authenticate
$ npx bizos login

# Connect your ledger
$ bizos connect netsuite --account 1234

# Run an agent
$ bizos agent run close --period 2026-Q1 --dry-run

Run your first agent

Every agent is callable from chat, CLI, or API. Start with a dry run — the agent plans, executes against a sandbox, and returns a diff. You approve, it commits.

Agent-native ledger

Bizos stores accounting data as a double-entry ledger with typed entities. Every journal entry carries a hash chain, an authoring agent, a confidence score and a reversible action ID.

Workflows

A workflow is a typed graph of tools, agents and verifiers. Author them in chat (“draft a workflow that…”), the visual builder, or YAML.

name: reconcile_stripe_payouts
trigger: stripe.payout.paid
steps:
  - plan: planner.default
  - act: netsuite.openInvoices
  - act: ledger.writeJournal
  - verify: balances.match
  - notify: slack(#finance)

Verifier pattern

Every mutating step is audited by an independent verifier model. If the verifier’s confidence is below your tenant threshold, the action is queued for human review.

Policies & approvals

Define budget caps, two-person rules, vendor allowlists, and escalation paths. Policies are versioned and SOX-evidence ready.

OAuth setup

Bizos uses OAuth 2.1 with PKCE for all integrations. Tokens are encrypted with per-tenant keys; refresh rotation is automatic.

MCP tools

Bizos is MCP-compatible. Register any MCP server in the workspace; tools become callable by agents with per-tool RBAC.

Webhooks

Subscribe to agent.run.completed, ledger.journal.posted, and 40+ other events. Signed with HMAC-SHA256.

SDKs

Official SDKs for TypeScript, Python and Go. See the API reference.