Creating Your First Organization
Set up your business structure and start deploying AI agents in minutes.
What Is an Organization?
An organization in EvolC represents your business. It contains your business universe (the high-level structure) and the worlds within it (individual business functions where agents operate).
Each organization gets a unique slug that becomes part of its URL, like /c/my-company/universe.
Step 1: Create the Organization
From the home page, click + New Organization. You need two things:
- Name — Your business name (e.g., “Acme Marketing Co”)
- Slug — A URL-friendly identifier, auto-generated from the name. You can edit it manually.
Step 2: Define Your Universe
After creating the organization, you land in the Universe View — a force-directed graph showing your business structure. Start by adding nodes for each major business function:
- Marketing
- Sales
- Operations
- Product / Engineering
- Customer Support
Click + Add Node to create each function. Nodes automatically connect to the business model center.
Step 3: Enter a World
Click any node in your universe to enter its World View — a grid where you place and manage AI agents. Each world is a workspace for a specific business function.
Step 4: Deploy Agents
Inside a world, click any empty grid cell to open the Agent Library. Choose from 12 agent types covering marketing, sales, operations, and technology. Each agent gets placed on the grid and can be configured with custom instructions.
Using the API
You can also create organizations programmatically:
POST /organizations
Content-Type: application/json
{
"slug": "my-company",
"name": "My Company"
}See the API Reference for full endpoint documentation.