This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Use auto-fast model by default, add --model flag

Speeds up island:analyze significantly. Override with --model=claude-sonnet-4-20250514 etc.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>

author
nandi
co-author
Letta Code
date (May 15, 2026, 6:10 AM UTC) commit ccf0dce8 parent 41b1779d
+4 -1
+4 -1
src/island-analyze.ts
··· 252 252 const analyzeAll = args.includes('--all'); 253 253 const minSizeArg = args.find((a) => a.startsWith('--min-size=')); 254 254 const minSize = minSizeArg ? Number(minSizeArg.split('=')[1]) : 3; 255 + const modelArg = args.find((a) => a.startsWith('--model=')); 256 + const model = modelArg ? modelArg.split('=')[1] : 'auto-fast'; 255 257 256 258 const targetId = args.find((a) => !a.startsWith('--')); 257 259 258 260 if (!targetId && !analyzeAll) { 259 - console.error('Usage: bun island:analyze <island-id> [--force] [--json]'); 261 + console.error('Usage: bun island:analyze <island-id> [--force] [--json] [--model=auto-fast]'); 260 262 console.error(' bun island:analyze --all [--min-size 5] [--force] [--json]'); 261 263 process.exit(1); 262 264 } ··· 293 295 294 296 // Create agent 295 297 const agentId = await createAgent({ 298 + model, 296 299 persona: `You are a research analyst that synthesizes connected components (islands) from a knowledge graph into structured analysis records. 297 300 298 301 Given an island — a cluster of URLs connected by semantic edges — you produce: