-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature-comparison.json
More file actions
359 lines (359 loc) · 11.4 KB
/
Copy pathfeature-comparison.json
File metadata and controls
359 lines (359 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
{
"meta": {
"date": "2026-07-22",
"original": "opencode (Go/TypeScript) v1.18.4",
"port": "opencodeR (Rust)",
"description": "Feature comparison between original opencode and the Rust opencodeR port"
},
"cli_commands": {
"opencode [project]": {
"original": "Start opencode TUI (default, interactive agent)",
"opencodeR": "opencodeR (default) \u2014 basic stdin REPL, no proper TUI yet",
"status": "partial",
"notes": "REPL loop works but missing: rich TUI, project attachment, agent switching in-session"
},
"opencode serve": {
"original": "Start headless HTTP server",
"opencodeR": "opencodeR-server --headless <port> or opencodeR server <port>",
"status": "complete",
"notes": "Full implementation with TUI dashboard option"
},
"opencode attach <url>": {
"original": "Attach to a running opencode server via URL",
"opencodeR": "opencodeR-client --base-url <url>",
"status": "partial",
"notes": "Basic REPL works. Missing: session history replay, message viewing, TUI attach mode"
},
"opencode run <message>": {
"original": "Run one-shot prompt, output response, exit",
"opencodeR": "opencodeR run <msg> --port <port>",
"status": "partial",
"notes": "Sends prompt, returns admitted ID. Missing: actual LLM response, streaming output"
},
"opencode completion": {
"original": "Generate shell completion script",
"opencodeR": "opencodeR completion bash|zsh|fish|powershell|elvish",
"status": "complete",
"notes": "Full shell completion via clap_complete"
},
"opencode models [provider]": {
"original": "List available models, optionally filtered by provider",
"opencodeR": "opencodeR models --base-url <url> [--provider <id>]",
"status": "complete",
"notes": "Lists models from server, optional provider filter"
},
"opencode providers": {
"original": "Manage AI providers and credentials (list, login, logout)",
"opencodeR": "opencodeR providers --base-url <url>",
"status": "complete",
"notes": "Lists providers with model counts"
},
"opencode agent": {
"original": "Manage agents (create, list)",
"opencodeR": "opencodeR agents --base-url <url>",
"status": "complete",
"notes": "Lists available agents with descriptions"
},
"opencode session": {
"original": "Manage sessions (list, delete)",
"opencodeR": "opencodeR sessions --base-url <url> [--limit N]",
"status": "complete",
"notes": "Lists sessions from server"
},
"opencode export [sessionID]": {
"original": "Export session data as JSON",
"opencodeR": "opencodeR export <session-id> --base-url <url>",
"status": "complete",
"notes": "Exports session + messages + events as JSON"
},
"opencode import <file>": {
"original": "Import session data from JSON file or URL",
"opencodeR": "opencodeR import <file> --base-url <url>",
"status": "complete",
"notes": "Imports session from JSON file"
},
"opencode stats": {
"original": "Show token usage and cost statistics",
"opencodeR": "opencodeR cost --base-url <url>",
"status": "complete",
"notes": "Shows cost and token usage summary"
},
"opencode upgrade": {
"original": "Upgrade opencode to latest version",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode uninstall": {
"original": "Uninstall opencode and remove all related files",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode web": {
"original": "Start server and open web interface",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode debug": {
"original": "Debugging and troubleshooting tools",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode github": {
"original": "Manage GitHub agent (PR, issues, etc.)",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode pr <number>": {
"original": "Fetch PR branch and run opencode on it",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode plugin <module>": {
"original": "Install plugin and update config",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode mcp": {
"original": "Manage MCP (Model Context Protocol) servers",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode acp": {
"original": "Start ACP (Agent Client Protocol) server",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
},
"opencode db": {
"original": "Database tools (migrations, management)",
"opencodeR": "NOT IMPLEMENTED",
"status": "missing"
}
},
"server_api": {
"sessions": {
"original": "Full CRUD + prompt, events, history, revert, interrupt, messages, context",
"opencodeR": "All endpoints implemented with in-memory store",
"status": "complete",
"notes": "All endpoints + DELETE implemented with in-memory store"
},
"agents": {
"original": "List, create agents",
"opencodeR": "GET /api/agent returns hardcoded build + plan agents",
"status": "complete",
"notes": "GET /api/agent returns build + plan agents"
},
"models": {
"original": "List models, model metadata with limits + costs",
"opencodeR": "GET /api/model returns hardcoded model list",
"status": "partial",
"notes": "Missing: provider-backed model discovery, model limits enforcement"
},
"providers": {
"original": "List, get, OAuth flow, API key management",
"opencodeR": "GET /api/provider returns hardcoded list. Connect endpoints exist but are stubs.",
"status": "partial"
},
"filesystem": {
"original": "Read files, list directories, find files by pattern",
"opencodeR": "Read, list, find all work with real filesystem access",
"status": "complete"
},
"integrations": {
"original": "GitHub, GitLab, custom integrations with OAuth flow",
"opencodeR": "Integration endpoints exist with in-memory stubs. No real OAuth.",
"status": "partial"
},
"credentials": {
"original": "Update, remove credentials per provider",
"opencodeR": "PATCH /api/credential implemented (in-memory)",
"status": "partial"
},
"permissions": {
"original": "Request/reply permission flow with saved rules",
"opencodeR": "All permission endpoints implemented (in-memory)",
"status": "complete"
},
"questions": {
"original": "Ask/reply/reject questions from agent",
"opencodeR": "All question endpoints implemented (in-memory)",
"status": "complete"
},
"commands": {
"original": "List available shell commands",
"opencodeR": "GET /api/command returns hardcoded list",
"status": "complete"
},
"skills": {
"original": "List available skills from filesystem",
"opencodeR": "GET /api/skill returns hardcoded list",
"status": "complete"
},
"references": {
"original": "List file/symbol/web references",
"opencodeR": "GET /api/reference returns empty list",
"status": "complete"
},
"pty": {
"original": "Create, list, resize PTY sessions + WebSocket connect for I/O",
"opencodeR": "CRUD endpoints work. WebSocket connect implemented but no real PTY process.",
"status": "partial"
},
"events": {
"original": "SSE stream of server events (connected, heartbeat, session events)",
"opencodeR": "SSE endpoint streams connected event + heartbeats. No session events pushed live.",
"status": "partial"
},
"auth": {
"original": "Password-based Basic auth with config layer",
"opencodeR": "Basic auth middleware with pre-computed credential comparison",
"status": "complete"
},
"health": {
"original": "GET /api/health",
"opencodeR": "Returns {\"healthy\": true}",
"status": "complete"
}
},
"opencodeR_client_features": {
"interactive_repl": {
"status": "partial",
"notes": "Stdin loop works. Missing: multi-line input, command history, tab completion"
},
"one_shot_mode": {
"status": "complete",
"notes": "--one-shot flag sends prompt and prints response"
},
"session_list": {
"status": "missing",
"notes": "No way to list sessions from client"
},
"session_delete": {
"status": "missing",
"notes": "Server has no delete endpoint"
},
"message_history": {
"status": "partial",
"notes": "Shows messages on connect. No pagination or formatting."
},
"export_session": {
"status": "missing",
"notes": "No export command"
},
"model_listing": {
"status": "missing",
"notes": "No models CLI subcommand"
},
"provider_management": {
"status": "missing",
"notes": "No providers CLI subcommand"
},
"agent_management": {
"status": "missing",
"notes": "No agent CLI subcommand"
}
},
"prioritized_backlog": [
{
"priority": 1,
"item": "Server: DELETE /api/session/:id endpoint",
"area": "opencodeR-server",
"status": "done"
},
{
"priority": 1,
"item": "CLI: session list + delete subcommand",
"area": "opencodeR-client",
"status": "done"
},
{
"priority": 2,
"item": "CLI: models list subcommand",
"area": "opencodeR-client",
"status": "done"
},
{
"priority": 3,
"item": "CLI: providers list subcommand",
"area": "opencodeR-client",
"status": "done"
},
{
"priority": 4,
"item": "CLI: agents list subcommand",
"area": "opencodeR-client",
"status": "done"
},
{
"priority": 5,
"item": "CLI: export session as JSON",
"area": "opencodeR-client",
"status": "done"
},
{
"priority": 6,
"item": "CLI: shell completion generation",
"area": "opencodeR",
"status": "done"
},
{
"priority": 7,
"item": "Server: LLM provider integration for actual prompt responses",
"area": "opencodeR-server"
},
{
"priority": 8,
"item": "Server: real PTY process creation (fork+exec)",
"area": "opencodeR-server"
},
{
"priority": 9,
"item": "Server: live session events via SSE stream",
"area": "opencodeR-server"
},
{
"priority": 10,
"item": "Server: database persistence (SQLite)",
"area": "opencodeR-server"
},
{
"priority": 11,
"item": "CLI: stats/token usage",
"area": "opencodeR-client"
},
{
"priority": 12,
"item": "CLI: import session from JSON",
"area": "opencodeR-client"
},
{
"priority": 13,
"item": "Server: real integration OAuth flow",
"area": "opencodeR-server"
},
{
"priority": 14,
"item": "CLI: plugin management",
"area": "opencodeR"
},
{
"priority": 15,
"item": "CLI: MCP server management",
"area": "opencodeR"
},
{
"priority": 16,
"item": "CLI: GitHub/PR integration",
"area": "opencodeR"
},
{
"priority": 17,
"item": "CLI: self-upgrade + uninstall",
"area": "opencodeR"
},
{
"priority": 18,
"item": "Server: web interface (opencode web)",
"area": "opencodeR-server"
}
]
}