Skip to content

Instantly share code, notes, and snippets.

View marvkr's full-sized avatar

Marvin Kaunda marvkr

View GitHub Profile
@marvkr
marvkr / default.md
Created July 8, 2025 21:49 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@marvkr
marvkr / ListingForm.tsx
Created January 20, 2024 22:22
3 Errors Type, Ctr+F: 'Defaultvalue', 'res' & 'Input'
"use client";
import {
Listing,
NewListingParams,
insertListingParams,
} from "@/lib/db/schema/listings";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
---
import { buttonVariants } from "./ui/Button";
import { cn } from "@/lib/utils";
import brandDesignImage from "@/images/brandDesignImage.webp"
import onboardingImage from "@/images/onboardingImage.webp";
import uiDesignImage from "@/images/uiDesignImage.webp";
import { Image } from 'astro:assets';
---