codegraph_entry_points
Identify main functions, HTTP handlers, CLI commands, and event handlers in your codebase to locate where external infrastructure invokes your code.
Instructions
Find entry points in the codebase — main functions, HTTP handlers, CLI commands, event handlers. An entry point is called by external infrastructure (HTTP server, CLI framework, event loop) rather than by other code. Inspired by codegraph-ai's find_entry_points.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of entry points to return. | |
| team_id | No | The team ID for isolation. | |
| repo_path | Yes | The repository root path (absolute). |