simulate_move
Simulate moving a file to get a complete migration plan including import updates. Use before any file rename or refactor to avoid broken imports.
Instructions
Simulate moving a file from one path to another. Returns which files need import updates and what the new import strings should be. Use this before any file rename or refactor to get a complete migration plan. Requires a prior reindex. No API call needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | Current relative path of the file (from project root, e.g., "src/utils/helpers.ts") | |
| to | Yes | Target relative path after move (e.g., "src/shared/utils/helpers.ts") |