@pixelbyte-software/pixcode 1.35.2 → 1.35.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/LICENSE +718 -718
  2. package/README.de.md +248 -248
  3. package/README.ja.md +240 -240
  4. package/README.ko.md +240 -240
  5. package/README.md +303 -303
  6. package/README.ru.md +248 -248
  7. package/README.tr.md +250 -250
  8. package/README.zh-CN.md +240 -240
  9. package/dist/api-docs.html +548 -548
  10. package/dist/assets/{index-D1-AIL_5.js → index-D8z78r_D.js} +57 -57
  11. package/dist/assets/{index-B8w57E1r.css → index-DmchzORZ.css} +1 -1
  12. package/dist/clear-cache.html +85 -85
  13. package/dist/convert-icons.md +52 -52
  14. package/dist/favicon.svg +8 -8
  15. package/dist/generate-icons.js +48 -48
  16. package/dist/icons/codex-white.svg +3 -3
  17. package/dist/icons/codex.svg +3 -3
  18. package/dist/icons/cursor-white.svg +11 -11
  19. package/dist/icons/icon-128x128.svg +9 -9
  20. package/dist/icons/icon-144x144.svg +9 -9
  21. package/dist/icons/icon-152x152.svg +9 -9
  22. package/dist/icons/icon-192x192.svg +9 -9
  23. package/dist/icons/icon-384x384.svg +9 -9
  24. package/dist/icons/icon-512x512.svg +9 -9
  25. package/dist/icons/icon-72x72.svg +9 -9
  26. package/dist/icons/icon-96x96.svg +9 -9
  27. package/dist/icons/icon-template.svg +9 -9
  28. package/dist/icons/qwen-logo.svg +14 -14
  29. package/dist/index.html +59 -59
  30. package/dist/logo.svg +12 -12
  31. package/dist/manifest.json +60 -60
  32. package/dist/openapi.yaml +1693 -1693
  33. package/dist/sw.js +124 -124
  34. package/dist-server/server/cli.js +96 -96
  35. package/dist-server/server/daemon/manager.js +33 -33
  36. package/dist-server/server/daemon-manager.js +64 -64
  37. package/dist-server/server/routes/commands.js +25 -25
  38. package/dist-server/server/routes/git.js +17 -17
  39. package/dist-server/server/routes/taskmaster.js +419 -419
  40. package/package.json +180 -180
  41. package/scripts/fix-node-pty.js +67 -67
  42. package/scripts/smoke/a2a-roundtrip.mjs +167 -167
  43. package/scripts/smoke/orchestration-api.mjs +172 -172
  44. package/scripts/smoke/orchestration-live-run.mjs +176 -176
  45. package/server/claude-sdk.js +898 -898
  46. package/server/cli.js +935 -935
  47. package/server/constants/config.js +4 -4
  48. package/server/cursor-cli.js +342 -342
  49. package/server/daemon/manager.js +564 -564
  50. package/server/daemon-manager.js +959 -959
  51. package/server/database/db.js +794 -794
  52. package/server/database/json-store.js +197 -197
  53. package/server/gemini-cli.js +535 -535
  54. package/server/gemini-response-handler.js +79 -79
  55. package/server/index.js +3135 -3135
  56. package/server/load-env.js +34 -34
  57. package/server/middleware/auth.js +173 -173
  58. package/server/modules/orchestration/a2a/adapter-registry.ts +108 -108
  59. package/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.ts +55 -55
  60. package/server/modules/orchestration/a2a/adapters/claude-code.adapter.ts +284 -284
  61. package/server/modules/orchestration/a2a/adapters/codex.adapter.ts +244 -244
  62. package/server/modules/orchestration/a2a/adapters/cursor.adapter.ts +249 -249
  63. package/server/modules/orchestration/a2a/adapters/gemini.adapter.ts +248 -248
  64. package/server/modules/orchestration/a2a/adapters/opencode.adapter.ts +248 -248
  65. package/server/modules/orchestration/a2a/adapters/qwen.adapter.ts +248 -248
  66. package/server/modules/orchestration/a2a/routes.ts +577 -577
  67. package/server/modules/orchestration/a2a/task-store.ts +178 -178
  68. package/server/modules/orchestration/a2a/types.ts +125 -125
  69. package/server/modules/orchestration/a2a/validator.ts +113 -113
  70. package/server/modules/orchestration/index.ts +66 -66
  71. package/server/modules/orchestration/preview/port-watcher.ts +112 -112
  72. package/server/modules/orchestration/preview/preview-proxy.ts +60 -60
  73. package/server/modules/orchestration/preview/types.ts +19 -19
  74. package/server/modules/orchestration/tasks/orchestration-task-store.ts +45 -45
  75. package/server/modules/orchestration/tasks/orchestration-task.routes.ts +73 -73
  76. package/server/modules/orchestration/tasks/orchestration-task.service.ts +145 -145
  77. package/server/modules/orchestration/tasks/orchestration-task.types.ts +29 -29
  78. package/server/modules/orchestration/workflows/built-in-workflows.ts +127 -127
  79. package/server/modules/orchestration/workflows/workflow-runner.ts +1206 -1206
  80. package/server/modules/orchestration/workflows/workflow-store.ts +97 -97
  81. package/server/modules/orchestration/workflows/workflow.routes.ts +169 -169
  82. package/server/modules/orchestration/workflows/workflow.types.ts +70 -70
  83. package/server/modules/orchestration/workflows/workspace-target.ts +120 -120
  84. package/server/modules/orchestration/workspace/docker-workspace.ts +135 -135
  85. package/server/modules/orchestration/workspace/path-safety.ts +55 -55
  86. package/server/modules/orchestration/workspace/types.ts +52 -52
  87. package/server/modules/orchestration/workspace/workspace-manager.ts +97 -97
  88. package/server/modules/orchestration/workspace/worktree-workspace.ts +125 -125
  89. package/server/modules/providers/index.ts +2 -2
  90. package/server/modules/providers/list/claude/claude-auth.provider.ts +145 -145
  91. package/server/modules/providers/list/claude/claude-mcp.provider.ts +135 -135
  92. package/server/modules/providers/list/claude/claude-sessions.provider.ts +306 -306
  93. package/server/modules/providers/list/claude/claude.provider.ts +15 -15
  94. package/server/modules/providers/list/codex/codex-auth.provider.ts +115 -115
  95. package/server/modules/providers/list/codex/codex-mcp.provider.ts +135 -135
  96. package/server/modules/providers/list/codex/codex-sessions.provider.ts +319 -319
  97. package/server/modules/providers/list/codex/codex.provider.ts +15 -15
  98. package/server/modules/providers/list/cursor/cursor-auth.provider.ts +143 -143
  99. package/server/modules/providers/list/cursor/cursor-mcp.provider.ts +108 -108
  100. package/server/modules/providers/list/cursor/cursor-sessions.provider.ts +421 -421
  101. package/server/modules/providers/list/cursor/cursor.provider.ts +15 -15
  102. package/server/modules/providers/list/gemini/gemini-auth.provider.ts +163 -163
  103. package/server/modules/providers/list/gemini/gemini-mcp.provider.ts +110 -110
  104. package/server/modules/providers/list/gemini/gemini-sessions.provider.ts +227 -227
  105. package/server/modules/providers/list/gemini/gemini.provider.ts +15 -15
  106. package/server/modules/providers/list/opencode/opencode-auth.provider.ts +130 -130
  107. package/server/modules/providers/list/opencode/opencode-mcp.provider.ts +126 -126
  108. package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +232 -232
  109. package/server/modules/providers/list/opencode/opencode.provider.ts +29 -29
  110. package/server/modules/providers/list/qwen/qwen-auth.provider.ts +145 -145
  111. package/server/modules/providers/list/qwen/qwen-mcp.provider.ts +114 -114
  112. package/server/modules/providers/list/qwen/qwen-sessions.provider.ts +265 -265
  113. package/server/modules/providers/list/qwen/qwen.provider.ts +21 -21
  114. package/server/modules/providers/provider.registry.ts +40 -40
  115. package/server/modules/providers/provider.routes.ts +819 -819
  116. package/server/modules/providers/services/mcp.service.ts +86 -86
  117. package/server/modules/providers/services/provider-auth.service.ts +26 -26
  118. package/server/modules/providers/services/sessions.service.ts +45 -45
  119. package/server/modules/providers/shared/base/abstract.provider.ts +20 -20
  120. package/server/modules/providers/shared/mcp/mcp.provider.ts +151 -151
  121. package/server/modules/providers/shared/provider-configs.ts +142 -142
  122. package/server/modules/providers/tests/mcp.test.ts +293 -293
  123. package/server/openai-codex.js +462 -462
  124. package/server/opencode-cli.js +459 -459
  125. package/server/opencode-response-handler.js +107 -107
  126. package/server/projects.js +3105 -3105
  127. package/server/qwen-code-cli.js +395 -395
  128. package/server/qwen-response-handler.js +73 -73
  129. package/server/routes/agent.js +1365 -1365
  130. package/server/routes/auth.js +138 -138
  131. package/server/routes/codex.js +19 -19
  132. package/server/routes/commands.js +554 -554
  133. package/server/routes/cursor.js +52 -52
  134. package/server/routes/gemini.js +24 -24
  135. package/server/routes/git.js +1488 -1488
  136. package/server/routes/mcp-utils.js +31 -31
  137. package/server/routes/messages.js +61 -61
  138. package/server/routes/network.js +120 -120
  139. package/server/routes/plugins.js +318 -318
  140. package/server/routes/projects.js +915 -915
  141. package/server/routes/qwen.js +27 -27
  142. package/server/routes/settings.js +286 -286
  143. package/server/routes/taskmaster.js +1496 -1496
  144. package/server/routes/telegram.js +125 -125
  145. package/server/routes/user.js +123 -123
  146. package/server/services/external-access.js +171 -171
  147. package/server/services/install-jobs.js +571 -571
  148. package/server/services/notification-orchestrator.js +242 -242
  149. package/server/services/provider-credentials.js +189 -189
  150. package/server/services/provider-models.js +381 -381
  151. package/server/services/telegram/bot.js +279 -279
  152. package/server/services/telegram/telegram-http-client.js +130 -130
  153. package/server/services/telegram/translations.js +170 -170
  154. package/server/services/vapid-keys.js +36 -36
  155. package/server/sessionManager.js +225 -225
  156. package/server/shared/interfaces.ts +54 -54
  157. package/server/shared/types.ts +172 -172
  158. package/server/shared/utils.ts +193 -193
  159. package/server/tsconfig.json +36 -36
  160. package/server/utils/colors.js +21 -21
  161. package/server/utils/commandParser.js +303 -303
  162. package/server/utils/frontmatter.js +18 -18
  163. package/server/utils/gitConfig.js +34 -34
  164. package/server/utils/mcp-detector.js +147 -147
  165. package/server/utils/plugin-loader.js +457 -457
  166. package/server/utils/plugin-process-manager.js +184 -184
  167. package/server/utils/port-access.js +209 -209
  168. package/server/utils/runtime-paths.js +37 -37
  169. package/server/utils/taskmaster-websocket.js +128 -128
  170. package/server/utils/url-detection.js +71 -71
  171. package/server/vite-daemon.js +78 -78
  172. package/shared/modelConstants.js +162 -162
  173. package/shared/networkHosts.js +22 -22
