Documentation
Everything you need to get started with My AI Weapon — from your first chat to credits, workspace, and projects.
Getting Started
My AI Weapon is in invite-only early access. You'll need an invite code to create an account.
Once you have a code, sign up at myaiweapon.com/sign-up, then log in from any modern browser. Your workspace is ready immediately — no installer, no environment setup.
Open the chat and describe your first task in plain language. The agent plans the work, executes in your cloud environment, and reports progress back in the conversation.
- Get an invite code from an existing user or request access
- Create your account with email and password
- Log in from laptop, tablet, or phone
- Describe what you want built — the agent handles the rest
The Chat Interface
My AI Weapon is chat-first. The conversation thread is your primary workspace — not a sidebar inside a code editor.
When you send a message, the agent breaks the task into steps: planning, writing files, running commands, calling APIs. Each step appears in the thread so you always know what's happening.
Results — code changes, previews, summaries — stay in the same conversation. No hunting through file trees or terminal tabs.
- Describe outcomes in natural language
- Watch agent progress step by step
- Review outputs without leaving the thread
- The environment runs behind the scenes — you stay in chat
Credits & Billing
My AI Weapon uses a subscription + credits model. Your plan sets a monthly credit pool; usage deducts from that balance.
Credits cover both AI model calls and paid data APIs (web search, SEO data, news, and more). One balance, one bill — no separate API keys.
When credits run out, AI and data queries pause until your next billing cycle, you upgrade your plan, or you purchase a one-time credit pack.
- Starter: $20/mo — 2,000 credits
- Pro: $60/mo — 7,500 credits
- Max: $200/mo — 30,000 credits
- Annual billing saves 20%
- Credit packs available when you need more
Your Workspace
Every account gets one persistent cloud environment. It's bound to your account, not a single device — log in from any browser and pick up where you left off.
Environments sleep after 30 minutes of idle time to save resources. Storage and projects persist. Waking takes under 5 seconds.
Higher plans include more compute and storage for heavier workloads.
- Starter: 1 vCPU, 1 GB RAM, 10 GB storage
- Pro: 2 vCPU, 2 GB RAM, 30 GB storage
- Max: 4 vCPU, 4 GB RAM, 100 GB storage
- Parallel agent tasks: 1 / 2 / 5 by plan
- Works on any device with a browser
Model Routing
By default, the model aggregator runs in Auto mode. It classifies each task and routes to the right tier — you don't pick models manually.
Simple tasks (summaries, small edits, short Q&A) use lightweight, efficient models. Code generation, multi-file changes, and agent steps use mid-tier models. Deep reasoning tasks can escalate to heavy models.
You can override Auto when you want a specific tier or model. Heavy models consume significantly more credits.
- Auto (default) — platform picks the right model
- Lightweight — fast, economical, for simple work
- Mid — code generation and multi-step agent tasks
- Heavy — deep reasoning; use when you need it
- Failed model calls are not charged
Projects & File Layout
Your workspace uses opinionated file rules so you always know where things go. Projects live under ~/workspace/ with predictable structure.
Every new project gets a docker-compose.yml by default. Docker and Compose v2 are pre-installed — running apps in containers is the standard path, not a weekend project.
Platform logs go to ~/workspace/.logs/ (retained 7 days). Temporary files in ~/workspace/.tmp/ are cleaned daily.
- ~/workspace/ — your work area root
- ~/workspace/<project-slug>/ — individual projects
- Project slugs: lowercase letters, numbers, hyphens (3–32 chars)
- docker-compose.yml included in every new project
- Node.js, Python, Go, git, and Docker pre-installed
You: Build me a REST API for user auth Agent: Planning... Agent: Writing src/api/auth.ts ✓ Agent: Tests passing — preview ready on :3000 ✓