File size: 12,424 Bytes
2b64d42 | 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 | #!/usr/bin/env node
/**
* CLI Agent Simulator β mimics Claude Code behavior against WindsurfAPI.
*
* Sends multi-turn conversations with tool calls through the proxy,
* verifying streaming, tool emulation, context retention, and response quality.
* Generates structured JSONL logs for demonstration.
*
* Usage:
* node scripts/cli-agent-sim.js [--base-url http://localhost:3003] [--api-key sk-xxx] [--model claude-4.5-sonnet]
*/
import https from 'https';
import http from 'http';
import { writeFileSync, mkdirSync, appendFileSync } from 'fs';
import { join, dirname } from 'path';
import { fileURLToPath } from 'url';
const __dirname = dirname(fileURLToPath(import.meta.url));
const LOG_DIR = join(__dirname, '..', 'logs', 'agent-sim');
mkdirSync(LOG_DIR, { recursive: true });
const args = process.argv.slice(2);
function getArg(name, fallback) {
const idx = args.indexOf(`--${name}`);
return idx !== -1 && args[idx + 1] ? args[idx + 1] : fallback;
}
const BASE_URL = getArg('base-url', 'http://localhost:3003');
const API_KEY = getArg('api-key', 'sk-test-local-dev');
const MODEL = getArg('model', 'gpt-4o-mini');
const LOG_FILE = join(LOG_DIR, `sim-${new Date().toISOString().replace(/[:.]/g, '-')}.jsonl`);
function logEntry(entry) {
const line = JSON.stringify({ ts: new Date().toISOString(), ...entry });
appendFileSync(LOG_FILE, line + '\n');
const icon = entry.type === 'error' ? 'β' : entry.type === 'response' ? 'β' : 'β';
console.log(` ${icon} [${entry.type}] ${entry.summary || ''}`);
}
async function chatCompletion(messages, opts = {}) {
const body = {
model: MODEL,
messages,
stream: opts.stream ?? true,
...(opts.tools ? { tools: opts.tools } : {}),
};
const url = new URL('/v1/chat/completions', BASE_URL);
const isHttps = url.protocol === 'https:';
const mod = isHttps ? https : http;
return new Promise((resolve, reject) => {
const req = mod.request(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${API_KEY}`,
},
}, (res) => {
if (!opts.stream) {
const chunks = [];
res.on('data', c => chunks.push(c));
res.on('end', () => {
try {
const data = JSON.parse(Buffer.concat(chunks).toString());
resolve({ status: res.statusCode, data, headers: res.headers });
} catch (e) { reject(e); }
});
return;
}
let text = '';
let thinking = '';
let toolCalls = [];
let usage = null;
let finishReason = null;
let lineBuf = '';
function processLine(line) {
if (!line.startsWith('data: ')) return;
const payload = line.slice(6);
if (payload === '[DONE]') return;
try {
const parsed = JSON.parse(payload);
const delta = parsed.choices?.[0]?.delta;
if (delta?.content) text += delta.content;
if (delta?.reasoning_content) thinking += delta.reasoning_content;
if (delta?.tool_calls) {
for (const tc of delta.tool_calls) {
if (!toolCalls[tc.index]) toolCalls[tc.index] = { id: '', name: '', arguments: '' };
if (tc.id) toolCalls[tc.index].id = tc.id;
if (tc.function?.name) toolCalls[tc.index].name = tc.function.name;
if (tc.function?.arguments) toolCalls[tc.index].arguments += tc.function.arguments;
}
}
if (parsed.choices?.[0]?.finish_reason) finishReason = parsed.choices[0].finish_reason;
if (parsed.usage) usage = parsed.usage;
} catch {}
}
res.on('data', (chunk) => {
lineBuf += chunk.toString();
const lines = lineBuf.split('\n');
lineBuf = lines.pop();
for (const line of lines) {
const trimmed = line.trim();
if (trimmed) processLine(trimmed);
}
});
res.on('end', () => {
for (const line of lineBuf.split('\n')) {
const trimmed = line.trim();
if (trimmed) processLine(trimmed);
}
resolve({
status: res.statusCode,
text,
thinking: thinking || null,
toolCalls: toolCalls.filter(Boolean),
finishReason,
usage,
headers: res.headers,
});
});
res.on('error', (e) => {
reject(Object.assign(e, { _source: 'res.error' }));
});
});
req.on('error', (e) => {
reject(Object.assign(e, { _source: 'req.error' }));
});
req.write(JSON.stringify(body));
req.end();
});
}
// ββ Test Scenarios ββββββββββββββββββββββββββββββββββ
async function testBasicChat() {
logEntry({ type: 'test', summary: 'Basic chat β single turn' });
const start = Date.now();
const resp = await chatCompletion([
{ role: 'user', content: 'Reply with exactly: "Hello from WindsurfAPI". Nothing else.' },
], { stream: false });
const elapsed = Date.now() - start;
const text = resp.data?.choices?.[0]?.message?.content || resp.text || '';
logEntry({
type: 'response', summary: `${text.slice(0, 80)} (${elapsed}ms)`,
model: MODEL, elapsed, textLen: text.length,
usage: resp.data?.usage || resp.usage,
});
return { ...resp, text };
}
async function testMultiTurn() {
logEntry({ type: 'test', summary: 'Multi-turn context retention' });
const messages = [
{ role: 'user', content: 'My name is TestUser42. Remember this.' },
];
const r1 = await chatCompletion(messages, { stream: false });
const r1text = r1.data?.choices?.[0]?.message?.content || '';
logEntry({ type: 'response', summary: `Turn 1: ${r1text.slice(0, 60)}` });
messages.push({ role: 'assistant', content: r1text });
messages.push({ role: 'user', content: 'What is my name? Reply with just the name.' });
const r2 = await chatCompletion(messages, { stream: false });
const r2text = r2.data?.choices?.[0]?.message?.content || '';
const remembered = r2text.includes('TestUser42');
logEntry({
type: 'response',
summary: `Turn 2: ${r2text.slice(0, 60)} β context ${remembered ? 'RETAINED' : 'LOST'}`,
contextRetained: remembered,
});
return remembered;
}
async function testToolCalls() {
logEntry({ type: 'test', summary: 'Tool call emulation' });
const tools = [{
type: 'function',
function: {
name: 'read_file',
description: 'Read the contents of a file at the given path',
parameters: {
type: 'object',
properties: {
path: { type: 'string', description: 'File path to read' },
},
required: ['path'],
},
},
}];
const resp = await chatCompletion([
{ role: 'user', content: 'Read the file at ./package.json using the read_file tool.' },
], { tools, stream: false });
const msg = resp.data?.choices?.[0]?.message;
const tcs = msg?.tool_calls || [];
const hasToolCall = tcs.length > 0 || resp.data?.choices?.[0]?.finish_reason === 'tool_calls';
logEntry({
type: 'response',
summary: `Tool calls: ${tcs.length}, finish=${resp.data?.choices?.[0]?.finish_reason}`,
toolCalls: tcs.map(tc => ({ name: tc.function?.name, args: tc.function?.arguments?.slice(0, 100) })),
hasToolCall,
});
return hasToolCall;
}
async function testNonStream() {
logEntry({ type: 'test', summary: 'Non-streaming response' });
const start = Date.now();
const resp = await chatCompletion([
{ role: 'user', content: 'Say "non-stream OK" in 3 words or less.' },
], { stream: false });
const elapsed = Date.now() - start;
const text = resp.data?.choices?.[0]?.message?.content || '';
logEntry({
type: 'response', summary: `${text.slice(0, 60)} (${elapsed}ms)`,
elapsed, status: resp.status,
});
return resp.status === 200;
}
async function testAnthropicProtocol() {
logEntry({ type: 'test', summary: 'Anthropic /v1/messages protocol' });
const url = new URL('/v1/messages', BASE_URL);
const mod = url.protocol === 'https:' ? https : http;
const body = {
model: MODEL,
max_tokens: 100,
messages: [{ role: 'user', content: 'Say "anthropic OK".' }],
};
return new Promise((resolve) => {
const req = mod.request(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': API_KEY,
'anthropic-version': '2023-06-01',
},
}, (res) => {
const chunks = [];
res.on('data', c => chunks.push(c));
res.on('end', () => {
try {
const data = JSON.parse(Buffer.concat(chunks).toString());
const text = data.content?.[0]?.text || data.error?.message || '';
logEntry({
type: 'response',
summary: `Anthropic: ${text.slice(0, 60)} (status=${res.statusCode})`,
status: res.statusCode,
});
resolve(res.statusCode === 200);
} catch (e) {
logEntry({ type: 'error', summary: `Anthropic parse error: ${e.message}` });
resolve(false);
}
});
});
req.on('error', (e) => {
logEntry({ type: 'error', summary: `Anthropic: ${e.message}` });
resolve(false);
});
req.write(JSON.stringify(body));
req.end();
});
}
async function testProjectWriting() {
logEntry({ type: 'test', summary: 'Project writing simulation β ask model to write a Python script' });
const resp = await chatCompletion([
{ role: 'system', content: 'You are a senior Python developer. Write clean, production-ready code.' },
{ role: 'user', content: 'Write a Python function called `fibonacci(n)` that returns the nth Fibonacci number using memoization. Include type hints and a docstring. Output ONLY the code, no explanation.' },
], { stream: false });
const text = resp.data?.choices?.[0]?.message?.content || '';
const hasPython = text.includes('def fibonacci') || text.includes('fibonacci');
logEntry({
type: 'response',
summary: `Code gen: ${text.length} chars, has_fibonacci=${hasPython}`,
textLen: text.length,
hasPython,
codePreview: text.slice(0, 200),
});
return hasPython;
}
// ββ Main ββββββββββββββββββββββββββββββββββ
async function main() {
console.log(`\n WindsurfAPI CLI Agent Simulator`);
console.log(` Base URL: ${BASE_URL}`);
console.log(` Model: ${MODEL}`);
console.log(` Log file: ${LOG_FILE}\n`);
// Preflight: check server health
try {
const healthResp = await new Promise((resolve, reject) => {
const url = new URL('/health', BASE_URL);
const mod = url.protocol === 'https:' ? https : http;
mod.get(url, (res) => {
const chunks = [];
res.on('data', c => chunks.push(c));
res.on('end', () => resolve(JSON.parse(Buffer.concat(chunks).toString())));
}).on('error', reject);
});
console.log(` Server: v${healthResp.version} accounts=${healthResp.accounts?.active || 0}`);
if (!healthResp.accounts?.active) {
console.log(' β No active accounts β add accounts first via /auth/login or /dashboard');
process.exit(1);
}
} catch (e) {
console.log(` β Cannot reach server: ${e.message}`);
process.exit(1);
}
logEntry({ type: 'start', summary: `Simulation start β model=${MODEL} base=${BASE_URL}` });
const results = {};
const tests = [
['basic_chat', testBasicChat],
['multi_turn', testMultiTurn],
['tool_calls', testToolCalls],
['non_stream', testNonStream],
['anthropic', testAnthropicProtocol],
['project_writing', testProjectWriting],
];
for (const [name, fn] of tests) {
try {
const result = await fn();
results[name] = result ? 'PASS' : 'FAIL';
} catch (err) {
logEntry({ type: 'error', summary: `${name}: ${err.message}` });
results[name] = 'ERROR';
}
}
console.log('\n ββ Results ββ');
for (const [name, status] of Object.entries(results)) {
const icon = status === 'PASS' ? 'β' : status === 'FAIL' ? 'β' : '!';
console.log(` ${icon} ${name}: ${status}`);
}
logEntry({ type: 'end', summary: 'Simulation complete', results });
console.log(`\n Full log: ${LOG_FILE}\n`);
}
main().catch(err => {
console.error('Fatal:', err.message);
process.exit(1);
});
|