AI Coding.
From Your Terminal.
Angkor Code is an AI coding CLI that writes, edits, and debugs your code. 40+ tools, web search, multi-agent — all from your terminal.
Everything you need in one CLI
No IDE plugin needed. No browser tab. Just your terminal and Angkor Code.
Code Generation
Write, edit, refactor entire files with natural language. Multi-file operations in one shot.
Web Search
Real-time web search built into your terminal. Research without leaving your editor.
Image Analysis
Analyze screenshots, mockups, diagrams. Drop an image, get code.
Multi-Agent
Parallel sub-agents for complex tasks. Divide and conquer at machine speed.
40+ Tools
Bash, file ops, git, grep, LSP, MCP servers. A full engineering toolkit.
Session Memory
Remembers your project context across sessions. Learns your codebase.
See it in action
Editing src/routes/users.ts...
+ import { z } from "zod";
+
+ const paginationSchema = z.object({
+ page: z.coerce.number().min(1).default(1),
+ limit: z.coerce.number().min(1).max(100).default(20),
+ });
+
app.get("/users", async (c) => {
+ const { page, limit } = paginationSchema.parse(c.req.query());
+ const offset = (page - 1) * limit;
+ const [users, total] = await Promise.all([
+ db.users.findMany({ skip: offset, take: limit }),
+ db.users.count(),
+ ]);
+ return c.json({ users, total, page, limit });
});
Done. Modified 1 file, +14 -2 lines.Simple pricing
Start free. Upgrade when you need more.
Free
Try Angkor Code with generous daily limits.
- 50 requests / day
- Latest AI model
- Web search & image analysis
- All 40+ tools
- Session memory
Pro
Unlimited coding with premium fallback.
- Unlimited requests
- Premium models + fallback
- Priority inference speed
- Multi-agent mode
- Extended context (1M tokens)
- Email support
Team
Collaborate with usage insights and controls.
- Everything in Pro
- Team usage dashboard
- Shared session memory
- Custom pre-built agents
- API access for CI/CD
- Admin controls & SSO
Install in seconds
One command. Any platform.
$ npm install -g @angkor-ai/cliBuilt for affordability
We route to the best-value frontier models — top 5 on SWE-bench, same coding quality as premium alternatives, at a fraction of the cost. Pro users get automatic fallback to premium models when needed.
Ready to code faster?
Join developers who ship 10x faster with AI in their terminal.