MaritimemaritimeDocumentation
Dashboard

Quickstart

Get your first AI agent deployed in under 5 minutes.

1. Install the CLI

npm install -g @maritime/cli

2. Authenticate

Log in with your GitHub account:

maritime login

3. Create a configuration

Create a maritime.toml in your project root:

maritime.toml
[agent]
name = "my-agent"
framework = "crewai"
tier = "smart"

[triggers]
cron = "*/5 * * * *"
webhook = true

4. Deploy

maritime deploy

# Output:
# Deploying my-agent (CrewAI)...
# ✓ Agent deployed at maritime.sh/my-agent
#   Tier: Smart ($1/mo) | Status: sleeping

5. Monitor

View real-time logs:

maritime logs my-agent --follow

What happens next?

Your agent is now deployed in sleep mode. It will automatically wake when triggered via webhook, cron schedule, or API call. You only pay for compute when the agent is active.