@pixelbyte-software/pixcode 1.35.0 → 1.35.1

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 (150) 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-Djuh0wHV.js → index-CBdsvGSR.js} +133 -133
  11. package/dist/clear-cache.html +85 -85
  12. package/dist/convert-icons.md +52 -52
  13. package/dist/generate-icons.js +48 -48
  14. package/dist/icons/codex-white.svg +3 -3
  15. package/dist/icons/codex.svg +3 -3
  16. package/dist/icons/cursor-white.svg +11 -11
  17. package/dist/icons/qwen-logo.svg +14 -14
  18. package/dist/index.html +58 -58
  19. package/dist/manifest.json +60 -60
  20. package/dist/openapi.yaml +1693 -1693
  21. package/dist/sw.js +124 -124
  22. package/dist-server/server/cli.js +96 -96
  23. package/dist-server/server/daemon/manager.js +33 -33
  24. package/dist-server/server/daemon-manager.js +64 -64
  25. package/dist-server/server/modules/orchestration/preview/preview-proxy.js +3 -3
  26. package/dist-server/server/modules/orchestration/preview/preview-proxy.js.map +1 -1
  27. package/dist-server/server/routes/commands.js +25 -25
  28. package/dist-server/server/routes/git.js +17 -17
  29. package/dist-server/server/routes/taskmaster.js +419 -419
  30. package/package.json +180 -180
  31. package/scripts/fix-node-pty.js +67 -67
  32. package/scripts/smoke/a2a-roundtrip.mjs +167 -167
  33. package/scripts/smoke/orchestration-api.mjs +172 -172
  34. package/scripts/smoke/orchestration-live-run.mjs +176 -176
  35. package/server/claude-sdk.js +898 -898
  36. package/server/cli.js +935 -935
  37. package/server/constants/config.js +4 -4
  38. package/server/cursor-cli.js +342 -342
  39. package/server/daemon/manager.js +564 -564
  40. package/server/daemon-manager.js +959 -959
  41. package/server/database/json-store.js +197 -197
  42. package/server/gemini-cli.js +535 -535
  43. package/server/gemini-response-handler.js +79 -79
  44. package/server/index.js +3135 -3135
  45. package/server/load-env.js +34 -34
  46. package/server/middleware/auth.js +173 -173
  47. package/server/modules/orchestration/a2a/adapter-registry.ts +108 -108
  48. package/server/modules/orchestration/a2a/adapters/abstract-a2a.adapter.ts +55 -55
  49. package/server/modules/orchestration/a2a/adapters/claude-code.adapter.ts +284 -284
  50. package/server/modules/orchestration/a2a/adapters/codex.adapter.ts +244 -244
  51. package/server/modules/orchestration/a2a/adapters/cursor.adapter.ts +249 -249
  52. package/server/modules/orchestration/a2a/adapters/gemini.adapter.ts +248 -248
  53. package/server/modules/orchestration/a2a/adapters/opencode.adapter.ts +248 -248
  54. package/server/modules/orchestration/a2a/adapters/qwen.adapter.ts +248 -248
  55. package/server/modules/orchestration/a2a/agent-card.ts +55 -55
  56. package/server/modules/orchestration/a2a/auth.middleware.ts +29 -29
  57. package/server/modules/orchestration/a2a/bus.ts +46 -46
  58. package/server/modules/orchestration/a2a/routes.ts +577 -577
  59. package/server/modules/orchestration/a2a/task-store.ts +178 -178
  60. package/server/modules/orchestration/a2a/types.ts +125 -125
  61. package/server/modules/orchestration/a2a/validator.ts +113 -113
  62. package/server/modules/orchestration/index.ts +66 -66
  63. package/server/modules/orchestration/preview/port-watcher.ts +112 -112
  64. package/server/modules/orchestration/preview/preview-proxy.ts +60 -60
  65. package/server/modules/orchestration/preview/types.ts +19 -19
  66. package/server/modules/orchestration/tasks/orchestration-task-store.ts +45 -45
  67. package/server/modules/orchestration/tasks/orchestration-task.routes.ts +73 -73
  68. package/server/modules/orchestration/tasks/orchestration-task.service.ts +145 -145
  69. package/server/modules/orchestration/tasks/orchestration-task.types.ts +29 -29
  70. package/server/modules/orchestration/workflows/built-in-workflows.ts +127 -127
  71. package/server/modules/orchestration/workflows/workflow-runner.ts +1206 -1206
  72. package/server/modules/orchestration/workflows/workflow-store.ts +97 -97
  73. package/server/modules/orchestration/workflows/workflow.routes.ts +169 -169
  74. package/server/modules/orchestration/workflows/workflow.types.ts +70 -70
  75. package/server/modules/orchestration/workflows/workspace-target.ts +120 -120
  76. package/server/modules/orchestration/workspace/docker-workspace.ts +135 -135
  77. package/server/modules/orchestration/workspace/path-safety.ts +55 -55
  78. package/server/modules/orchestration/workspace/types.ts +52 -52
  79. package/server/modules/orchestration/workspace/workspace-manager.ts +97 -97
  80. package/server/modules/orchestration/workspace/worktree-workspace.ts +125 -125
  81. package/server/modules/providers/index.ts +2 -2
  82. package/server/modules/providers/list/claude/claude-auth.provider.ts +145 -145
  83. package/server/modules/providers/list/claude/claude-mcp.provider.ts +135 -135
  84. package/server/modules/providers/list/claude/claude-sessions.provider.ts +306 -306
  85. package/server/modules/providers/list/claude/claude.provider.ts +15 -15
  86. package/server/modules/providers/list/codex/codex-auth.provider.ts +115 -115
  87. package/server/modules/providers/list/codex/codex-mcp.provider.ts +135 -135
  88. package/server/modules/providers/list/codex/codex-sessions.provider.ts +319 -319
  89. package/server/modules/providers/list/codex/codex.provider.ts +15 -15
  90. package/server/modules/providers/list/cursor/cursor-auth.provider.ts +143 -143
  91. package/server/modules/providers/list/cursor/cursor-mcp.provider.ts +108 -108
  92. package/server/modules/providers/list/cursor/cursor-sessions.provider.ts +421 -421
  93. package/server/modules/providers/list/cursor/cursor.provider.ts +15 -15
  94. package/server/modules/providers/list/gemini/gemini-auth.provider.ts +163 -163
  95. package/server/modules/providers/list/gemini/gemini-mcp.provider.ts +110 -110
  96. package/server/modules/providers/list/gemini/gemini-sessions.provider.ts +227 -227
  97. package/server/modules/providers/list/gemini/gemini.provider.ts +15 -15
  98. package/server/modules/providers/list/opencode/opencode-sessions.provider.ts +232 -232
  99. package/server/modules/providers/list/qwen/qwen-sessions.provider.ts +265 -265
  100. package/server/modules/providers/provider.registry.ts +40 -40
  101. package/server/modules/providers/provider.routes.ts +819 -819
  102. package/server/modules/providers/services/mcp.service.ts +86 -86
  103. package/server/modules/providers/services/provider-auth.service.ts +26 -26
  104. package/server/modules/providers/services/sessions.service.ts +45 -45
  105. package/server/modules/providers/shared/base/abstract.provider.ts +20 -20
  106. package/server/modules/providers/shared/mcp/mcp.provider.ts +151 -151
  107. package/server/modules/providers/tests/mcp.test.ts +293 -293
  108. package/server/openai-codex.js +462 -462
  109. package/server/opencode-cli.js +459 -459
  110. package/server/opencode-response-handler.js +107 -107
  111. package/server/projects.js +3105 -3105
  112. package/server/routes/agent.js +1365 -1365
  113. package/server/routes/auth.js +138 -138
  114. package/server/routes/codex.js +19 -19
  115. package/server/routes/commands.js +554 -554
  116. package/server/routes/cursor.js +52 -52
  117. package/server/routes/gemini.js +24 -24
  118. package/server/routes/git.js +1488 -1488
  119. package/server/routes/mcp-utils.js +31 -31
  120. package/server/routes/messages.js +61 -61
  121. package/server/routes/network.js +120 -120
  122. package/server/routes/plugins.js +318 -318
  123. package/server/routes/projects.js +915 -915
  124. package/server/routes/settings.js +286 -286
  125. package/server/routes/taskmaster.js +1496 -1496
  126. package/server/routes/telegram.js +125 -125
  127. package/server/routes/user.js +123 -123
  128. package/server/services/install-jobs.js +571 -571
  129. package/server/services/notification-orchestrator.js +242 -242
  130. package/server/services/provider-credentials.js +189 -189
  131. package/server/services/telegram/bot.js +279 -279
  132. package/server/services/telegram/translations.js +170 -170
  133. package/server/sessionManager.js +225 -225
  134. package/server/shared/interfaces.ts +54 -54
  135. package/server/shared/types.ts +172 -172
  136. package/server/shared/utils.ts +193 -193
  137. package/server/tsconfig.json +36 -36
  138. package/server/utils/colors.js +21 -21
  139. package/server/utils/commandParser.js +303 -303
  140. package/server/utils/frontmatter.js +18 -18
  141. package/server/utils/gitConfig.js +34 -34
  142. package/server/utils/mcp-detector.js +147 -147
  143. package/server/utils/plugin-loader.js +457 -457
  144. package/server/utils/plugin-process-manager.js +184 -184
  145. package/server/utils/runtime-paths.js +37 -37
  146. package/server/utils/taskmaster-websocket.js +128 -128
  147. package/server/utils/url-detection.js +71 -71
  148. package/server/vite-daemon.js +78 -78
  149. package/shared/modelConstants.js +162 -162
  150. 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>