New Product Open Source

AI Coding.
In Your Terminal.

Kawai Code is an agentic AI coding assistant that lives in your terminal. Write, debug, refactor, and ship code faster — powered by Kawai's decentralized GPU network. Private. Multi-model. Open source.

Supports
code
terminal
data_object
auto_awesome Agentic AI
~/my-project
$ kawaicode
[INFO] Kawai Code v1.0.0 — Agentic AI Coder
[INFO] Model: DeepSeek R1 via Kawai Network
[INFO] Project: my-project (TypeScript, 142 files)
MODE: AGENTIC PRIVACY: E2E COST: $0.003
You → "Add rate limiting to the /api/users endpoint"
AI → Scanning project structure...
📂 Reading src/routes/users.ts
📂 Reading src/middleware/index.ts
📂 Reading package.json
AI → Installing dependency & applying changes...
// src/middleware/rateLimiter.ts (new file)
+ import rateLimit from 'express-rate-limit';
+ export const apiLimiter = rateLimit({
+ windowMs: 15 * 60 * 1000,
+ max: 100,
+ message: { error: 'Too many requests' }
+ });
// src/routes/users.ts
+ import { apiLimiter } from '../middleware/rateLimiter';
+ router.use(apiLimiter);
▸ Running npm test... 12 passed
AI → ✓ Created 1 file, modified 2 files. All tests passing.
Ready for next task...
category Core Features

Code Smarter, Not Harder

Kawai Code understands your entire codebase. It reads, writes, debugs, and ships — all from your terminal.

psychology

Agentic Coding

Tell it what you want in natural language. Kawai Code plans, writes, and applies multi-file changes autonomously. Review and approve diffs before they land.

account_tree

Project-Aware

Understands your entire codebase — file structure, dependencies, patterns, and conventions. Makes changes that fit your project, not generic boilerplate.

terminal

Shell Integration

Runs commands, checks build outputs, reads test results, and iterates on errors. It doesn't just write code — it makes sure it works.

shield_lock

Privacy First

Your code stays on your machine. End-to-end encrypted communication with Kawai's decentralized network. No training on your data. Ever.

tune

Multi-Model

Use DeepSeek, Llama, Mistral, Gemma, or bring your own API key for Claude/GPT. Switch models per task. Use Kawai's network or your own keys.

paid

Earn While You Code

Every coding session earns you KAWAI tokens as cashback. Your GPU can contribute to the network in the background, generating passive income.

Kawai Code vs The Rest

See how Kawai Code stacks up against other AI coding tools.

Feature
verified Kawai Code
Claude Code
GitHub Copilot
Pricing
check_circle Pay-as-you-go
cancel $20/mo Pro required
cancel $10-$39/mo
Code Privacy
check_circle E2E Encrypted
warning Sent to Anthropic
warning Sent to Microsoft
AI Models
check_circle Any Model
lock Claude Only
lock GPT Only
Infrastructure
check_circle Decentralized
dns Centralized
dns Centralized
Crypto Rewards
check_circle Earn KAWAI
cancel None
cancel None
Open Source
check_circle Fully Open
cancel Closed Source
cancel Closed Source

Start Coding in 60 Seconds

download

1. Install

One command to install. Works on macOS, Linux, and Windows (WSL).

folder_open

2. Navigate

Go to any project directory and run kawaicode. It auto-indexes your codebase.

rocket_launch

3. Code

Describe what you want. Kawai Code writes, tests, and applies the changes for you.

lightbulb Use Cases

What You Can Build

bug_report

Debug & Fix Errors

"Fix the TypeError in auth.ts" — reads stacktrace, finds root cause, applies fix.

architecture

Refactor Code

"Refactor the payment module to use the Strategy pattern" — multi-file restructuring.

science

Write Tests

"Add unit tests for the UserService class" — generates comprehensive test suites.

add_box

Build Features

"Add a webhook system with retry logic" — plans architecture, implements, and tests.

menu_book

Understand Code

"Explain how the authentication flow works" — deep codebase analysis and explanation.

deployed_code

DevOps & Config

"Set up Docker and CI/CD for this project" — creates Dockerfiles, GitHub Actions, configs.

terminal

Install Kawai Code

One command. Privacy-first. Start coding with AI in seconds.

$ curl -fsSL getkawai.com/kawaicode/install.sh | sh
macOS Linux Windows (WSL)