13 lines
395 B
TypeScript
13 lines
395 B
TypeScript
import { registerAgent, pick } from './registry';
|
|
|
|
registerAgent({
|
|
name: 'ImportAnalyzer',
|
|
description: 'Reads an imported codebase end-to-end and produces CODEBASE_MAP.md and MIGRATION_PLAN.md',
|
|
model: 'B',
|
|
promptId: 'import-analyzer',
|
|
tools: pick([
|
|
'read_file', 'write_file', 'list_directory', 'find_files', 'search_code',
|
|
'git_commit_and_push',
|
|
])
|
|
});
|