File References
You can reference specific files in your prompts using the @ syntax. This tells Tuvo to focus on those files when responding to your request.
Basic Syntax
> @src/auth/login.ts explain this authentication logic
> @package.json @tsconfig.json review the project setup
> @src/**/*.ts refactor all TypeScript filesWildcards
Use wildcards to reference multiple files:
- •
@src/**/*.ts— All TypeScript files in src directory - •
@*.md— All markdown files in current directory - •
@tests/**/*.test.ts— All test files
Examples
# Refactor a specific file
> @src/utils/helpers.ts refactor this to use modern JavaScript
# Review multiple files
> @src/auth/*.ts @src/middleware/*.ts review authentication implementation
# Analyze test coverage
> @tests/**/*.test.ts analyze test coverage and suggest improvements