We re starting to onboard our first batch of beta users this week
Curious what everyone here is working on if you re building AI agents (OpenClaw, workflows, anything), drop it below.
Happy to help you get it deployed on Maritime or give early access.
Maritime
@maria_gorskikh1 $1 per agent is honestly pretty interesting. how does the pricing work once an agent starts needing more compute or running continuously? congrats on the launch!
Maritime
@kamal_sharma26 The $1/month includes 1 vCPU, 2 GB RAM, and 5 GB storage, with automatic sleep/wake. For heavier workloads, you can add RAM and storage at flat monthly rates. If you need an agent that never sleeps, always-on is an extra $20/month per agent. Details here: maritime.sh/pricing. What kind of agents are you building?
the persistence claim is the interesting part and id want to know exactly what survives a sleep wake cycle. if the browser profile goes with it, cookies, localstorage, logged in sessions, then thats the actual product and id say it in those words. if only the disk survives and the profile resets, agents re-authenticate constantly and that cost shows up as time rather than dollars. the failure ive hit running agents against real sites all day isnt lost state, its stale state. an agent that keeps its own view of the world for weeks ends up confidently wrong, and that bit me directly today. i had a cached page state that made me assert something a fresh anonymous fetch disproved in one call. so persistent storage needs a companion idea, which parts are durable and which have to be re-derived on wake. whats cold wake latency looking like in practice? at a dollar an agent the sleep wake tradeoff is basically the whole engineering story, and for anything interactive the first action after a wake is the one people judge you on.
Maritime
@rabnoor_s We preserve both disk and VM memory across sleep/wake, including the browser profile, cookies, localStorage, and in-memory browser state. Login state carries over, though sites can still expire or revoke sessions.
Wake time is around a second, with page refreshes or reconnects adding to the first action’s latency.