Quickstart
Get your first AI agent deployed in under 5 minutes.
1. Install the CLI
npm install -g @maritime/cli2. Authenticate
Log in with your GitHub account:
maritime login3. 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 = true4. Deploy
maritime deploy
# Output:
# Deploying my-agent (CrewAI)...
# ✓ Agent deployed at maritime.sh/my-agent
# Tier: Smart ($1/mo) | Status: sleeping5. Monitor
View real-time logs:
maritime logs my-agent --followWhat 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.