veto_project_map_update
Updates the project structure map when files are created, deleted, or moved. Ensures fast codebase navigation without filesystem scans.
Instructions
Updates the project structure map for a directory. Call after creating, deleting, or moving files. The map enables fast codebase navigation without filesystem scans.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| structure | Yes | JSON string representing the directory tree. Example: {"src/":{"agents/":["coder.ts","reviewer.ts"],"router/":["index.ts"]}} | |
| tech_stack | No | Frameworks and key libraries. Example: ["TypeScript", "Node.js 22", "Express", "SQLite"]. | |
| key_modules | No | The 10–20 most important files with their roles. Example: ["src/server.ts (MCP entry point)", "src/router/index.ts (task router)"]. | |
| project_dir | Yes | Absolute path to the project root. |