Pick your stack, get your rules
Select your language and framework — your rules file is ready in seconds.
From zero to agent rules in 60 seconds
Pick your stack
Select your language and framework. TypeScript, Python, Go, Rust, and 40+ more.
Customize your rules
Browse 10,000+ community-contributed rules. Pick what fits your style, skip the rest.
Export to any agent
One click to .cursorrules, CLAUDE.md, copilot-instructions.md, .windsurfrules, and more.
The Difference Rules Make
Without rules, AI writes generic code. With your rules, it matches your stack, conventions, and patterns.
- Uses any — no type safety
- Raw SQL query strings
- useEffect for data fetching
- Inline styles, no components
- Full TypeScript types
- Type-safe ORM queries
- React Query with caching
- Project UI components
// AI generates generic codefunction getUsers(db: any) {var result = db.query("SELECT * FROM users")return result}export default function UserList() {const [users, setUsers] = useState([])useEffect(() => {getUsers(db).then(setUsers)}, [])return users.map(u =><div style={{padding: 16}}>{u.name}</div>)}
// AI follows your project conventionsasync function getUsers(): Promise<User[]> {return db.select().from(users).orderBy(users.name)}export function UserList() {const { data } = useQuery({queryKey: ["users"],queryFn: getUsers,})return (<Card>{data?.map(user =><UserRow key={user.id} user={user} />)}</Card>)}
Rules Built from Real Projects
See example rules generated for popular stacks — curated from 1000+ community-contributed rules files.
interface for object shapes, type for unions and intersectionsconst by default; use let only when reassignment is neededany — use unknown with type guards when the type is truly unknownsatisfies operator for type validation without wideningas const assertions for literal tuples and objects that shouldn't widenFrequently Asked Questions
Quick answers to common questions about AI coding assistant configuration.
Cursor Rules vs CLAUDE.md vs Copilot Instructions — Which to Use?
Side-by-side comparison of every AI coding assistant's rules format with a decision guide.
GitHub Copilot Instructions: Complete Setup Guide
How to use .github/copilot-instructions.md to customize Copilot for your repository.
AI Coding Speed Techniques: 10 Methods to Code Faster
Proven techniques to improve coding speed with AI assistants — from rules to workflow.