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 "rent-yetu-next15-aug3025 — Copilot Instructions" prompt rules to my project. Repository: https://github.com/gerkim62/rent-yetu-next15-aug3025 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
A most comprehensive Rental Property management system
📂 Project Structure
• features/ — each feature lives here • components/ → React components for this feature • schemas/ → Zod schemas (+ inferred types when needed) • server/ → server-only functions (not actions) • 🔒 only callable from server code • usually for fetching data • actions/ → safe client-callable actions • update or create resources from client components • search-params/ → manages URL search params with nuqs • services/ → for services that are not tied to a specific feature • shared/ → reusable, shared features across the app cache if the calling page uses changed resource, purgecache with immediate mode. for other cache purges, use swr mode as it is not access by caller page prefer swr mode unless caller page uses the changed resource ---
⚡ Actions vs Server Functions
• ✅ Actions • live in features/<name>/actions • created + called using safe-action-client from /lib/safe-action • called from client • ✅ Server Functions • live in features/<name>/server • created using safe action (for validation & auth) • ❌ NOT called via safe-action-client • only used in server code ---
🔒 Safe Action Rules
• All actions and server functions must use Zod validation • Must pass through auth middleware when required • No bypassing validation or type safety ---
🎨 UI Rules
• ✅ Prefer ShadCN components over custom ones • ✅ Use only ShadCN color classnames • ❌ No arbitrary Tailwind classes ---
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