Browser-based AI Coding Assistant — Zero Install. Zero Deploy. Zero Config.
JetBot is a fully browser-based AI coding assistant. No backend server, no deployment pipeline, no installation required — just open the page and start working. All code executes client-side via JavaScript; LLM calls go directly from the browser's fetch() to your chosen API provider.
┌─────────────────────────────────────────────┐
│ Browser │
│ │
│ ┌──────────┐ ┌───────────┐ ┌───────────┐ │
│ │ React │ │ Agentic │ │ Virtual │ │
│ │ UI │←→│ Loop │←→│ FS │ │
│ └──────────┘ └─────┬─────┘ │ (IndexedDB)│ │
│ │ └───────────┘ │
│ │ fetch() │
└──────────────────────┼──────────────────────┘
↓
┌────────────────┐
│ LLM Provider │
│ OpenAI/DeepSeek│
│ Ollama/Custom │
└────────────────┘
git clone https://github.com/hongxin/JetBot.git
cd JetBot/jetbot
npm install
npm run devOpen http://localhost:5173, select an LLM provider, enter your API key, and start chatting.
Local Ollama (fully offline):
ollama serve
ollama pull qwen3.5:27b
# Select the Ollama provider in JetBot — no API key neededProduction build:
npm run build
# Outputs dist/ — pure static files deployable to any static hostAn autonomous tool-calling loop where the LLM selects tools, executes actions, and analyzes results until the task is complete. Supports up to 100 iterations with circuit breaker protection (3 consecutive failures) and automatic duplicate-error detection.
| Tool | Permission | Description |
|---|---|---|
read_file |
safe | Read files from the virtual file system |
list_dir |
safe | List directory structure |
search_text |
safe | Regex search across file contents |
write_file |
risky | Create or overwrite files |
edit_file |
risky | Precise find-and-replace editing |
http_get |
risky | HTTP requests (automatic CORS proxy fallback) |
js_eval |
risky | Sandboxed JavaScript execution (10s timeout) |
render_html |
risky | Render HTML/CSS to the preview panel |
shell_execute |
dangerous | Sandboxed shell commands |
export_file |
safe | Download files from VirtualFS to local disk |
Activate via /skill <name> to inject domain expertise into the system prompt:
debug · code-review · architect · explain · tdd · writing · refactor · visualize · decision · security · perf
ZPower (Five Elements): zpower · z-observe · z-design · z-build · z-verify · z-evolve · z-diagram
| Provider | Base URL | Notes |
|---|---|---|
| OpenAI | api.openai.com/v1 |
GPT-4o, etc. |
| DeepSeek | api.deepseek.com/v1 |
Cost-effective |
| Ollama | localhost:11434/v1 |
Local, no API key |
| Custom | User-defined | Any OpenAI-compatible endpoint |
Conversations rendered as a force-directed starfield canvas. User messages, AI replies, and tool calls appear as cosmic bubble nodes; consecutive turns automatically link into constellation clusters. Drag-connect any two nodes to trigger an LLM relationship analysis.
Three-tier access control: safe (auto-approve), risky (approve once, then remembered), dangerous (approve every time). Toggle /auto on for autonomous mode.
- File Bridge — Drag-and-drop local file import;
export_filetriggers browser download - Scheduler — In-browser scheduled tasks (interval / cron / once), persisted in IndexedDB
- Bilingual i18n — English and Chinese UI, switchable in settings
- Runtime Detection — Auto-detects 19 browser capabilities; tools load dynamically
| Command | Description |
|---|---|
/help |
Show available commands |
/clear |
Clear conversation history |
/status |
Display model, tokens, and run status |
/model |
Show current model |
/runtime |
Show runtime environment and capabilities |
/plan <goal> |
Enter or exit plan mode |
/next |
Advance to next plan phase |
/skill <name>|list|off |
Activate, list, or deactivate skills |
/export <path> |
Download a file from VirtualFS |
/schedule |
Manage scheduled tasks |
/auto on|off |
Toggle autonomous mode |
- Architecture — Source structure and tech stack
- Changelog — Development history and milestones
- Design — Original design document and feasibility analysis
- Idea — Project origin
Chinese versions available: architecture · changelog · design · idea
Dao-Qi Unity — Harness AI tools with classical wisdom; think and act in concert, human and machine as one.
- Simplicity — The simplest solution that works. The browser is the Agent.
- Adaptability — Embrace change. Modular architecture evolves continuously.
- Integrity — Hold the line on quality. Parameter validation, circuit breakers, duplicate detection.
Hongxin Zhang — github.com/hongxin
MIT