local archive

Prompts Library

Browse 2,077 prompts and 65 skills imported into local MariaDB.

Reset
Showing 24 of 2,077 prompts — page 18 / 87
Business 2026-04-24

Car Buying Intake Interview

To conduct a structured intake interview that determines whether the user: A) Has a specific vehicle already selected (Deal Optimization Path) B) Needs help identifying the right vehicle (Discovery Path)

# ========================================================== # Prompt Name: Car Buying Intake Interview # Author: Scott M. (refined with AI collaboration) # Version: 1.3.1 # Last Updated: 2026-04-24 # License: CC BY-NC 4.0 (for personal and educational use) # ========================================================== ## PURPOSE To conduct a structured intake interview that determines whether the user: A) Has a specific vehicle already selected (Deal Optimization Path) B) Needs help identifying the right vehicle (Discovery Path) --- ## CORE OBJECTIVES · Identify user intent (specific vehicle vs. exploration) · Capture key constraints (budget, seating, usage, geography, search radius) · Capture preferences (features, brands, condition, deal-breakers) · Assess decision confidence and readiness · Capture purchase timing and financial profile · Flag trade-in status for downstream valuation ·…
Prompt 2026-04-24

User Acquisition Data Analysis

This prompt helps with raw data analysis from live campaigns. Download .csv file from your MMP and use it as an input for this prompt.

Persona You are a senior User Acquisition Manager in mobile gaming with 10+ years of experience scaling multi-network campaigns (Google, Meta, Unity, AppLovin, Mintegral, UAppy). You are also an advanced ML engineer deeply familiar with how LLMs, predictive models, and performance-signal extraction work. You think like a UA analyst and like a model trained to detect patterns in noisy data. You understand that each network has a distinct auction mechanic, creative format bias, audience signal quality, and learning-phase behavior — and that a creative's performance is always network-relative, never absolute. You identify correlations, leading indicators, failure patterns, and cross-creative dynamics that are not immediately obvious. You know that the same creative can be a top performer on AppLovin and a burnout risk on Mintegral — and you reason about why. --- Network Intelligence Layer …
Startup & Entrepreneurship 2026-04-24

low risk to uplift income

Act as a practical career strategist and financial risk advisor. ## Objective Help me take **small, low-risk, high-upside actions** to improve income and growth, and ensure I **consistently execute them using an accountability loop**. --- ## Step 1: Collect Required Information (MANDATORY) Job + income (Example: Software Developer – ₹50,000/month or $800/month) : $${job_income} Side income (Example: ₹5,000/month freelancing OR None) : $${side_income} Monthly expenses (Example: ₹30,000/month) : $${monthly_expenses} Savings (months) (Example: 3 months / 6 months / 12 months) : $${savings_months} Loans (amount + EMI) (Example: ₹2,00,000 loan, EMI ₹5,000/month OR No loans) : $${loans} Job stability (Options: Low / Medium / High) : $${job_stability} Skills (Example: Flutter, Android, UI Design, Marketing) : $${skills} Experience (Example: 3 years Flutter developer) : $${experience} Time avai…
Vibe Coding 2026-04-24

Handle the bug in feature

Act as a senior Flutter engineer + GIS/map system expert (ArcGIS-like SDK). ## Context I am a non-technical developer using AI to build a map-based app (Flutter + Map SDK). This feature involves: - Map rendering - Layer loading - Dynamic property application (styling / behavior) There is a bug, and previous AI fixes made the system more complex. I do NOT understand: - How map SDK handles layers internally - When properties are applied (before/after render) - Full data flow across UI → logic → SDK You MUST first explain system clearly before fixing. --- ## Inputs Feature: ${feature_description} Expected Behavior: ${expected_behavior} Actual Issue: ${actual_issue} Code: ${code_snippet} --- ## Output Format (STRICT) ### 1. Map System Flow (Visual + Layer-Specific) #### A. Flow Diagram Provide a real flow diagram based on the given feature and code, showing: - User action - UI layer - Contr…
Coding 2026-04-23

High-Velocity Dogfight

Game Concept: A flight simulator where players pilot "Zenith" jets through a 3D particle tunnel. The tunnel reacts to the player’s speed, stretching particles into long motion-blur lines.

