Open-source desktop AI agent workspace with one-click Claude Code, Codex, OpenClaw, Hermes Agent setup and custom LLM model routing.
$git clone https://github.com/freestylefly/wesightInstalls into the current project.
Install wesight by running `git clone https://github.com/freestylefly/wesight`, then use it for the current task and follow its documentation at https://github.com/freestylefly/wesight.
| 1 | # WeSight |
| 2 | |
| 3 | <p align="center"> |
| 4 | <img src="public/readme-banner.svg" alt="WeSight desktop AI agent workspace" width="900"> |
| 5 | </p> |
| 6 | |
| 7 | <h3 align="center"> |
| 8 | Desktop AI Agent Workspace for Local Coding Agents |
| 9 | </h3> |
| 10 | |
| 11 | <p align="center"> |
| 12 | <a href="https://github.com/freestylefly/wesight/stargazers"><img src="https://img.shields.io/github/stars/freestylefly/wesight?style=flat-square&color=1b79ff" alt="GitHub stars"></a> |
| 13 | <a href="https://github.com/freestylefly/wesight/network/members"><img src="https://img.shields.io/github/forks/freestylefly/wesight?style=flat-square&color=14b8a6" alt="GitHub forks"></a> |
| 14 | <a href="https://github.com/freestylefly/wesight/releases/latest"><img src="https://img.shields.io/github/v/release/freestylefly/wesight?style=flat-square&color=f59e0b" alt="Latest release"></a> |
| 15 | <a href="LICENSE"><img src="https://img.shields.io/github/license/freestylefly/wesight?style=flat-square&color=64748b" alt="MIT License"></a> |
| 16 | <img src="https://img.shields.io/badge/platform-macOS%20Apple%20Silicon%20%2B%20Intel-111827?style=flat-square&logo=apple&logoColor=white" alt="macOS Apple Silicon and Intel"> |
| 17 | </p> |
| 18 | |
| 19 | <p align="center"> |
| 20 | <strong>English</strong> | <a href="README_zh.md">简体中文</a> |
| 21 | </p> |
| 22 | |
| 23 | WeSight is an open-source desktop control console for local AI agents. It helps you install or reuse Claude Code, Codex, Kimi Code, OpenClaw, Hermes Agent, OpenCode, Qwen Code, DeepSeek-TUI, and the built-in agent runtime, then gives them a visual workspace for chat, tools, files, IM channels, skills, model providers, runtime metrics, and desktop companion workflows. |
| 24 | |
| 25 | > Early public releases ship macOS Apple Silicon and Intel builds. If WeSight helps your agent workflow, a Star makes the project easier for more builders to discover. |
| 26 | |
| 27 | ## Quick Links |
| 28 | |
| 29 | - Website: [wesight.ai](https://wesight.ai/) |
| 30 | - Latest release: [github.com/freestylefly/wesight/releases/latest](https://github.com/freestylefly/wesight/releases/latest) |
| 31 | - Screenshots: [Screenshots](#screenshots) |
| 32 | - Core features: [Core Features](#core-features) |
| 33 | - Agent engines: [Agent Engines](#agent-engines) |
| 34 | - Product roadmap: [Product Roadmap](https://github.com/users/freestylefly/projects/1) |
| 35 | - Development: [Quick Start](#quick-start) |
| 36 | |
| 37 | ## Why WeSight |
| 38 | |
| 39 | Terminal-native coding agents are powerful, while their setup, model routing, permissions, IM entry points, file changes, and runtime metrics often live in separate places. WeSight turns those moving pieces into one desktop workspace: |
| 40 | |
| 41 | - Install, detect, and reuse local agent CLIs from a beginner-friendly UI. |
| 42 | - Run coding agents through a visual chat with tool panels, slash commands, file diffs, and permission prompts. |
| 43 | - Connect agent tasks to IM channels such as Feishu, with per-engine configuration. |
| 44 | - Track every task with engine, model, token usage, TTFT, TPS, tool latency, steps, status, and duration. |
| 45 | - Extend workflows through SkillHub skills, built-in skills, scheduled tasks, memory, and a desktop pet that follows active work. |
| 46 | |
| 47 | ## Screenshots |
| 48 | |
| 49 | <table> |
| 50 | <tr> |
| 51 | <td width="50%"> |
| 52 | <img src="public/readme/screenshots/cowork-chat.png" alt="WeSight Cowork chat"> |
| 53 | </td> |
| 54 | <td width="50%"> |
| 55 | <img src="public/readme/screenshots/agent-engines.png" alt="WeSight agent engine settings"> |
| 56 | </td> |
| 57 | </tr> |
| 58 | <tr> |
| 59 | <td><strong>Cowork Chat</strong><br>Run local coding agents as a desktop chat with engine and model controls.</td> |
| 60 | <td><strong>Agent Engines</strong><br>Configure Claude Code, Codex, Kimi Code, OpenClaw, Hermes Agent, OpenCode, Qwen Code, DeepSeek-TUI, and the built-in runtime.</td> |
| 61 | </tr> |
| 62 | <tr> |
| 63 | <td width="50%"> |
| 64 | <img src="public/readme/screenshots/runtime-dashboard.png" alt="WeSight runtime dashboard"> |
| 65 | </td> |
| 66 | <td width="50%"> |
| 67 | <img src="public/readme/screenshots/live-workspace.png" alt="WeSight live workspace"> |
| 68 | </td> |
| 69 | </tr> |
| 70 | <tr> |
| 71 | <td><strong>AI Runtime Dashboard</strong><br>Inspect engine, model, tokens, TTFT, output-phase TPS, estimated model TPS, cost, and status.</td> |
| 72 | <td><stro |