package/README.md CHANGED
@@ -1,303 +1,303 @@
1
- <div align="center">
2
- <img src="public/logo.svg" alt="Pixcode" width="64" height="64">
3
- <h1>Pixcode — Run Claude Code, Codex, Cursor, Gemini & Qwen Code from one UI</h1>
4
- <p>A desktop and mobile UI for <a href="https://docs.anthropic.com/en/docs/claude-code">Claude Code</a>, <a href="https://docs.cursor.com/en/cli/overview">Cursor CLI</a>, <a href="https://developers.openai.com/codex">Codex</a>, <a href="https://geminicli.com/">Gemini-CLI</a>, and <a href="https://github.com/QwenLM/qwen-code">Qwen Code</a>.<br>Use it locally or remotely to view your active projects and sessions from everywhere.</p>
5
- <p><strong>☁️ Pixcode Cloud — coming soon.</strong></p>
6
- </div>
7
-
8
- <p align="center">
9
- <a href="https://github.com/alicomert/pixcode">Pixcode</a> · <a href="https://github.com/alicomert/pixcode">Documentation</a> · <a href="https://discord.gg/buxwujPNRE">Discord</a> · <a href="https://github.com/alicomert/pixcode/issues">Bug Reports</a> · <a href="CONTRIBUTING.md">Contributing</a>
10
- </p>
11
-
12
- <p align="center">
13
- <a href="https://github.com/alicomert/pixcode/releases/latest"><img src="https://img.shields.io/badge/%E2%AC%87_Download-Desktop_App-0066FF?style=for-the-badge" alt="Download Desktop App"></a>
14
- <a href="https://www.npmjs.com/package/@pixelbyte-software/pixcode"><img src="https://img.shields.io/badge/npm-install_-g-CB3837?style=for-the-badge&logo=npm&logoColor=white" alt="npm"></a>
15
- <a href="https://discord.gg/buxwujPNRE"><img src="https://img.shields.io/badge/Discord-Join%20Community-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join our Discord"></a>
16
- </p>
17
-
18
- <p align="center">
19
- <strong>📦 Desktop installers:</strong>
20
- <a href="https://github.com/alicomert/pixcode/releases/latest">Windows · macOS · Linux</a>
21
- &nbsp;·&nbsp;
22
- <strong>☁️ Pixcode Cloud:</strong> coming soon
23
- </p>
24
-
25
- <p align="center">
26
- <a href="./README.md"><img src="https://img.shields.io/badge/English-5C3FFC?style=for-the-badge&logoColor=white" alt="English"></a>
27
- <a href="./README.tr.md"><img src="https://img.shields.io/badge/T%C3%BCrk%C3%A7e-4B4B4B?style=for-the-badge" alt="Türkçe"></a>
28
- <a href="./README.ru.md"><img src="https://img.shields.io/badge/%D0%A0%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9-4B4B4B?style=for-the-badge" alt="Русский"></a>
29
- <a href="./README.de.md"><img src="https://img.shields.io/badge/Deutsch-4B4B4B?style=for-the-badge" alt="Deutsch"></a>
30
- <a href="./README.it.md"><img src="https://img.shields.io/badge/Italiano-4B4B4B?style=for-the-badge" alt="Italiano"></a>
31
- <a href="./README.ja.md"><img src="https://img.shields.io/badge/%E6%97%A5%E6%9C%AC%E8%AA%9E-4B4B4B?style=for-the-badge" alt="日本語"></a>
32
- <a href="./README.ko.md"><img src="https://img.shields.io/badge/%ED%95%9C%EA%B5%AD%EC%96%B4-4B4B4B?style=for-the-badge" alt="한국어"></a>
33
- <a href="./README.zh-CN.md"><img src="https://img.shields.io/badge/%E4%B8%AD%E6%96%87-4B4B4B?style=for-the-badge" alt="中文"></a>
34
- </p>
35
-
36
- ---
37
-
38
- ## Screenshots
39
-
40
- <div align="center">
41
-
42
- <table>
43
- <tr>
44
- <td align="center">
45
- <h3>Desktop View</h3>
46
- <img src="public/screenshots/desktop-main.png" alt="Desktop Interface" width="400">
47
- <br>
48
- <em>Main interface showing project overview and chat</em>
49
- </td>
50
- <td align="center">
51
- <h3>Mobile Experience</h3>
52
- <img src="public/screenshots/mobile-chat.png" alt="Mobile Interface" width="250">
53
- <br>
54
- <em>Responsive mobile design with touch navigation</em>
55
- </td>
56
- </tr>
57
- <tr>
58
- <td align="center" colspan="2">
59
- <h3>CLI Selection</h3>
60
- <img src="public/screenshots/cli-selection.png" alt="CLI Selection" width="400">
61
- <br>
62
- <em>Select between Claude Code, Gemini, Cursor CLI and Codex</em>
63
- </td>
64
- </tr>
65
- </table>
66
-
67
-
68
-
69
- </div>
70
-
71
- ## Features
72
-
73
- - **Responsive Design** - Works seamlessly across desktop, tablet, and mobile so you can also use Agents from mobile
74
- - **Interactive Chat Interface** - Built-in chat interface for seamless communication with the Agents
75
- - **Integrated Shell Terminal** - Direct access to the Agents CLI through built-in shell functionality
76
- - **File Explorer** - Interactive file tree with syntax highlighting and live editing
77
- - **Git Explorer** - View, stage and commit your changes. You can also switch branches
78
- - **Session Management** - Resume conversations, manage multiple sessions, and track history
79
- - **Plugin System** - Extend Pixcode with custom plugins — add new tabs, backend services, and integrations. [Build your own →](https://github.com/alicomert/pixcode)
80
- - **TaskMaster AI Integration** *(Optional)* - Advanced project management with AI-powered task planning, PRD parsing, and workflow automation
81
- - **Model Compatibility** - Works with Claude, GPT, and Gemini model families (see [`shared/modelConstants.js`](shared/modelConstants.js) for the full list of supported models)
82
-
83
-
84
- ## Quick Start
85
-
86
- ### Pixcode (Recommended)
87
-
88
- The fastest way to get started — no local setup required. Get a fully managed, containerized development environment accessible from the web, mobile app, API, or your favorite IDE.
89
-
90
- **[Get started with Pixcode](https://github.com/alicomert/pixcode)**
91
-
92
-
93
- ### Self-Hosted (Open source)
94
-
95
- #### npm
96
-
97
- Try Pixcode instantly with **npx** (requires **Node.js** v22+):
98
-
99
- ```
100
- npx @pixelbyte-software/pixcode
101
- ```
102
-
103
- Or install **globally** for regular use:
104
-
105
- ```
106
- npm install -g @pixelbyte-software/pixcode
107
- pixcode
108
- ```
109
-
110
- Open `http://localhost:3001` — all your existing sessions are discovered automatically.
111
-
112
- Visit the **[documentation →](https://github.com/alicomert/pixcode)** for full configuration options, PM2, remote server setup and more.
113
-
114
- #### Keep It Running On Linux (VDS / SSH-safe)
115
-
116
- If you run Pixcode over SSH and your terminal disconnects, foreground processes like `npm run dev` will stop.
117
- Use the built-in daemon manager to run Pixcode as a persistent service:
118
-
119
- ```bash
120
- # Default behavior on Linux (auto-daemon):
121
- pixcode
122
-
123
- # Explicit install (recommended on first setup):
124
- pixcode daemon install --mode auto --port 3001
125
- pixcode daemon status --mode auto
126
- pixcode daemon doctor --mode auto
127
- ```
128
-
129
- Useful commands:
130
-
131
- ```bash
132
- pixcode daemon logs --mode auto
133
- pixcode daemon restart --mode auto
134
- pixcode daemon stop --mode auto # temporary stop, auto-start remains enabled
135
- pixcode daemon disable --mode auto # disable auto-start at boot
136
- pixcode daemon uninstall --mode auto
137
- pixcode update --restart-daemon
138
- ```
139
-
140
- Notes:
141
- - On Linux, `pixcode` now attempts auto-daemon startup by default.
142
- - `npm run dev`, `npm run start`, and direct server entrypoints now pass through the same auto-daemon behavior.
143
- - Recommended for always-on server deployments: use `pixcode daemon install`, not `npm run dev`.
144
- - `--mode user` uses `systemctl --user`, `--mode system` uses system service management, and `--mode auto` chooses the best available mode.
145
- - Use `pixcode --no-daemon` (or `PIXCODE_NO_DAEMON=1`) to force foreground mode.
146
- - On some servers you may need to enable linger for boot-time startup without an active login session:
147
- `sudo loginctl enable-linger <your-username>`
148
-
149
- #### Docker Sandboxes (Experimental)
150
-
151
- Run agents in isolated sandboxes with hypervisor-level isolation. Starts Claude Code by default. Requires the [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/).
152
-
153
- ```
154
- npx @pixelbyte-software/pixcode@latest sandbox ~/my-project
155
- ```
156
-
157
- Supports Claude Code, Codex, and Gemini CLI. See the [sandbox docs](docker/) for setup and advanced options.
158
-
159
-
160
- ---
161
-
162
- ## Which option is right for you?
163
-
164
- Pixcode is the open source UI layer that powers Pixcode. You can self-host it on your own machine, run it in a Docker sandbox for isolation, or use Pixcode for a fully managed environment.
165
-
166
- | | Self-Hosted (npm) | Self-Hosted (Docker Sandbox) *(Experimental)* | Pixcode |
167
- |---|---|---|---|
168
- | **Best for** | Local agent sessions on your own machine | Isolated agents with web/mobile IDE | Teams who want agents in the cloud |
169
- | **How you access it** | Browser via `[yourip]:port` | Browser via `localhost:port` | Browser, any IDE, REST API, n8n |
170
- | **Setup** | `npx @pixelbyte-software/pixcode` | `npx @pixelbyte-software/pixcode@latest sandbox ~/project` | No setup required |
171
- | **Isolation** | Runs on your host | Hypervisor-level sandbox (microVM) | Full cloud isolation |
172
- | **Machine needs to stay on** | Yes | Yes | No |
173
- | **Mobile access** | Any browser on your network | Any browser on your network | Any device, native app coming |
174
- | **Agents supported** | Claude Code, Cursor CLI, Codex, Gemini CLI | Claude Code, Codex, Gemini CLI | Claude Code, Cursor CLI, Codex, Gemini CLI |
175
- | **File explorer and Git** | Yes | Yes | Yes |
176
- | **MCP configuration** | Synced with `~/.claude` | Managed via UI | Managed via UI |
177
- | **REST API** | Yes | Yes | Yes |
178
- | **Team sharing** | No | No | Yes |
179
- | **Platform cost** | Free, open source | Free, open source | Starts at $7/month |
180
-
181
- > All options use your own AI subscriptions (Claude, Cursor, etc.) — Pixcode provides the environment, not the AI.
182
-
183
- ---
184
-
185
- ## Security & Tools Configuration
186
-
187
- **🔒 Important Notice**: All Claude Code tools are **disabled by default**. This prevents potentially harmful operations from running automatically.
188
-
189
- ### Enabling Tools
190
-
191
- To use Claude Code's full functionality, you'll need to manually enable tools:
192
-
193
- 1. **Open Tools Settings** - Click the gear icon in the sidebar
194
- 2. **Enable Selectively** - Turn on only the tools you need
195
- 3. **Apply Settings** - Your preferences are saved locally
196
-
197
- <div align="center">
198
-
199
- ![Tools Settings Modal](public/screenshots/tools-modal.png)
200
- *Tools Settings interface - enable only what you need*
201
-
202
- </div>
203
-
204
- **Recommended approach**: Start with basic tools enabled and add more as needed. You can always adjust these settings later.
205
-
206
- ---
207
-
208
- ## Plugins
209
-
210
- Pixcode has a plugin system that lets you add custom tabs with their own frontend UI and optional Node.js backend. Install plugins from git repos directly in **Settings > Plugins**, or build your own.
211
-
212
- ### Available Plugins
213
-
214
- | Plugin | Description |
215
- |---|---|
216
- | **[Project Stats](https://github.com/alicomert/pixcode)** | Shows file counts, lines of code, file-type breakdown, largest files, and recently modified files for your current project |
217
- | **[Web Terminal](https://github.com/alicomert/pixcode)** | Full xterm.js terminal with multi-tab support|
218
-
219
- ### Build Your Own
220
-
221
- **[Plugin Starter Template →](https://github.com/alicomert/pixcode)** — fork this repo to create your own plugin. It includes a working example with frontend rendering, live context updates, and RPC communication to a backend server.
222
-
223
- **[Plugin Documentation →](https://github.com/alicomert/pixcode)** — full guide to the plugin API, manifest format, security model, and more.
224
-
225
- ---
226
- ## FAQ
227
-
228
- <details>
229
- <summary>How is this different from Claude Code Remote Control?</summary>
230
-
231
- Claude Code Remote Control lets you send messages to a session already running in your local terminal. Your machine has to stay on, your terminal has to stay open, and sessions time out after roughly 10 minutes without a network connection.
232
-
233
- Pixcode and Pixcode extend Claude Code rather than sit alongside it — your MCP servers, permissions, settings, and sessions are the exact same ones Claude Code uses natively. Nothing is duplicated or managed separately.
234
-
235
- Here's what that means in practice:
236
-
237
- - **All your sessions, not just one** — Pixcode auto-discovers every session from your `~/.claude` folder. Remote Control only exposes the single active session to make it available in the Claude mobile app.
238
- - **Your settings are your settings** — MCP servers, tool permissions, and project config you change in Pixcode are written directly to your Claude Code config and take effect immediately, and vice versa.
239
- - **Works with more agents** — Claude Code, Cursor CLI, Codex, and Gemini CLI, not just Claude Code.
240
- - **Full UI, not just a chat window** — file explorer, Git integration, MCP management, and a shell terminal are all built in.
241
- - **Pixcode runs in the cloud** — close your laptop, the agent keeps running. No terminal to babysit, no machine to keep awake.
242
-
243
- </details>
244
-
245
- <details>
246
- <summary>Do I need to pay for an AI subscription separately?</summary>
247
-
248
- Yes. Pixcode provides the environment, not the AI. You bring your own Claude, Cursor, Codex, or Gemini subscription. Pixcode starts at $7/month for the hosted environment on top of that.
249
-
250
- </details>
251
-
252
- <details>
253
- <summary>Can I use Pixcode on my phone?</summary>
254
-
255
- Yes. For self-hosted, run the server on your machine and open `[yourip]:port` in any browser on your network. For Pixcode, open it from any device — no VPN, no port forwarding, no setup. A native app is also in the works.
256
-
257
- </details>
258
-
259
- <details>
260
- <summary>Will changes I make in the UI affect my local Claude Code setup?</summary>
261
-
262
- Yes, for self-hosted. Pixcode reads from and writes to the same `~/.claude` config that Claude Code uses natively. MCP servers you add via the UI show up in Claude Code immediately and vice versa.
263
-
264
- </details>
265
-
266
- ---
267
-
268
- ## Community & Support
269
-
270
- - **[Documentation](https://github.com/alicomert/pixcode)** — installation, configuration, features, and troubleshooting
271
- - **[Discord](https://discord.gg/buxwujPNRE)** — get help and connect with other users
272
- - **[GitHub Issues](https://github.com/alicomert/pixcode/issues)** — bug reports and feature requests
273
- - **[Contributing Guide](CONTRIBUTING.md)** — how to contribute to the project
274
-
275
- ## License
276
-
277
- GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later) — see [LICENSE](LICENSE) for the full text, including additional terms under Section 7.
278
-
279
- This project is open source and free to use, modify, and distribute under the AGPL-3.0-or-later license. If you modify this software and run it as a network service, you must make your modified source code available to users of that service.
280
-
281
- Pixcode - (https://github.com/alicomert/pixcode).
282
-
283
- ## Acknowledgments
284
-
285
- ### Built With
286
- - **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)** - Anthropic's official CLI
287
- - **[Cursor CLI](https://docs.cursor.com/en/cli/overview)** - Cursor's official CLI
288
- - **[Codex](https://developers.openai.com/codex)** - OpenAI Codex
289
- - **[Gemini-CLI](https://geminicli.com/)** - Google Gemini CLI
290
- - **[React](https://react.dev/)** - User interface library
291
- - **[Vite](https://vitejs.dev/)** - Fast build tool and dev server
292
- - **[Tailwind CSS](https://tailwindcss.com/)** - Utility-first CSS framework
293
- - **[CodeMirror](https://codemirror.net/)** - Advanced code editor
294
- - **[TaskMaster AI](https://github.com/eyaltoledano/claude-task-master)** *(Optional)* - AI-powered project management and task planning
295
-
296
-
297
- ### Sponsors
298
- - [Siteboon - AI powered website builder](https://siteboon.ai)
299
- ---
300
-
301
- <div align="center">
302
- <strong>Made with care for the Claude Code, Cursor and Codex community.</strong>
303
- </div>
1
+ <div align="center">
2
+ <img src="public/logo.svg" alt="Pixcode" width="64" height="64">
3
+ <h1>Pixcode — Run Claude Code, Codex, Cursor, Gemini & Qwen Code from one UI</h1>
4
+ <p>A desktop and mobile UI for <a href="https://docs.anthropic.com/en/docs/claude-code">Claude Code</a>, <a href="https://docs.cursor.com/en/cli/overview">Cursor CLI</a>, <a href="https://developers.openai.com/codex">Codex</a>, <a href="https://geminicli.com/">Gemini-CLI</a>, and <a href="https://github.com/QwenLM/qwen-code">Qwen Code</a>.<br>Use it locally or remotely to view your active projects and sessions from everywhere.</p>
5
+ <p><strong>☁️ Pixcode Cloud — coming soon.</strong></p>
6
+ </div>
7
+
8
+ <p align="center">
9
+ <a href="https://github.com/alicomert/pixcode">Pixcode</a> · <a href="https://github.com/alicomert/pixcode">Documentation</a> · <a href="https://discord.gg/buxwujPNRE">Discord</a> · <a href="https://github.com/alicomert/pixcode/issues">Bug Reports</a> · <a href="CONTRIBUTING.md">Contributing</a>
10
+ </p>
11
+
12
+ <p align="center">
13
+ <a href="https://github.com/alicomert/pixcode/releases/latest"><img src="https://img.shields.io/badge/%E2%AC%87_Download-Desktop_App-0066FF?style=for-the-badge" alt="Download Desktop App"></a>
14
+ <a href="https://www.npmjs.com/package/@pixelbyte-software/pixcode"><img src="https://img.shields.io/badge/npm-install_-g-CB3837?style=for-the-badge&logo=npm&logoColor=white" alt="npm"></a>
15
+ <a href="https://discord.gg/buxwujPNRE"><img src="https://img.shields.io/badge/Discord-Join%20Community-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join our Discord"></a>
16
+ </p>
17
+
18
+ <p align="center">
19
+ <strong>📦 Desktop installers:</strong>
20
+ <a href="https://github.com/alicomert/pixcode/releases/latest">Windows · macOS · Linux</a>
21
+ &nbsp;·&nbsp;
22
+ <strong>☁️ Pixcode Cloud:</strong> coming soon
23
+ </p>
24
+
25
+ <p align="center">
26
+ <a href="./README.md"><img src="https://img.shields.io/badge/English-5C3FFC?style=for-the-badge&logoColor=white" alt="English"></a>
27
+ <a href="./README.tr.md"><img src="https://img.shields.io/badge/T%C3%BCrk%C3%A7e-4B4B4B?style=for-the-badge" alt="Türkçe"></a>
28
+ <a href="./README.ru.md"><img src="https://img.shields.io/badge/%D0%A0%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9-4B4B4B?style=for-the-badge" alt="Русский"></a>
29
+ <a href="./README.de.md"><img src="https://img.shields.io/badge/Deutsch-4B4B4B?style=for-the-badge" alt="Deutsch"></a>
30
+ <a href="./README.it.md"><img src="https://img.shields.io/badge/Italiano-4B4B4B?style=for-the-badge" alt="Italiano"></a>
31
+ <a href="./README.ja.md"><img src="https://img.shields.io/badge/%E6%97%A5%E6%9C%AC%E8%AA%9E-4B4B4B?style=for-the-badge" alt="日本語"></a>
32
+ <a href="./README.ko.md"><img src="https://img.shields.io/badge/%ED%95%9C%EA%B5%AD%EC%96%B4-4B4B4B?style=for-the-badge" alt="한국어"></a>
33
+ <a href="./README.zh-CN.md"><img src="https://img.shields.io/badge/%E4%B8%AD%E6%96%87-4B4B4B?style=for-the-badge" alt="中文"></a>
34
+ </p>
35
+
36
+ ---
37
+
38
+ ## Screenshots
39
+
40
+ <div align="center">
41
+
42
+ <table>
43
+ <tr>
44
+ <td align="center">
45
+ <h3>Desktop View</h3>
46
+ <img src="public/screenshots/desktop-main.png" alt="Desktop Interface" width="400">
47
+ <br>
48
+ <em>Main interface showing project overview and chat</em>
49
+ </td>
50
+ <td align="center">
51
+ <h3>Mobile Experience</h3>
52
+ <img src="public/screenshots/mobile-chat.png" alt="Mobile Interface" width="250">
53
+ <br>
54
+ <em>Responsive mobile design with touch navigation</em>
55
+ </td>
56
+ </tr>
57
+ <tr>
58
+ <td align="center" colspan="2">
59
+ <h3>CLI Selection</h3>
60
+ <img src="public/screenshots/cli-selection.png" alt="CLI Selection" width="400">
61
+ <br>
62
+ <em>Select between Claude Code, Gemini, Cursor CLI and Codex</em>
63
+ </td>
64
+ </tr>
65
+ </table>
66
+
67
+
68
+
69
+ </div>
70
+
71
+ ## Features
72
+
73
+ - **Responsive Design** - Works seamlessly across desktop, tablet, and mobile so you can also use Agents from mobile
74
+ - **Interactive Chat Interface** - Built-in chat interface for seamless communication with the Agents
75
+ - **Integrated Shell Terminal** - Direct access to the Agents CLI through built-in shell functionality
76
+ - **File Explorer** - Interactive file tree with syntax highlighting and live editing
77
+ - **Git Explorer** - View, stage and commit your changes. You can also switch branches
78
+ - **Session Management** - Resume conversations, manage multiple sessions, and track history
79
+ - **Plugin System** - Extend Pixcode with custom plugins — add new tabs, backend services, and integrations. [Build your own →](https://github.com/alicomert/pixcode)
80
+ - **TaskMaster AI Integration** *(Optional)* - Advanced project management with AI-powered task planning, PRD parsing, and workflow automation
81
+ - **Model Compatibility** - Works with Claude, GPT, and Gemini model families (see [`shared/modelConstants.js`](shared/modelConstants.js) for the full list of supported models)
82
+
83
+
84
+ ## Quick Start
85
+
86
+ ### Pixcode (Recommended)
87
+
88
+ The fastest way to get started — no local setup required. Get a fully managed, containerized development environment accessible from the web, mobile app, API, or your favorite IDE.
89
+
90
+ **[Get started with Pixcode](https://github.com/alicomert/pixcode)**
91
+
92
+
93
+ ### Self-Hosted (Open source)
94
+
95
+ #### npm
96
+
97
+ Try Pixcode instantly with **npx** (requires **Node.js** v22+):
98
+
99
+ ```
100
+ npx @pixelbyte-software/pixcode
101
+ ```
102
+
103
+ Or install **globally** for regular use:
104
+
105
+ ```
106
+ npm install -g @pixelbyte-software/pixcode
107
+ pixcode
108
+ ```
109
+
110
+ Open `http://localhost:3001` — all your existing sessions are discovered automatically.
111
+
112
+ Visit the **[documentation →](https://github.com/alicomert/pixcode)** for full configuration options, PM2, remote server setup and more.
113
+
114
+ #### Keep It Running On Linux (VDS / SSH-safe)
115
+
116
+ If you run Pixcode over SSH and your terminal disconnects, foreground processes like `npm run dev` will stop.
117
+ Use the built-in daemon manager to run Pixcode as a persistent service:
118
+
119
+ ```bash
120
+ # Default behavior on Linux (auto-daemon):
121
+ pixcode
122
+
123
+ # Explicit install (recommended on first setup):
124
+ pixcode daemon install --mode auto --port 3001
125
+ pixcode daemon status --mode auto
126
+ pixcode daemon doctor --mode auto
127
+ ```
128
+
129
+ Useful commands:
130
+
131
+ ```bash
132
+ pixcode daemon logs --mode auto
133
+ pixcode daemon restart --mode auto
134
+ pixcode daemon stop --mode auto # temporary stop, auto-start remains enabled
135
+ pixcode daemon disable --mode auto # disable auto-start at boot
136
+ pixcode daemon uninstall --mode auto
137
+ pixcode update --restart-daemon
138
+ ```
139
+
140
+ Notes:
141
+ - On Linux, `pixcode` now attempts auto-daemon startup by default.
142
+ - `npm run dev`, `npm run start`, and direct server entrypoints now pass through the same auto-daemon behavior.
143
+ - Recommended for always-on server deployments: use `pixcode daemon install`, not `npm run dev`.
144
+ - `--mode user` uses `systemctl --user`, `--mode system` uses system service management, and `--mode auto` chooses the best available mode.
145
+ - Use `pixcode --no-daemon` (or `PIXCODE_NO_DAEMON=1`) to force foreground mode.
146
+ - On some servers you may need to enable linger for boot-time startup without an active login session:
147
+ `sudo loginctl enable-linger <your-username>`
148
+
149
+ #### Docker Sandboxes (Experimental)
150
+
151
+ Run agents in isolated sandboxes with hypervisor-level isolation. Starts Claude Code by default. Requires the [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/).
152
+
153
+ ```
154
+ npx @pixelbyte-software/pixcode@latest sandbox ~/my-project
155
+ ```
156
+
157
+ Supports Claude Code, Codex, and Gemini CLI. See the [sandbox docs](docker/) for setup and advanced options.
158
+
159
+
160
+ ---
161
+
162
+ ## Which option is right for you?
163
+
164
+ Pixcode is the open source UI layer that powers Pixcode. You can self-host it on your own machine, run it in a Docker sandbox for isolation, or use Pixcode for a fully managed environment.
165
+
166
+ | | Self-Hosted (npm) | Self-Hosted (Docker Sandbox) *(Experimental)* | Pixcode |
167
+ |---|---|---|---|
168
+ | **Best for** | Local agent sessions on your own machine | Isolated agents with web/mobile IDE | Teams who want agents in the cloud |
169
+ | **How you access it** | Browser via `[yourip]:port` | Browser via `localhost:port` | Browser, any IDE, REST API, n8n |
170
+ | **Setup** | `npx @pixelbyte-software/pixcode` | `npx @pixelbyte-software/pixcode@latest sandbox ~/project` | No setup required |
171
+ | **Isolation** | Runs on your host | Hypervisor-level sandbox (microVM) | Full cloud isolation |
172
+ | **Machine needs to stay on** | Yes | Yes | No |
173
+ | **Mobile access** | Any browser on your network | Any browser on your network | Any device, native app coming |
174
+ | **Agents supported** | Claude Code, Cursor CLI, Codex, Gemini CLI | Claude Code, Codex, Gemini CLI | Claude Code, Cursor CLI, Codex, Gemini CLI |
175
+ | **File explorer and Git** | Yes | Yes | Yes |
176
+ | **MCP configuration** | Synced with `~/.claude` | Managed via UI | Managed via UI |
177
+ | **REST API** | Yes | Yes | Yes |
178
+ | **Team sharing** | No | No | Yes |
179
+ | **Platform cost** | Free, open source | Free, open source | Starts at $7/month |
180
+
181
+ > All options use your own AI subscriptions (Claude, Cursor, etc.) — Pixcode provides the environment, not the AI.
182
+
183
+ ---
184
+
185
+ ## Security & Tools Configuration
186
+
187
+ **🔒 Important Notice**: All Claude Code tools are **disabled by default**. This prevents potentially harmful operations from running automatically.
188
+
189
+ ### Enabling Tools
190
+
191
+ To use Claude Code's full functionality, you'll need to manually enable tools:
192
+
193
+ 1. **Open Tools Settings** - Click the gear icon in the sidebar
194
+ 2. **Enable Selectively** - Turn on only the tools you need
195
+ 3. **Apply Settings** - Your preferences are saved locally
196
+
197
+ <div align="center">
198
+
199
+ ![Tools Settings Modal](public/screenshots/tools-modal.png)
200
+ *Tools Settings interface - enable only what you need*
201
+
202
+ </div>
203
+
204
+ **Recommended approach**: Start with basic tools enabled and add more as needed. You can always adjust these settings later.
205
+
206
+ ---
207
+
208
+ ## Plugins
209
+
210
+ Pixcode has a plugin system that lets you add custom tabs with their own frontend UI and optional Node.js backend. Install plugins from git repos directly in **Settings > Plugins**, or build your own.
211
+
212
+ ### Available Plugins
213
+
214
+ | Plugin | Description |
215
+ |---|---|
216
+ | **[Project Stats](https://github.com/alicomert/pixcode)** | Shows file counts, lines of code, file-type breakdown, largest files, and recently modified files for your current project |
217
+ | **[Web Terminal](https://github.com/alicomert/pixcode)** | Full xterm.js terminal with multi-tab support|
218
+
219
+ ### Build Your Own
220
+
221
+ **[Plugin Starter Template →](https://github.com/alicomert/pixcode)** — fork this repo to create your own plugin. It includes a working example with frontend rendering, live context updates, and RPC communication to a backend server.
222
+
223
+ **[Plugin Documentation →](https://github.com/alicomert/pixcode)** — full guide to the plugin API, manifest format, security model, and more.
224
+
225
+ ---
226
+ ## FAQ
227
+
228
+ <details>
229
+ <summary>How is this different from Claude Code Remote Control?</summary>
230
+
231
+ Claude Code Remote Control lets you send messages to a session already running in your local terminal. Your machine has to stay on, your terminal has to stay open, and sessions time out after roughly 10 minutes without a network connection.
232
+
233
+ Pixcode and Pixcode extend Claude Code rather than sit alongside it — your MCP servers, permissions, settings, and sessions are the exact same ones Claude Code uses natively. Nothing is duplicated or managed separately.
234
+
235
+ Here's what that means in practice:
236
+
237
+ - **All your sessions, not just one** — Pixcode auto-discovers every session from your `~/.claude` folder. Remote Control only exposes the single active session to make it available in the Claude mobile app.
238
+ - **Your settings are your settings** — MCP servers, tool permissions, and project config you change in Pixcode are written directly to your Claude Code config and take effect immediately, and vice versa.
239
+ - **Works with more agents** — Claude Code, Cursor CLI, Codex, and Gemini CLI, not just Claude Code.
240
+ - **Full UI, not just a chat window** — file explorer, Git integration, MCP management, and a shell terminal are all built in.
241
+ - **Pixcode runs in the cloud** — close your laptop, the agent keeps running. No terminal to babysit, no machine to keep awake.
242
+
243
+ </details>
244
+
245
+ <details>
246
+ <summary>Do I need to pay for an AI subscription separately?</summary>
247
+
248
+ Yes. Pixcode provides the environment, not the AI. You bring your own Claude, Cursor, Codex, or Gemini subscription. Pixcode starts at $7/month for the hosted environment on top of that.
249
+
250
+ </details>
251
+
252
+ <details>
253
+ <summary>Can I use Pixcode on my phone?</summary>
254
+
255
+ Yes. For self-hosted, run the server on your machine and open `[yourip]:port` in any browser on your network. For Pixcode, open it from any device — no VPN, no port forwarding, no setup. A native app is also in the works.
256
+
257
+ </details>
258
+
259
+ <details>
260
+ <summary>Will changes I make in the UI affect my local Claude Code setup?</summary>
261
+
262
+ Yes, for self-hosted. Pixcode reads from and writes to the same `~/.claude` config that Claude Code uses natively. MCP servers you add via the UI show up in Claude Code immediately and vice versa.
263
+
264
+ </details>
265
+
266
+ ---
267
+
268
+ ## Community & Support
269
+
270
+ - **[Documentation](https://github.com/alicomert/pixcode)** — installation, configuration, features, and troubleshooting
271
+ - **[Discord](https://discord.gg/buxwujPNRE)** — get help and connect with other users
272
+ - **[GitHub Issues](https://github.com/alicomert/pixcode/issues)** — bug reports and feature requests
273
+ - **[Contributing Guide](CONTRIBUTING.md)** — how to contribute to the project
274
+
275
+ ## License
276
+
277
+ GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later) — see [LICENSE](LICENSE) for the full text, including additional terms under Section 7.
278
+
279
+ This project is open source and free to use, modify, and distribute under the AGPL-3.0-or-later license. If you modify this software and run it as a network service, you must make your modified source code available to users of that service.
280
+
281
+ Pixcode - (https://github.com/alicomert/pixcode).
282
+
283
+ ## Acknowledgments
284
+
285
+ ### Built With
286
+ - **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)** - Anthropic's official CLI
287
+ - **[Cursor CLI](https://docs.cursor.com/en/cli/overview)** - Cursor's official CLI
288
+ - **[Codex](https://developers.openai.com/codex)** - OpenAI Codex
289
+ - **[Gemini-CLI](https://geminicli.com/)** - Google Gemini CLI
290
+ - **[React](https://react.dev/)** - User interface library
291
+ - **[Vite](https://vitejs.dev/)** - Fast build tool and dev server
292
+ - **[Tailwind CSS](https://tailwindcss.com/)** - Utility-first CSS framework
293
+ - **[CodeMirror](https://codemirror.net/)** - Advanced code editor
294
+ - **[TaskMaster AI](https://github.com/eyaltoledano/claude-task-master)** *(Optional)* - AI-powered project management and task planning
295
+
296
+
297
+ ### Sponsors
298
+ - [Siteboon - AI powered website builder](https://siteboon.ai)
299
+ ---
300
+
301
+ <div align="center">
302
+ <strong>Made with care for the Claude Code, Cursor and Codex community.</strong>
303
+ </div>