-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissues.json
More file actions
230 lines (230 loc) · 8.54 KB
/
issues.json
File metadata and controls
230 lines (230 loc) · 8.54 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
{
"issues": [
{
"id": "ocapi-1",
"title": "MVP: Docker & API Foundation",
"description": "Epic for MVP milestone - Docker configuration and basic API validation",
"type": "epic",
"status": "open",
"priority": "high",
"labels": ["milestone", "mvp"],
"dependencies": [],
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-2",
"title": "Create Dockerfile for OpenCode server",
"description": "Create multi-stage Dockerfile that builds opencode from source and runs `opencode serve` on port 4096. Use golang:1.23-alpine for build stage and alpine:3.20 for runtime. Configure OPENCODE_MODEL=x-ai/grok-3-fast as default.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["docker", "mvp"],
"dependencies": [],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-3",
"title": "Create docker-compose.yml for easy deployment",
"description": "Create docker-compose.yml that builds from Dockerfile, exposes port 4096, mounts ./workspace volume, and sets environment variables for model configuration.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["docker", "mvp"],
"dependencies": ["ocapi-2"],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-4",
"title": "Build and test Docker container",
"description": "Build the Docker image and verify container starts successfully. Ensure opencode serve is accessible on port 4096 and responds to health checks.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["docker", "testing", "mvp"],
"dependencies": ["ocapi-2", "ocapi-3"],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-5",
"title": "Test session creation API endpoint",
"description": "Validate POST /session endpoint creates a new chat session and returns session ID. Document the response format.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["api", "testing", "mvp"],
"dependencies": ["ocapi-4"],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-6",
"title": "Test message sending API endpoint",
"description": "Validate POST /session/{id}/message endpoint sends prompts to the AI agent. Test with simple prompts and verify responses via GET /session/{id}/messages.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["api", "testing", "mvp"],
"dependencies": ["ocapi-5"],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-7",
"title": "Test SSE event streaming endpoint",
"description": "Validate GET /event SSE endpoint streams real-time updates. Test connection stability, event format, and reconnection handling.",
"type": "task",
"status": "open",
"priority": "high",
"labels": ["api", "testing", "mvp"],
"dependencies": ["ocapi-4"],
"parent": "ocapi-1",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-8",
"title": "V1.0: Web Frontend",
"description": "Epic for V1.0 milestone - Web frontend with SDK integration",
"type": "epic",
"status": "open",
"priority": "medium",
"labels": ["milestone", "v1.0"],
"dependencies": ["ocapi-1"],
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-9",
"title": "Create TypeScript SDK client library",
"description": "Create lib/opencode.ts with createOpencodeClient function. Support configurable baseUrl, session management, and message sending methods.",
"type": "task",
"status": "open",
"priority": "medium",
"labels": ["sdk", "typescript", "v1.0"],
"dependencies": ["ocapi-6", "ocapi-7"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-10",
"title": "Set up web frontend project structure",
"description": "Initialize Next.js or similar framework for web frontend. Configure TypeScript, set up project structure with pages/components/hooks directories.",
"type": "task",
"status": "open",
"priority": "medium",
"labels": ["frontend", "v1.0"],
"dependencies": ["ocapi-9"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-11",
"title": "Implement useEventStream hook for SSE",
"description": "Create hooks/useEventStream.ts React hook for SSE event streaming. Handle connection state, event parsing, and automatic reconnection.",
"type": "task",
"status": "open",
"priority": "medium",
"labels": ["frontend", "hooks", "v1.0"],
"dependencies": ["ocapi-9"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-12",
"title": "Build session management UI",
"description": "Create UI components for creating, listing, and switching between chat sessions. Display session history and allow session deletion.",
"type": "task",
"status": "open",
"priority": "medium",
"labels": ["frontend", "ui", "v1.0"],
"dependencies": ["ocapi-10", "ocapi-11"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-13",
"title": "Build file explorer UI",
"description": "Create file explorer component using GET /project/files and GET /file/{path} endpoints. Support file tree navigation and content preview.",
"type": "task",
"status": "open",
"priority": "medium",
"labels": ["frontend", "ui", "v1.0"],
"dependencies": ["ocapi-10"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-14",
"title": "Add cost tracking feature",
"description": "Implement cost tracking UI to display token usage and estimated costs per session. Aggregate costs across sessions for billing visibility.",
"type": "task",
"status": "open",
"priority": "low",
"labels": ["frontend", "feature", "v1.0"],
"dependencies": ["ocapi-12"],
"parent": "ocapi-8",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-15",
"title": "V2.0: Production Ready",
"description": "Epic for V2.0 milestone - Security, scalability, and production deployment",
"type": "epic",
"status": "open",
"priority": "low",
"labels": ["milestone", "v2.0"],
"dependencies": ["ocapi-8"],
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-16",
"title": "Add multi-model support",
"description": "Extend UI and API integration to support multiple AI models. Allow model selection per session using GET /models endpoint.",
"type": "task",
"status": "open",
"priority": "low",
"labels": ["feature", "v2.0"],
"dependencies": ["ocapi-14"],
"parent": "ocapi-15",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-17",
"title": "Implement authentication layer",
"description": "Add authentication to protect the API. Consider JWT tokens or session-based auth. Never expose opencode serve directly to internet without auth.",
"type": "task",
"status": "open",
"priority": "low",
"labels": ["security", "v2.0"],
"dependencies": ["ocapi-14"],
"parent": "ocapi-15",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-18",
"title": "Add rate limiting",
"description": "Implement rate limiting to prevent API abuse. Configure limits per user/session and return appropriate HTTP 429 responses.",
"type": "task",
"status": "open",
"priority": "low",
"labels": ["security", "v2.0"],
"dependencies": ["ocapi-17"],
"parent": "ocapi-15",
"created": "2025-12-20T00:00:00.000Z"
},
{
"id": "ocapi-19",
"title": "Create Kubernetes deployment config",
"description": "Create Kubernetes manifests (Deployment, Service, Ingress) for production deployment. Include resource limits, health checks, and HTTPS configuration.",
"type": "task",
"status": "open",
"priority": "low",
"labels": ["infrastructure", "v2.0"],
"dependencies": ["ocapi-17", "ocapi-18"],
"parent": "ocapi-15",
"created": "2025-12-20T00:00:00.000Z"
}
],
"nextId": 20
}