Skip to main content
Projects are how you make your workflow definitions visible in Automations.

Step 1: Initialize a project

From your agent repo (or a new folder):
omium project init --name my-agent
This creates:
  • omium.toml
  • workflows/ (a place for workflow definitions)

Step 2: Review omium.toml

At minimum set a stable name and version:
[project]
name = "my-agent"
version = "0.1.0"

[execution]
api_url = "https://api.omium.ai/api/v1"
See the full reference at omium.toml.

Step 3: Push to Automations

omium project push
If the project has no workflow definitions yet, Omium still creates a default entry so the project appears in the dashboard.

Step 4: Confirm in the dashboard

Open app.omium.ai/automations. You should see a card for your project. If you don’t:
  • confirm you’re using the right account / key (omium init)
  • confirm your API URL is https://api.omium.ai
  • re-run omium project push and watch for errors

Next steps

Automations dashboard

How projects, runs, success rate, and cost are displayed.

CLI reference

Commands for runs, traces, failures, and replays.