AI SummaryHeuristic scoring (no AI key configured).
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "makeen — Cursor Rules" prompt rules to my project. Repository: https://github.com/msoheib/makeen Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Cursor Rules for makeen
Schema Overview
The database is designed for a comprehensive real estate management system supporting property management, tenant/owner relationships, financial transactions, maintenance tracking, document management, and accounting functions.
Project Information
• Supabase Project ID: fbabpaorcvatejkrelrf • Project Name: property-management • Region: eu-central-1 • Database Version: PostgreSQL 15.8.1.093 • Status: ACTIVE_HEALTHY • Host: db.fbabpaorcvatejkrelrf.supabase.co
Core Business Entities
• People Management - profiles, clients • Property Management - properties, property_reservations • Contract Management - contracts • Maintenance Operations - maintenance_requests, work_orders • Financial Management - vouchers, invoices, accounts, cost_centers • Communications - letters, issues • Document Management - documents • Asset Management - fixed_assets ---
1. PROFILES
Purpose: Central table for all people in the system (users, tenants, owners, employees, contractors) Columns | Column | Type | Nullable | Default | Constraints | |--------|------|----------|---------|-------------| | id | uuid | NO | gen_random_uuid() | Primary Key | | first_name | text | YES | NULL | | | last_name | text | YES | NULL | | | email | text | YES | NULL | Unique | | role | text | YES | 'tenant' | CHECK: admin, manager, owner, tenant, buyer, employee, contractor | | phone | text | YES | NULL | | | address | text | YES | NULL | | | city | text | YES | NULL | | | country | text | YES | NULL | | | nationality | text | YES | NULL | | | id_number | text | YES | NULL | | | is_foreign | boolean | YES | false | | | profile_type | text | YES | NULL | CHECK: owner, tenant, buyer, employee, admin | | status | text | YES | 'active' | CHECK: active, inactive, suspended | | created_at | timestamptz | YES | now() | | | updated_at | timestamptz | YES | now() | | Referenced By • properties.owner_id → profiles.id • contracts.tenant_id → profiles.id • maintenance_requests.tenant_id → profiles.id • work_orders.assigned_to → profiles.id • vouchers.tenant_id → profiles.id • vouchers.created_by → profiles.id • invoices.tenant_id → profiles.id • letters.sender_id → profiles.id • issues.reported_by → profiles.id • documents.uploaded_by → profiles.id ---
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts