Context Files

Tuvo Code can read special markdown files to understand your project better. These files provide context about your codebase, coding standards, and project-specific instructions.

AGENTS.md

Place an AGENTS.md file in your project root to provide general instructions and context:

# AGENTS.md ## Project Overview This is a Next.js e-commerce application using TypeScript and Tailwind CSS. ## Coding Standards - Use functional components with hooks - Prefer TypeScript interfaces over types - Use absolute imports with @/ prefix ## Common Commands - `npm run dev` - Start development server - `npm run test` - Run test suite - `npm run build` - Build for production

TUVO.md

Place a TUVO.md file in your project root for Tuvo-specific instructions:

# TUVO.md ## Preferred Approach When refactoring, always: 1. Run tests before making changes 2. Make incremental changes 3. Run tests after each change 4. Commit with conventional commit messages ## Files to Avoid - `legacy/` directory - Do not modify - `generated/` directory - Auto-generated code