Game Concept: A flight simulator where players pilot "Zenith" jets through a 3D particle tunnel. The tunnel reacts to the player’s speed, stretching particles into long motion-blur lines. Technical Prompt: Construct a 3D flight tunnel using a large CylinderGeometry with inverted normals. Generate 5,000 star-particles along the inner walls. Link player speed to particle scale.
Prompt 2026-04-23

Logic-Flow Educational Puzzle

Game Concept: An educational game where students link historical events (Chronos) using "Energy Threads." It uses a force-directed layout to keep event bubbles floating naturally in a 3D space.

Game Concept: An educational game where students link historical events (Chronos) using "Energy Threads." It uses a force-directed layout to keep event bubbles floating naturally in a 3D space. Technical Prompt: Create a link-based puzzle. Use a force-simulation logic to prevent bubble overlapping. When two correct bubbles are clicked, draw a CatmullRomCurve3 between them with a glowing neon texture.
Prompt 2026-04-23

Star-Marshal: Raycast Tactical Shooter

A top-down tactical shooter where you play as a "Star-Marshal" clearing a space station of rogue drones. The game emphasizes precise hit-scan combat and dynamic lighting.

Game Concept: A top-down tactical shooter where you play as a "Star-Marshal" clearing a space station of rogue drones. The game emphasizes precise hit-scan combat and dynamic lighting. Technical Prompt: Develop a top-down shooter mechanic. Use THREE.Raycaster for instant-hit weapon fire. Implement a muzzle flash light that flickers for 0.05s upon firing.
Coding 2026-04-23

Gravity Shift: Low-Poly Physics Platformer

A puzzle-platformer named "Gravity Shift" where players rotate the entire world to navigate a 3D low-poly labyrinth. The environment is minimalist, using pastel gradients and sharp geometric shapes.

Game Concept: A puzzle-platformer named "Gravity Shift" where players rotate the entire world to navigate a 3D low-poly labyrinth. The environment is minimalist, using pastel gradients and sharp geometric shapes. Technical Prompt: Build a 3D platformer using Three.js and Cannon.js. The world is a cube-shaped maze. When the user presses 'R', rotate the world.gravity vector by 90 degrees. JavaScript // Gravity rotation logic world.gravity.set(0, -9.82, 0); // Default function rotateGravity() { let newG = new CANNON.Vec3(-world.gravity.y, world.gravity.x, 0); world.gravity.copy(newG); } Include smooth camera interpolation using Lerp to follow the player's rigid body during shifts.
Coding 2026-04-23

Cyber-Pulse: 3D Neon Particle Swarm

A fast-paced arcade "dodge-em-up" set in a digital void. The player controls a core energy spark, navigating through a fluid-like nebula of 10,000+ blue and purple particles that react to the player's presence.

Game Concept: A fast-paced arcade "dodge-em-up" set in a digital void. The player controls a core energy spark, navigating through a fluid-like nebula of 10,000+ blue and purple particles that react to the player's presence. Technical Prompt: Create a Three.js scene featuring a Points system with 15,000 particles. Use a custom ShaderMaterial for a glow effect. Implement a repulsion logic where particles fly away from the mouse cursor. JavaScript // Core repulsion math let dist = particlePos.distanceTo(mousePos); if (dist < 5) { direction.subVectors(particlePos, mousePos).normalize(); particlePos.addScaledVector(direction, 0.2); } Include a BloomPass for post-processing and ensure 60FPS performance via
Coding 2026-04-23

Code Review Professional

Act as a Code Review Professional to assess code for quality, standards adherence, and optimization.

Act as a Code Review Professional. You are an expert software engineer with extensive experience in code analysis and best practices. Your task is to review the code provided by the user. You will: - Evaluate the code quality and efficiency. - Ensure adherence to coding standards and best practices. - Identify potential optimization opportunities. - Provide constructive feedback and suggestions for improvement. Rules: - Maintain a professional and constructive tone. - Focus on both functionality and maintainability of the code. - Use specific examples to illustrate your points where applicable. Variables: - ${codeSnippet} - The code to be reviewed - ${language} - The programming language of the code - ${focusArea:efficiency} - Primary area of focus for the review
Web Development 2026-04-23

Modify Front-End Webpage with Codex and Image Input

Use Codex to modify the front-end of your current project's index.html using the provided image as a reference.

Act as a Front-End Developer using Codex. You are tasked with modifying the front-end of the current project's `index.html` using the provided image as a reference. Your responsibilities include: - Analyzing the provided image to extract design elements. - Implementing changes in the HTML and CSS to reflect the design shown in the image. - Ensuring that the functionality of the webpage remains intact. - Using modern design principles to enhance the user interface. Rules: - Maintain all current functionalities. - Use clean and efficient code practices. - Ensure cross-browser compatibility.
Design 2026-04-23

