@codedeck/codedeck 2026.3.1-4.81 → 2026.3.1-4.83

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 (2) hide show
  1. package/README.md +53 -15
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,36 @@
1
- # codedeck
1
+ # Codedeck
2
2
 
3
- Remote control AI coding agents (Claude Code, Codex, OpenCode) via Discord, Telegram, Feishu, web terminal, and native mobile apps.
3
+ An open-source remote command center for AI coding agents. Control Claude Code, Codex, Gemini CLI, OpenCode, and other agent CLIs from anywhere — your browser, your phone, on the train, at dinner without SSH.
4
+
5
+ ## Why Codedeck?
6
+
7
+ Your agents run locally in tmux on your machine — fully compliant, human-supervised, no API key tricks. Codedeck gives you a real-time remote interface to monitor, interact with, and manage them with a customizable UI purpose-built for coding workflows.
8
+
9
+ Chat platforms like Telegram and Discord are terrible for this: 4096-char message limits, no syntax highlighting, no diff views, no session management, rate-throttled bot APIs, and zero UI customizability. Codedeck replaces all of that with an interface you actually control.
10
+
11
+ ## Features
12
+
13
+ - **Remote access from anywhere** — Web + mobile app with push notifications. No SSH, no VPN. Control your agents from any device, anytime.
14
+ - **Multiple view modes** — Switch between raw terminal (native agent CLI experience) and chat mode (structured conversation UI). Your choice.
15
+ - **Multi-server, multi-session** — Manage agents across multiple machines from a single dashboard. See all session statuses at a glance.
16
+ - **Real-time streaming** — Live terminal output, session state indicators, instant message delivery. No message length limits, no rate throttling.
17
+ - **Customizable & open source** — MIT licensed. The UI is fully yours to modify — syntax-highlighted diffs, collapsible sections, approval flows, whatever you need. Fork it, extend it, self-host it.
18
+ - **Cross-session communication** — Sessions can talk to each other. Run multi-agent workflows with real-time visibility into what each agent is doing.
19
+ - **Custom scripts** — User-defined scripts triggered by session events (agent idle, task complete, error detected).
20
+
21
+ ## Architecture
22
+
23
+ ```
24
+ You (browser / mobile)
25
+ ↓ WebSocket
26
+ Server (self-hosted or cloud)
27
+ ↓ WebSocket
28
+ Daemon (your machine, manages tmux)
29
+ ↓ tmux
30
+ AI Agents (Claude Code / Codex / Gemini CLI / OpenCode)
31
+ ```
32
+
33
+ The daemon runs on your dev machine and manages agent sessions through tmux. The server relays WebSocket connections between your devices and the daemon. Everything stays under your control.
4
34
 
5
35
  ## Install
6
36
 
@@ -11,28 +41,36 @@ npm install -g @codedeck/codedeck
11
41
  ## Quick Start
12
42
 
13
43
  ```bash
14
- # Start the daemon
15
- codedeck start
16
-
17
- # Bind to Cloudflare central server
18
- codedeck bind
44
+ # Bind this machine to your Codedeck server
45
+ codedeck bind https://your-server.com/bind/<api-key>
19
46
 
20
47
  # Check status
21
48
  codedeck status
22
49
 
23
- # Send a message to an agent session
24
- codedeck send --session deck_myapp_w1 "fix the auth bug"
25
-
26
- # Run auto-fix with two agents
27
- codedeck autofix --project myapp "fix the authentication timeout bug"
50
+ # Or start the daemon manually
51
+ codedeck start
28
52
  ```
29
53
 
54
+ Once bound, the daemon starts automatically on login and your machine appears in the web UI.
55
+
30
56
  ## Requirements
31
57
 
32
58
  - Node.js >= 20
33
59
  - tmux
34
- - One or more AI agents: Claude Code, Codex, or OpenCode
60
+ - One or more AI coding agents installed: [Claude Code](https://github.com/anthropics/claude-code), [Codex](https://github.com/openai/codex), [Gemini CLI](https://github.com/google-gemini/gemini-cli), or [OpenCode](https://github.com/opencode-ai/opencode)
61
+
62
+ ## Roadmap
63
+
64
+ - **GitHub & GitLab issue sync** — Pull issues directly, auto-generate implementation plans
65
+ - **Multi-agent workflows** — Agents discuss plans, implement, review each other's code, and push — with human approval gates
66
+ - **File upload & browsing** — Upload files to sessions, browse project files remotely
67
+ - **Remote web preview** — Preview dev server output directly from the UI without port forwarding
68
+ - **Diff & code review UI** — Inline diff viewer with approve/reject flows
69
+ - **Session templates** — Save multi-agent setups and replay them one-click
70
+ - **Cost tracking** — Per-session, per-project token usage dashboard
71
+ - **Session recording & replay** — Review past sessions for debugging or knowledge sharing
72
+ - **Persistent cross-session memory** — Project knowledge and architecture decisions survive across sessions
35
73
 
36
- ## Documentation
74
+ ## License
37
75
 
38
- See [design.md](openspec/changes/codedeck/design.md) for architecture decisions.
76
+ MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codedeck/codedeck",
3
- "version": "2026.3.1-4.81",
4
- "description": "Remote control AI coding agents (Claude Code, Codex, OpenCode) via chat platforms and web terminal",
3
+ "version": "2026.3.1-4.83",
4
+ "description": "Open-source remote command center for AI coding agents — control Claude Code, Codex, Gemini CLI, OpenCode from browser and mobile",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",