-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Expand file tree
/
Copy pathdevin-cli.ts
More file actions
531 lines (480 loc) · 20 KB
/
Copy pathdevin-cli.ts
File metadata and controls
531 lines (480 loc) · 20 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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
/**
* DevinCliExecutor — routes completions through the official Devin CLI binary
* via the Agent Client Protocol (ACP) JSON-RPC 2.0 over stdio.
*
* Protocol flow:
* 1. Spawn `devin acp --agent-type summarizer` as a subprocess
* (summarizer = no file-system tools → pure text replies, safe for proxy use)
* 2. Send: initialize → session/new (with model + cwd) → session/prompt
* 3. Receive: session/update notifications (streaming text deltas)
* 4. Emit deltas as OpenAI-compatible SSE chunks
* 5. Kill subprocess on [DONE] or error
*
* Authentication:
* credentials.apiKey / accessToken → passed as WINDSURF_API_KEY env var to devin.
* If not set, devin falls back to credentials stored by `devin auth login`.
*
* Binary discovery:
* 1. CLI_DEVIN_BIN env var (absolute path override)
* 2. PATH lookup ("devin" / "devin.exe")
* 3. %LOCALAPPDATA%\devin\cli\bin\devin.exe (Windows installer)
* 4. ~/.local/share/devin/bin/devin (Linux installer)
*
* Model selection:
* Passed directly to ACP session/new as `model` param (e.g. "swe-1-6-fast",
* "claude-sonnet-4-6", "gpt-5-5-high"). Devin CLI resolves them against its
* model_configs_v4.bin catalog on startup.
*/
import { spawn } from "node:child_process";
import path from "node:path";
import os from "node:os";
import fs from "node:fs";
import { BaseExecutor, type ExecuteInput, type ProviderCredentials } from "./base.ts";
// ─── Binary discovery ────────────────────────────────────────────────────────
function resolveDevinBin(): string {
// 1. Explicit override
const envBin = process.env.CLI_DEVIN_BIN?.trim();
if (envBin) return envBin;
// 2. Common name (PATH lookup handled by spawn shell option)
const isWin = process.platform === "win32";
// 3. Windows installer default: %LOCALAPPDATA%\devin\cli\bin\devin.exe
if (isWin) {
const localAppData = process.env.LOCALAPPDATA || path.join(os.homedir(), "AppData", "Local");
const winPath = path.join(localAppData, "devin", "cli", "bin", "devin.exe");
if (fs.existsSync(winPath)) return winPath;
}
// 4. Linux/macOS installer paths
const home = os.homedir();
for (const candidate of [
path.join(home, ".local", "share", "devin", "bin", "devin"),
path.join(home, ".devin", "bin", "devin"),
]) {
if (fs.existsSync(candidate)) return candidate;
}
// Fallback — rely on PATH
return isWin ? "devin.exe" : "devin";
}
// ─── ACP JSON-RPC helpers ────────────────────────────────────────────────────
type AcpMessage = {
jsonrpc: "2.0";
method?: string;
result?: unknown;
error?: { code: number; message: string };
params?: unknown;
id?: number | null;
};
function rpc(method: string, params: unknown, id?: number): string {
const msg: AcpMessage = { jsonrpc: "2.0", method, params };
if (id !== undefined) msg.id = id;
return JSON.stringify(msg) + "\n";
}
// ─── Multi-turn message → single prompt builder ───────────────────────────────
type OpenAIMsg = { role?: string; content?: unknown };
function buildPromptText(messages: OpenAIMsg[]): string {
// Devin CLI (summarizer mode) receives a single text prompt.
// We inline the whole conversation so the model has full context.
const lines: string[] = [];
for (const m of messages) {
const role = String(m.role || "user");
let text = "";
if (typeof m.content === "string") {
text = m.content;
} else if (Array.isArray(m.content)) {
for (const p of m.content) {
if (p && typeof p === "object" && (p as Record<string, unknown>).type === "text") {
text += String((p as Record<string, unknown>).text || "");
}
}
}
if (!text.trim()) continue;
if (role === "system") {
lines.push(`[System]\n${text}`);
} else if (role === "assistant") {
lines.push(`[Assistant]\n${text}`);
} else {
lines.push(`[User]\n${text}`);
}
}
return lines.join("\n\n") || "(empty)";
}
// ─── DevinCliExecutor ─────────────────────────────────────────────────────────
export class DevinCliExecutor extends BaseExecutor {
constructor() {
super("devin-cli", { id: "devin-cli", baseUrl: "" });
}
buildUrl(): string {
return "devin://acp/stdio";
}
buildHeaders(): Record<string, string> {
return {};
}
transformRequest(): unknown {
return null;
}
async execute({ model, body, stream: _stream, credentials, signal, log }: ExecuteInput): Promise<{
response: Response;
url: string;
headers: Record<string, string>;
transformedBody: unknown;
}> {
const b = (body ?? {}) as Record<string, unknown>;
const messages: OpenAIMsg[] = Array.isArray(b.messages) ? (b.messages as OpenAIMsg[]) : [];
const promptText = buildPromptText(messages);
const apiKey =
credentials.apiKey || credentials.accessToken || process.env.WINDSURF_API_KEY || "";
const devinBin = resolveDevinBin();
log?.info?.("DEVIN", `devin acp → model=${model}, bin=${devinBin}`);
const sseStream = new ReadableStream<Uint8Array>({
start(controller) {
const enc = new TextEncoder();
const emit = (data: string) => controller.enqueue(enc.encode(data));
const env: NodeJS.ProcessEnv = { ...process.env };
if (apiKey) env.WINDSURF_API_KEY = apiKey;
const child = spawn(devinBin, ["acp", "--agent-type", "summarizer"], {
env,
stdio: ["pipe", "pipe", "pipe"],
windowsHide: true,
// On Windows, devin.exe may need shell resolution
shell: process.platform === "win32",
});
let spawnError: Error | null = null;
let stdinClosed = false;
child.on("error", (err) => {
spawnError = err;
const msg =
err.message.includes("ENOENT") || err.message.includes("not found")
? `Devin CLI not found: ${devinBin}. Install via https://cli.devin.ai or set CLI_DEVIN_BIN env var.`
: `Devin CLI spawn error: ${err.message}`;
emit(
`data: ${JSON.stringify({ error: { message: msg, type: "devin_cli_error", code: "spawn_failed" } })}\n\n`
);
emit("data: [DONE]\n\n");
controller.close();
});
if (signal) {
signal.addEventListener("abort", () => {
if (!child.killed) child.kill("SIGTERM");
});
}
// ── JSON-RPC state machine ──────────────────────────────────────────
let idCounter = 1;
let sessionId: string | null = null;
let initDone = false;
let sessionCreated = false;
let promptSent = false;
let responseId = `chatcmpl-devin-${Date.now()}`;
let created = Math.floor(Date.now() / 1000);
let roleEmitted = false;
let totalText = "";
let finished = false;
const sendRpc = (method: string, params: unknown) => {
if (stdinClosed || child.stdin.destroyed) return;
const id = idCounter++;
try {
child.stdin.write(rpc(method, params, id));
} catch {
/* ignore write errors after close */
}
return id;
};
const finish = (error?: string) => {
if (finished) return;
finished = true;
if (error) {
emit(
`data: ${JSON.stringify({ error: { message: error, type: "devin_cli_error" } })}\n\n`
);
} else {
// Emit finish chunk
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [{ index: 0, delta: {}, finish_reason: "stop" }],
usage: {
prompt_tokens: Math.ceil(promptText.length / 4),
completion_tokens: Math.ceil(totalText.length / 4),
total_tokens: Math.ceil((promptText.length + totalText.length) / 4),
estimated: true,
},
})}\n\n`
);
}
emit("data: [DONE]\n\n");
// Gracefully close stdin → devin will exit
try {
if (!stdinClosed) {
stdinClosed = true;
child.stdin.end();
}
} catch {
/* ignore */
}
// Give it 2s to exit cleanly, then SIGKILL
const killTimer = setTimeout(() => {
if (!child.killed) child.kill("SIGKILL");
}, 2000);
killTimer.unref?.();
controller.close();
};
// ── stdout reader (NDJSON) ──────────────────────────────────────────
let buffer = "";
child.stdout.on("data", (chunk: Buffer) => {
buffer += chunk.toString("utf8");
let nl: number;
// Each ACP message is a newline-terminated JSON line
while ((nl = buffer.indexOf("\n")) !== -1) {
const line = buffer.slice(0, nl).trim();
buffer = buffer.slice(nl + 1);
if (!line) continue;
let msg: AcpMessage;
try {
msg = JSON.parse(line);
} catch {
continue; // ignore non-JSON lines (banner text, etc.)
}
// ── Initialize response ───────────────────────────────────────
if (!initDone && msg.result !== undefined && !msg.method) {
initDone = true;
// Create session: send session/new with model and a temp cwd.
// `mcpServers` is NOT optional — devin CLI 3000.2.x rejects the
// request with -32602 `missing field \`mcpServers\`` if omitted.
sendRpc("session/new", {
cwd: process.cwd(),
mcpServers: [],
model: model || undefined,
});
continue;
}
// ── session/new response → get sessionId ──────────────────────
if (initDone && !sessionCreated && msg.result !== undefined && !msg.method) {
const res = msg.result as Record<string, unknown>;
sessionId = (res?.sessionId as string) || null;
if (!sessionId) {
finish("Devin ACP: session/new returned no sessionId");
return;
}
sessionCreated = true;
// Send the prompt
promptSent = true;
sendRpc("session/prompt", {
sessionId,
// ACP names this field `prompt`; `content` is rejected with
// -32602 `missing field \`prompt\`` by devin CLI 3000.2.x.
prompt: [{ type: "text", text: promptText }],
});
continue;
}
// NOTE: `session/prompt` is a unary call — its response IS the end of
// the turn (it carries `stopReason`), not an ack. Swallowing it here
// used to hang the request until the client timed out, so the final
// result is handled by the branch further down instead.
// ── Streaming notifications (session/update) ──────────────────
if (msg.method === "session/update" || msg.method === "$/update") {
const params = msg.params as Record<string, unknown> | undefined;
if (!params) continue;
// devin CLI 3000.2.x nests the payload:
// params.update = { sessionUpdate: "agent_message_chunk",
// content: { type: "text", text: "…" } }
// Older/other ACP agents use a flat `params.type` + `params.content`.
const update = params.update as Record<string, unknown> | undefined;
const kind = (update?.sessionUpdate as string | undefined) ?? undefined;
const type = kind ?? (params.type as string | undefined);
if (kind === "agent_message_chunk") {
const delta = extractChunkText(update?.content);
if (delta) {
if (!roleEmitted) {
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [
{
index: 0,
delta: { role: "assistant", content: "" },
finish_reason: null,
},
],
})}\n\n`
);
roleEmitted = true;
}
totalText += delta;
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [{ index: 0, delta: { content: delta }, finish_reason: null }],
})}\n\n`
);
}
} else if (
type === "message_delta" ||
type === "text_delta" ||
type === "content_delta"
) {
const delta =
(params.content as string) ||
(params.delta as string) ||
(params.text as string) ||
"";
if (delta) {
if (!roleEmitted) {
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [
{
index: 0,
delta: { role: "assistant", content: "" },
finish_reason: null,
},
],
})}\n\n`
);
roleEmitted = true;
}
totalText += delta;
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [{ index: 0, delta: { content: delta }, finish_reason: null }],
})}\n\n`
);
}
} else if (type === "message_stop" || type === "stop" || type === "done") {
finish();
return;
} else if (type === "error") {
finish(String(params.message || params.error || "Devin ACP error"));
return;
}
continue;
}
// ── session/prompt final result (non-streaming path) ──────────
if (promptSent && msg.result !== undefined && !msg.method && !finished) {
const res = msg.result as Record<string, unknown> | undefined;
// Extract text from result if we haven't streamed anything yet
if (!roleEmitted && res) {
const content = extractResultText(res);
if (content) {
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [
{
index: 0,
delta: { role: "assistant", content: "" },
finish_reason: null,
},
],
})}\n\n`
);
totalText = content;
emit(
`data: ${JSON.stringify({
id: responseId,
object: "chat.completion.chunk",
created,
model,
choices: [{ index: 0, delta: { content }, finish_reason: null }],
})}\n\n`
);
}
}
const stopReason = (res?.stopReason as string) || "";
if (stopReason && stopReason !== "cancelled") {
finish();
}
}
// ── Error responses ───────────────────────────────────────────
if (msg.error) {
finish(`Devin ACP error ${msg.error.code}: ${msg.error.message}`);
return;
}
}
});
child.stderr.on("data", (chunk: Buffer) => {
log?.debug?.("DEVIN", `stderr: ${chunk.toString("utf8").slice(0, 200)}`);
});
child.on("close", (code) => {
if (!finished) {
if (code !== 0 && !spawnError) {
finish(roleEmitted ? undefined : `Devin CLI exited with code ${code}`);
} else {
finish();
}
}
});
// ── Send initialize ───────────────────────────────────────────────
sendRpc("initialize", {
protocolVersion: "0.3",
clientInfo: { name: "omniroute", version: "1.0" },
capabilities: {},
});
},
});
return {
response: new Response(sseStream, {
status: 200,
headers: {
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache",
Connection: "keep-alive",
},
}),
url: "devin://acp/stdio",
headers: {},
transformedBody: { model, promptLength: (body as Record<string, unknown>)?.messages },
};
}
}
// ─── Helpers ─────────────────────────────────────────────────────────────────
/** Try to extract text from a final ACP session/prompt result object. */
/**
* Pull display text out of an ACP `session/update` content payload, which may be
* a bare string, a single `{type:"text", text}` block, or an array of blocks.
*/
function extractChunkText(content: unknown): string {
if (typeof content === "string") return content;
if (Array.isArray(content)) return content.map((c) => extractChunkText(c)).join("");
if (content && typeof content === "object") {
const text = (content as Record<string, unknown>).text;
if (typeof text === "string") return text;
}
return "";
}
function extractResultText(result: Record<string, unknown>): string {
// Common result shapes:
// { message: { content: "..." } }
// { messages: [{ content: "..." }] }
// { content: "..." }
// { text: "..." }
if (typeof result.content === "string") return result.content;
if (typeof result.text === "string") return result.text;
const msg = result.message as Record<string, unknown> | undefined;
if (msg && typeof msg.content === "string") return msg.content;
const msgs = result.messages as Array<Record<string, unknown>> | undefined;
if (Array.isArray(msgs)) {
return msgs
.filter((m) => m.role === "assistant")
.map((m) => String(m.content || ""))
.join("\n");
}
return "";
}