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 "ghosthands — Cursor Rules" prompt rules to my project. Repository: https://github.com/thbueno/ghosthands 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
type without friction
Directory Organization
` ├── app/ # Next.js App Router │ ├── fonts/ # Custom font files and configuration │ ├── about/ # About page route │ ├── works/ # Works showcase routes │ │ └── [id]/ # Dynamic work detail pages │ ├── globals.css # Global styles and CSS variables │ ├── layout.tsx # Root layout component │ └── page.tsx # Home page component ├── components/ # Reusable React components │ ├── ui/ # shadcn/ui components (auto-generated) │ └── *.tsx # Custom application components ├── hooks/ # Custom React hooks ├── lib/ # Utility functions and configurations ├── public/ # Static assets │ └── images/ # Image assets organized by category └── styles/ # Additional stylesheets `
File Naming Conventions
• Components: kebab-case (e.g., navbar.tsx, lets-talk-button.tsx) • Pages: lowercase with hyphens for routes (e.g., about/page.tsx) • Utilities: kebab-case (e.g., utils.ts) • Types: PascalCase interfaces/types • Constants: UPPER_SNAKE_CASE
Import Patterns
• Use @/ path alias for all internal imports • Components from @/components/ • UI components from @/components/ui/ • Utilities from @/lib/ • Hooks from @/hooks/
Component Structure
• All components use TypeScript with proper typing • Client components marked with 'use client' directive • Consistent export pattern: named exports preferred • Props interfaces defined inline or separately for complex components
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