Supported Configuration Files
Tembo supports multiple file names for compatibility with other AI coding agents. Place one of these files in your repository root:tembo.md(recommended)AGENTS.mdCLAUDE.md.cursorrules.windsurfrules.clinerules.rulesAGENT.md.github/copilot-instructions.md
Tembo will use the first file it finds from this list, so you only need one configuration file per repository.
Creating Your First Rule File
Create a file namedtembo.md in your repository root with project context. Here’s a minimal example:
What to Include
Essential:- Build/dev commands — How to build, test, and run the project
- Code style — Naming conventions, formatting rules, standards
- Testing — Frameworks, expectations, coverage targets
- Architecture — Project structure, design patterns, where code belongs
- Common pitfalls — Known issues, gotchas to avoid
- Performance — Sensitive areas, optimization requirements
- Security — Auth patterns, data handling rules
- Integrations — External services, API details
Best Practices
Keep It Focused
Rule files become part of Tembo’s context, so keep them concise and relevant:- Focus on information that impacts code generation
- Remove outdated or obsolete information
- Use clear, direct language
- Organize with headings for easy scanning
Use Emphasis for Important Points
Highlight critical information that Tembo should always follow:Update Regularly
Keep your rule file current as your project evolves:- Update when conventions change
- Add new patterns as they emerge
- Remove deprecated guidelines
- Review quarterly to ensure accuracy
How Tembo Uses Rule Files
When Tembo receives an issue assignment:- Loads the rule file from your repository root
- Includes the content as part of its context
- Follows the guidelines when generating code
- Applies conventions throughout the solution
Next Steps
After configuring your repository:- Test it by assigning a small issue to Tembo
- Review the generated pull request for adherence to your guidelines
- Refine your rule file based on results
- Use the Feedback Loop to iterate on Tembo’s work