Skip to content

Want LLC and Agent — CLI Quickstart

Install the CLI, form an entity through the TUI, and create an autonomous agent — all from the terminal.

Terminal window
uvx corp
Terminal window
corp setup

The setup wizard walks you through:

  • Connecting to The Corporation API (or running locally)
  • Setting your workspace name
  • Configuring your LLM provider and API key
Terminal window
corp

Running corp with no arguments launches the interactive terminal UI.

The TUI uses a tab bar across the top. Use Tab or click to switch between panes:

PaneWhat it does
EntitiesView and manage your legal entities
Cap TableEquity ownership breakdown
DocumentsFormation docs, contracts, filings
GovernanceBoard meetings and votes
AgentsCreate and manage autonomous agents
BillingInvoices and payments
ObligationsHuman-required actions (signatures, filings)
ContactsPeople and organizations
ChatLLM chat with full corporate context
SettingsConfiguration and API keys

From the Entities pane, open the command palette (Ctrl+K) and select Form Entity, or use the /form slash command in the Chat pane.

The wizard asks for:

  • Entity name — e.g., “Acme AI LLC”
  • Entity type — LLC or Corporation
  • Jurisdiction — any US state (Delaware, Wyoming, etc.)

On submit, the system creates your entity with formation documents, cap table, and registered agent.

From the Agents pane, select Create Agent. Configure:

  • Name — what the agent is called (e.g., “Invoice Processor”)
  • System prompt — instructions for the agent’s behavior
  • Model — which LLM to use (Claude Sonnet, Haiku, GPT-4o)
  • Entity binding — optionally bind to a specific entity

The agent gets its own:

  • Sandboxed execution environment
  • Email address (<slug>@agents.thecorporation.app)
  • Webhook endpoint for external triggers
  • Composable skills you can add later

Send a message from the Agents pane or use the Chat pane:

Process all outstanding invoices for Acme AI LLC

The agent executes in its sandbox, using the same governance kernel as every other operation.


For headless / scripted workflows, use the CLI directly:

Terminal window
corp status # Workspace summary
corp obligations # List human-required actions
corp obligations --json # Machine-readable output
corp digest # View daily digest
corp config list # Show configuration

See the full Command Reference.