What problem does it solve? Developers and AI agents often waste tokens and time recreating files just to relocate them, and projects frequently accumulate structural violations like React components in backend folders or business logic stuffed into controllers. This Skill enforces efficient file operations and flags architecture violations before they become technical debt. ## Core Features & Use Cases - Efficient File Relocation: Mandates using bash mv and cp commands instead of wasteful read-write-delete cycles when moving or duplicating files. - Project Structure Standards: Defines a canonical frontend/backend/shared/docs layout with clear ownership for components, services, models, routes, and types. - Violation Detection: Identifies eight red flags including frontend code in backend directories, API routes mixed with UI, scattered utilities, and god files lacking separation of concerns. - Use Case: When reorganizing a monorepo, the Skill ensures every file move uses mv with mkdir -p, and immediately flags a database query found inside a React component file, suggesting the correct backend service location. ## Quick Start Ask the AI to move the utils folder from frontend/src to shared/ and flag any files that violate the frontend/backend separation rules.