v0.2.0 — 21 Tools

WORK WITH AI
STRONGER

Production-grade Python CLI tools engineered for the next generation of AI-assisted development. Context, Agent, Quality — three layers, one ecosystem.

21+CLI Tools
9300Lines of Code
0Dependencies
4LLM Providers
terminal — canai
pip install canai
Successfully installed canai-0.2.0
 
ctxbuilder . --dry-run
Project: MySaaS  Type: web  Lang: Python, TS
Files: 847  Dirs: 124  Tests: 203
 
smartpack "fix auth bug" -p . -b 8000
Packed 14 files (7,842 tokens) — relevance: 94%
 
|

Three Layers. One Mission.

One Command.
Infinite Possibilities.

context.py
from ctxbuilder.scanner import scan
from smartpack.packer import pack

# Scan any project in milliseconds
info = scan("/path/to/project")
print(info.languages)  # {"Python": 42, "TS": 15}

# Pack optimal context for AI
ctx = pack("fix auth bug", info,
           budget_tokens=8000)
print(f"{len(ctx.files)} files")
bridge.py
from apibridge import LLM
from smartroute.router import analyze

# One client, any provider
llm = LLM()  # auto-detect from env
for chunk in llm.stream("Write tests"):
    print(chunk.content, end="")

# Route to cheapest adequate model
route = analyze("Fix typo in README")
print(f"{route.model}: ${route.cost}")

How We Compare

Honest comparison. We're not better at everything — we're different.

FeatureCanAICursorCopilotAider
Multi-provider 4+ (Claude, OpenAI, Gemini, DeepSeek) Limited OpenAI only 4+
Context packing Smart file selection~ Basic No Manual
Cost optimization Smart routing + tracking No No No
Quality gate Auto security + quality check No No No
Zero dependencies Stdlib only N/A (IDE) N/A (IDE)~ Some deps
Offline tools Context + quality offline Cloud only Cloud only With local models
Web UI Chat + tools IDE IDE Terminal only
Open source MIT Proprietary Proprietary Apache 2.0
PriceFree (BYO API key)$20/mo$10/moFree

pip install canai

Zero mandatory dependencies. Python 3.10+ only. MIT licensed.

CanAI v0.2.0 — Built by CanTech · WORK WITH AI STRONGER