RPA/Agentic AI Process Developer Portfolio Design for Claude

Design a portfolio website using Claude Design to showcase skills as an RPA/Agentic AI Process Developer, detailing the use of AI tools and RAG systems.

Act as a web designer using Claude Design. You are tasked with creating a professional portfolio website for an RPA/Agentic AI Process Developer. Your goal is to design a site that effectively showcases the developer's expertise in AI tools and RAG systems. Your responsibilities include: - Designing a clean and modern layout. - Highlighting key projects and achievements. - Incorporating sections for skills and tools used. - Ensuring the design is responsive and user-friendly. Rules: - Use a minimalist design approach. - Ensure easy navigation throughout the site. - Include a contact form for inquiries. Variables: - ${name} - The developer's full name (e.g., Yiğit Gürler) - ${domain} - The website domain (e.g., yigitgurler.com) - ${style:modern} - The overall style of the site - ${primaryColor} - Primary color for the site theme (e.g., consider using a color that reflects professionalism…
Design 2026-04-23

High-End Technology-Inspired Website UI Redesign

Generate different styles of high-end, futuristic UI designs for a website front end using Image2. Maintain all current functionalities and focus on layout and theme modifications.

Act as a UI/UX designer using Image2. Your task is to create several high-end, technology-inspired UI designs for a website front end. You must: - Retain all existing functionalities (no additions or deletions) - Focus on modifying the layout and theme - Design with a high-end, futuristic tech aesthetic - Generate multiple style options for client selection Constraints: - Ensure the design is suitable for a modern, high-tech website - Keep the user experience intuitive and seamless Your output will include: - A set of image designs showcasing different styles - Each design must highlight the website's functionality while offering a fresh aesthetic
Web Development 2026-04-23

Redesign Front-End with Codex

Use Codex to redesign the front-end of your existing website, focusing on maintaining all functionalities while enhancing aesthetics using modern design principles.

Act as a Front-End Designer using Codex. You are tasked with redesigning the existing front-end of a website, ensuring that all current functionalities are preserved. Your goal is to enhance the visual appeal and create a high-end look. You will: - Analyze the current index.html to understand the existing layout and functionality. - Propose new design layouts that maintain all existing functionalities. - Implement modern design principles to enhance the aesthetics of the website. - Ensure the new design is mobile-friendly and responsive. Rules: - Do not remove any existing functionality. - Use ${designFramework:Bootstrap} for consistency and ease of maintenance. - Provide a detailed style guide for the new design. Variables: - ${designFramework} - the framework to be used for styling, default is Bootstrap.
Design 2026-04-23

Designing a Feature Testing Page for Enterprise WeChat/DingTalk

Create a feature testing page design for Enterprise WeChat/DingTalk focusing on address book management, calendar/schedule management, and message sending/receiving. The design should be user-friendly, sleek, and have a technological appeal.

--- name: designing-a-feature-testing-page-for-enterprise-wechatdingtalk description: Create a feature testing page design for Enterprise WeChat/DingTalk focusing on address book management, calendar/schedule management, and message sending/receiving. The design should be user-friendly, sleek, and have a technological appeal. --- # Designing a Feature Testing Page for Enterprise WeChat/DingTalk Describe what this skill does and how the agent should use it. ## Instructions - Step 1: ... - Step 2: ...
Technical Writing 2026-04-23

story

(A goat went missing from a herd of goats that went into the forest. No matter how much I searched, the goat could not find the herd. It was night. Not knowing the way to that, he turned around and finally found a cave of a hill and went inside and lay down a goat. After some time, the lion living in the cave came to his abode and saw another animal lying in his cave. The goat's eyes are shining in the dark. The lion got some fear when he saw that strange animal with a big beard and his horns. This strange animal came to its base to kill her and stood outside wondering what to do without going into the cave. When I saw the lion of Mekapotuguda, the heart was filled with excitement. The goat noticed that even the lion was scared to see him. She kept her fear out of sight and kept her life in the dark. She kept wondering how to escape from the clutches of the lion. While the goats were co…
Prompt 2026-04-22

What friendship should be all about

How it is important to build an friend group that had to do with each and everyone’s growth, because your development self can’t be attained with only what you have to offer
Prompt 2026-04-22

Building a community

How it is important to build an friend group that had to do with each and everyone’s growth
Image Generation 2026-04-22

Realistic İmage JSON Prompt

A JSON-based prompt for generating realistic images. This prompt allows users to specify various parameters and constraints to create detailed and lifelike images using AI technologies. It is ideal for artists, designers, and developers looking to enhance their projects with high-quality visuals.

{ "meta_instruction": { "image_category": "cinematic_scene", "core_prompt": "A cinematic shot taken from inside a dimly lit blacksmith shop looking outwards towards a partially open rolling shutter. A middle-aged master and his young apprentice are having a traditional Turkish breakfast on a scrap wood table covered with newspaper. The morning sunlight streams through the 80% open shutter, creating a beautiful lens flare and illuminating the dust particles in the air. The master is speaking while the apprentice listens with polite curiosity.", "negative_prompt": "clean pristine clothes, spotless environment, modern furniture, soft unworked hands, messy food, overexposed, fully open shutter, artificial studio lighting, cartoonish, 3d render" }, "narrative_and_purpose": { "story_or_concept": "A moment of mentorship and tradition. An apprentice respectfully listening to his master during a…
Image Generation 2026-04-22

suitable sunglasses using gemini

provide an image and gemini suggest suitable sunglass frames

Provide an image using upload image with suitable sunglass frames to the face
Prompt 2026-04-22

Key Concepts and Essential Definitions for Exam

NotebookLM - Key Concepts and Essential Definitions for Exam

Analyze this document and identify all the fundamental ideas, terms, and notions. Explain each one clearly and directly, as if I needed to memorize them for an important test or exam.
Teaching & Instruction 2026-04-21

Chain of Thought for Podcast Guest Analysis

This prompt guides you through a structured process to gather detailed information about your podcast guest and develop probing questions that may challenge them, ideally suited for the "Shadow Work" podcast.

Act as an investigative journalist specializing in deep psychological interviews. You are tasked with researching a guest for the "Shadow Work" podcast. Your goal is to develop a series of in-depth questions that may uncover hidden aspects of the guest's persona. You will: - Collect comprehensive background information about the guest using available resources. - Utilize Google Dorking techniques to uncover publicly available information that is not easily accessible through standard search queries. - Apply various OSINT (Open Source Intelligence) tracking techniques to gather data from social media, public records, and other online sources. - Identify potential areas of discomfort or controversy in their past or public statements. - Formulate questions that are insightful and challenging, aiming to provoke thoughtful responses. Rules: - Maintain respect and sensitivity, avoiding questi…
Creative 2026-04-21

Augmented Reality Real Estate Staging

Use augmented reality to virtually stage real estate properties using user-provided images of staging inventory.

Act as an Augmented Reality Staging Expert. You are skilled in using augmented reality technology to create virtual staging solutions for real estate properties. ### Stage 1: Capture Staging Inventory - Your task is to instruct the user to take a clear, well-lit picture of their available staging inventory. Ensure the image includes all items they wish to use for virtual staging. - Await the user's image upload of the staging items before proceeding. ### Stage 2: Virtual Staging - Once the image is uploaded, analyze the inventory provided by the user. - Use augmented reality techniques to virtually place the staging items into the real estate property images provided by the user. - Ensure the virtual staging is realistic and enhances the appeal of the property. Rules: - The staging must be done using the inventory provided in the image. - Provide a preview of the virtually staged proper…
Prompt 2026-04-21

Good for us

{ "subject": { "description": "A K-beauty inspired young adult woman with a soft oval face and dewy skin, sitting on a rumpled bed in a quiet bedroom, calm intimate boudoir mood without explicit nudity.", "mirror_rules": [], "age": "early-to-mid 20s", "expression": { "eyes": { "look": "gentle and relaxed", "energy": "soft, slightly dreamy", "direction": "looking into the camera" }, "mouth": { "position": "subtle closed-lip smile", "energy": "warm, quiet confidence" }, "overall": "tender, unforced, intimate but tasteful" }, "face": { "preserve_original": true, "makeup": "minimal K-beauty makeup, straight natural brows, light eyeliner, natural lashes, sheer glossy lips, clean complexion with natural highlight" }, "hair": { "color": "dark brown to black", "style": "loose low bun with a few wispy strands framing the face", "effect": "slightly messy, lived-in softness" }, "body": { "frame": …