Everything you need to get work done in chat
A persistent workspace with a chat-first interface, smart defaults, model routing, and unified billing.
Persistent cloud workspace
- Your environment follows your account — not a single device
- Sleep after idle time; wake in seconds without losing your setup
- Storage and projects persist across sessions
$ myaiweapon status
> workspace: active
> storage: 2.4 GB / 10 GB
> last session: 2m agoChat interface
- Conversation-first — describe tasks, not configure environments
- Agent progress shown step by step in the chat
- Preview results and outputs without leaving the thread
You: Refactor the auth flow to use JWT
Agent: Reading src/api/auth.ts...
Agent: Updating login handler ✓
Agent: Preview ready — check the chat for the diffPre-installed stack
- Node.js, Python, and Go ready on day one
- git, make, curl, and common package managers included
- No dependency rabbit holes before you start building
$ node --version && python3 --version
v22.4.0
Python 3.12.3
$ go version
go1.22.0Opinionated file rules
- Clear workspace layout under ~/workspace/ — know where things go
- Project slugs and compose files handled for you
- Platform logs in .logs/; temp files cleaned automatically
~/workspace/
├── docs/
├── my-app/
│ └── docker-compose.yml
└── .logs/Docker by default
- Every new project gets a docker-compose.yml template
- Docker engine and Compose v2 pre-installed
- Run apps in containers without configuring from scratch
$ docker compose up -d
> Building my-app...
> ✓ Container started on :3000Model aggregator
- Auto mode routes by task — Lightweight, Mid, or Heavy
- Simple tasks use efficient models automatically
- Heavy models only when you explicitly need them
> Task: "fix auth bug"
> [Auto] → Mid tier model
> Tokens: 1.2k (efficient route)Agent execution
- Run AI agents and your own scripts in the same environment
- Parallel agent tasks scale with your plan (1 / 2 / 5)
- One workspace for building, testing, and executing
$ myaiweapon agent run deploy
> Agent 1: running tests
> Agent 2: building image
> ✓ All tasks completeData APIs, one balance
- Web search, SEO data, news, and more built into the platform
- Same credit balance as model calls — one bill
- No separate API keys or surprise invoices
$ myaiweapon search "competitors"
> Using credits: 12
> Balance: 4,880 remainingCross-device access
- Log in from laptop, tablet, or phone — same workspace every time
- Nothing to install; your browser is the client
- Pick up exactly where you left off on any device
$ myaiweapon connect
> Session synced
> Resume from: laptop → tabletYou: Build me a REST API for user auth Agent: Planning... Agent: Writing src/api/auth.ts ✓ Agent: Tests passing — preview ready on :3000 ✓