# Roadcrew Rules

These modular rule files guide development workflow, code standards, and best practices.

## Rule Files

| File | Purpose |
|------|---------|
| **00-quick-start.mdc** | Navigation & entry points - Start here when beginning work |
| **01-workflow.mdc** | Commands, templates, validation - Workflow patterns and checkpoints |
| **02-code-standards.mdc** | Style guide, type safety, patterns - Code quality standards |
| **03-file-organization.mdc** | Directory structure, temp vs permanent files - Project organization |
| **04-classification.mdc** | TaskProfile system - Issue complexity and assignment |

## How Rules Are Used

These rules are automatically installed into `.cursor/rules/` when you run `node .roadcrew/install.js`.

They provide context and guidance for Cursor AI assistant on:
- How to navigate the project
- Workflow patterns to follow
- Code standards to maintain
- File organization conventions
- Issue classification system

## Modular Design

Each `.mdc` file focuses on a specific concern and is loaded contextually by Cursor, rather than as a single monolithic file. This allows:
- Faster loading (load only what's relevant)
- Easier updates (modify specific rules without touching others)
- Better organization (clear separation of concerns)
- Reduced cognitive load (focused context)
