trace_feature_flow
Trace a feature's execution flow across the codebase by keyword. Discovers related files, classes, and functions ordered by dependency chain, enabling AI to identify which files to read for feature work.
Instructions
Trace the complete flow of a feature through the codebase. Given a keyword (e.g. 'login', 'payment', 'crawl'), finds all related files, classes, and functions, then orders them by dependency chain to show the execution flow. This helps AI understand which files to read when working on a feature.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | Project name or path | |
| keyword | Yes | Feature keyword to trace (e.g. 'auth', 'crawl', 'payment', 'upload') | |
| depth | No | How many hops to follow from matching nodes (default: 2) |