v1.0.0 — public beta

An IDE with an AI agent that edits your code.

A free IDE. You pay only for the neural network — not a ChatGPT or Claude subscription.

Windows Linux macOS
sirius-ide — fastapi-demo
main.py
from fastapi import FastAPI, Depends
from .auth import require_user
 
app = FastAPI(title="Sirius")
 
@app.get("/me")
async def me(user = Depends(require_user)):
return {"id": user.id, "plan": user.plan}
you“Find the memory leak and fix it” — the agent finds it and patches the code.
agentedited src/main.py · added /me endpoint with auth dependency
+8 lines1 file · 1,284 tokensclaude-sonnet-4

What the agent actually does

Three concrete capabilities, with real code — not marketing screenshots.

01

Edits files

Sirius AI reads your project, proposes a diff, and applies it. You approve every change.

auth.py
# auth.py — Sirius proposed patch
-def login(user, pw):
-    if user.pw == pw:
-        return True
-    return False
+def login(user, pw):
+    if not user or not user.hashed_password:
+        return False
+    return bcrypt.verify(pw, user.hashed_password)

02

Runs the terminal

Install, build, test, git — dangerous commands require explicit confirmation.

terminal
$ pytest -q
............................................
 42 passed in 1.8s

$ git status
On branch agent/fix-auth
  modified: auth.py

$ git commit -am "auth: use bcrypt"
[agent/fix-auth 8e1f2d4] auth: use bcrypt
 1 file changed, 4 insertions(+), 3 deletions(-)

03

Understands the whole project

Reads, indexes and reasons across 100k+ tokens of context — not just the open file.

agent
# Sirius indexes the whole project
> find duplicate logic in auth/
  found: 3 places where bcrypt.verify is reimplemented
  recommend: extract auth/passwords.py::verify_password
  apply patch? [y/N]

Why Sirius

Honest comparison. No fake stars or 'trusted by Google' logos.

Cursor ProClaude ProSirius Plus
Price / month$20$20$15
IDE included$20 (with sub)Free
AI agent Yes No Yes
Edits files Yes No Yes
Terminal access Yes No Yes
ModelsGPT / ClaudeClaude onlyAll via OpenRouter
Pays in crypto No No Yes
Works without a card No No Yes

Sirius IDE pricing

The IDE is free. You pay only for the AI agent. The limit is in tokens — not in 'requests'.

Free Trial

$0

250k tokens

250k tokens (one-time)

Full IDE, basic agent access to try things out.

  • Full IDE forever
  • Basic AI agent
  • Email support
Register

Light

$10/ mo

≈ 990 ₽

600k tokens

600k tokens / month

Lightweight AI for occasional refactors.

  • Full IDE
  • All models via router
  • Top-up available
Buy
Recommended

Plus

$15/ mo

≈ 1 490 ₽

1.5M tokens

1.5M tokens / month

Main plan for daily development.

  • Full IDE
  • All models — automatic routing
  • “Max quality” button
  • Top-up available
Buy

Pro

$27/ mo

≈ 2 790 ₽

4M tokens

4M tokens / month

Heavy agent usage, large projects, priority queue.

  • Full IDE
  • All models — automatic routing
  • “Max quality” button
  • Higher queue priority
  • Top-up available
Buy

Frequently asked questions

Ready to try?

250,000 AI tokens free after you register.