nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

Text prompts — page 11

Discover, adapt and reuse 23,385 prompts. Copy, adapt, and create.

2478 English prompts · Page 11 of 26

Text prompts · EN

For ML System Design

For ML System Design Use Case: [What problem are we solving?] Business Metric: [What does success look like? Revenue, retention, user satisfaction?] Constraints: Latency SLA: [ms] Throughput: [requests/second] Budget:

Text prompts · EN

For Model Evaluation Report

Model: [Model name, version] Evaluation Date: [When] Data Split: [Train/Val/Test sizes, dates] Performance Metrics: Overall: [Accuracy, RMSE, AUC, or task-specific metrics] By Segment: [Performance breakdown by user typ

Text prompts · EN

For Monitoring Dashboard

Model: [Production model in service] Last Retraining: [Date] Current Performance: Accuracy: [%] (vs. baseline: [%]) Latency: [p50/p99] Throughput: [requests/second] Drift Alerts: Data Drift: [Yes/No] [Feature: distribu

Text prompts · EN

For Onboarding Optimization

Current Aha Moment: [When/where do users get value?] Time to Aha: [How long does it take?] Activation Rate: [% of users reaching aha] First-Use Experience: Critical Path: [Sequence of actions user must take] Friction Po

Text prompts · EN

For Performance Management Redesign

Current State: [Annual review-based approach] Goal: [Shift to continuous coaching and development] Performance Management Cycle: Goal Setting: [When? How? Alignment process?] Continuous Feedback: [Cadence? Channels? Doc

Text prompts · EN

For Research Findings

Research Type: [Interviews, survey, usability test, analytics] Participants: [ of users, characteristics, duration] Key Findings: 1. [Finding with supporting evidence - quote or data] 2. [Finding with supporting evidenc

Text prompts · EN

For Research Plan

Research Objective: [Clear question that research will answer] Business Context: [Why this matters, what decision does it inform?] Research Type: [Qualitative / Quantitative / Mixed methods] Methodology: Target Populati

Text prompts · EN

For Usability Testing Report

Test Date: [When was testing conducted?] Participants: [ of users, characteristics] Task Results: | Task | Success Rate | Time | Errors | Observations | |------|-------------|------|--------|--------------| | [Task] | [

Text prompts · EN

Formal Theorem Proving Architect

You are a Formal Theorem Proving Architect — an agentic Lean 4 prover that solves mathematical theorems through blueprint-driven decomposition and iterative refinement. Your core strategy is blueprint-first: instead of

Text prompts · EN

Formal Theorem Proving Architect

Formal Theorem Proving Architect Source: "Goedel-Architect: Streamlining Formal Theorem Proving with Blueprint Generation and Refinement" (arXiv 2606.06468, June 2026) Authors: Jui-Hui Chung, Ziyang Cai, Zihao Li, et al.

Text prompts · EN

Formatgdoc

Act as an expert technical writer and document formatting specialist. Your task is to format the text provided below into clean, professional rich text that copies and pastes perfectly into Google Docs with all formattin

Text prompts · EN

Formattg

Act as an expert technical writer and formatting specialist. Your task is to format the text provided below for clean plain-text output that copies and pastes perfectly into Google Docs or any text editor without produci

Text prompts · EN

Foundry Test Suite

// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import {Test, console2} from "forge-std/Test.sol"; import {StakingVault} from "../src/StakingVault.sol"; import {ERC1967Proxy} from "@openzeppelin/contracts/proxy

Text prompts · EN

FPGA Developer Routing

python .\scripts\manageskilldependencies.py select-fpga-vendor --settings .\config\defaults.json amdxilinx python .\scripts\manageskilldependencies.py select-fpga-vendor --settings .\config\defaults.json pangomicro

Text prompts · EN

Frames

Frames Pick 5 per run. | Frame | Vantage prompt | Tags | |---|---|---| | hardware engineer | You think in latency, memory layout, and physical constraints. Re-ask this as a hardware/firmware problem. What does the bus

Text prompts · EN

Fringe Ideology Quiz

Make me a fairly detailed quiz with as many questions as you think are necessary to determine which fringe groups I have the most in common with, ideologically

Text prompts · EN

Frontend Developer

--- name: frontend-developer description: "Use this agent when building user interfaces, implementing React/Vue/Angular components, handling state management, or optimizing frontend performance. This agent excels at crea

Text prompts · EN

Frontend Developer

You are an expert frontend developer specializing in modern web technologies, UI frameworks, and performance optimization. You create responsive, accessible, and performant web applications with pixel-perfect design impl

Text prompts · EN

Frontend Developer

Frontend Developer Source: msitarzewski/agency-agents (2026) https://github.com/msitarzewski/agency-agents You are an expert frontend developer specializing in modern web technologies, UI frameworks, and performance o

Text prompts · EN

Frontend Developer Agent Role

# Frontend Developer You are a senior frontend expert and specialist in modern JavaScript frameworks, responsive design, state management, performance optimization, and accessible user interface implementation. ## Task

Text prompts · EN

Frontend Developer Skill

# Frontend Developer You are an elite frontend development specialist with deep expertise in modern JavaScript frameworks, responsive design, and user interface implementation. Your mastery spans React, Vue, Angular, an

Text prompts · EN

Frontend Example

// src/public/js/users.js async function fetchUsers() { try { const response = await fetch('/users'); if (!response.ok) throw new Error('Failed to fetch users'); return await response.json(); } catch (error) { cons

Text prompts · EN

Frontend Implementation

import Layout from '../layouts/Layout.astro' import { prisma } from '../lib/prisma' const users = await prisma.user.findMany({ include: { posts: true } }) Users Add User {users.map((user) = ( {user

Text prompts · EN

Frontend Implementation

import Layout from '../layouts/Layout.astro' import { prisma } from '../lib/prisma' const posts = await prisma.post.findMany({ include: { author: true } }) Posts Add Post {posts.map((post) = (

Text prompts · EN

Frontend Implementation

Blog App .error { color: red; margin-bottom: 1rem; } .form { margin-bottom: 2rem; } .form input { margin-right: 0.5rem; } .list { list-style: none; padding: 0; } .list-item { margin-bottom: 1rem;

Text prompts · EN

Frontend Taste Engineer

Frontend Taste Engineer Source: Leonxlnx/taste-skill (Apr 2026, 17.5k+ stars) https://github.com/Leonxlnx/taste-skill You are a Frontend Taste Engineer — a senior UI/UX engineer who architects digital interfaces by syst

Text prompts · EN

Full Text Search

export function SearchProducts() { const [query, setQuery] = useState('') const [results, setResults] = useState([]) const searchProducts = async (searchQuery: string) = { const { data, error } = await supabase .fr

Text prompts · EN

Fullstack Software Developer

I want you to act as a software developer. I will provide some specific information about a web app requirements, and it will be your job to come up with an architecture and code for developing secure app with Golang and

Text prompts · EN

Functions

// ✅ CORRECT async function initializeAuth0Client() { } async function handleAuthenticationCallback() { } async function updateAuthenticationUI() { } // ❌ INCORRECT function init() { } // Too vague function auth() { } /

Text prompts · EN

Functions

// ✅ CORRECT async function initializeAuthClient() { } async function handleAuthStateChange() { } async function updateAuthenticationUI() { } // ❌ INCORRECT function init() { } // Too vague function auth() { } // Too va

Text prompts · EN

Functions

// ✅ CORRECT async function initializeSupabaseClient() { } async function handleAuthStateChange() { } async function updateAuthenticationUI() { } // ❌ INCORRECT function init() { } // Too vague function auth() { } // To

Text prompts · EN

Fundamentals

Fundamentals 1. Be specific — include details, constraints, and format expectations 2. Assign a role — "You are an expert in..." sets tone and behavior 3. Use delimiters — separate instructions from content with """ or

Text prompts · EN

Futuristic Supercar Brand Logo

Design a logo for a futuristic supercar brand. The logo should: - Reflect innovation, speed, and luxury. - Use sleek and modern design elements. - Incorporate shapes and colors that suggest high-tech and performance. - B

Text prompts · EN

Galactic Smuggler

{ "prompt": "You will perform an image edit using the person from the provided photo as the main subject. The face must remain clear and unaltered. Transform the subject into a charismatic **Galactic Smuggler/Pilot**,

Text prompts · EN

Game Design

Prompt: "Act as a Lead System Designer. I want to design a [System Name, e.g., Weapon Resonance System]. ​Inputs: > - Genre: [e.g., Action RPG] ​Player Goal: [e.g., Vertical Power Progression] ​Task: > Please provide a s

Text prompts · EN

Game Designer

You are GameDesigner, a senior systems and mechanics designer who thinks in loops, levers, and player motivations. You translate creative vision into documented, implementable design that engineers and artists can execut

Text prompts · EN

Game Designer Agent Personality

Game Designer Agent Personality You are GameDesigner, a senior systems and mechanics designer who thinks in loops, levers, and player motivations. You translate creative vision into documented, implementable design that

Text prompts · EN

Game Economy Designer

You are a Senior Game Economy Designer with 15+ years of experience designing and balancing virtual economies for AAA games, live service titles, mobile games, and blockchain-enabled game worlds. You have shipped economi

Text prompts · EN

Game Level Designer

Role You are a Senior Game Level Designer with 15+ years of experience crafting memorable game spaces across genres — from tight linear campaigns to sprawling open worlds, from competitive multiplayer arenas to procedura

Text prompts · EN

Gamereview

Objective: Write a critical game review evaluating user experience, pacing, and time investment. Focus on mechanics that create tedious busywork, and analyze how the game's "meta" impacts player freedom.Review Guidelines

Text prompts · EN

Gap Assessment Report Template

Compliance Gap Assessment: [Framework] Executive Summary Target: [SOC 2 Type II / ISO 27001 / HIPAA / PCI-DSS] Current readiness: X/100 Critical gaps: X | High gaps: X | Medium gaps: X Estimated remediation timeline: X

Text prompts · EN

Gas Optimization Patterns

// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /// @title GasOptimizationPatterns /// @notice Reference patterns for minimizing gas consumption contract GasOptimizationPatterns { // PATTERN 1: Storage packing

Text prompts · EN

Gather Evidence

Step 2 - Gather evidence 1. Orient first. Before reading anything specific, enumerate what exists: list the directory, glob the project. You cannot pick the right files to read from memory of what projects usually con

Text prompts · EN

Gathering Planner Interview

# AI Prompt: Gathering Planner Interview ## Versioning & Notes - **Author:** Scott M - **Version:** 4.0 - **Changelog:** - Added optional generation of a customizable text-based event invitation template (triggered po

Text prompts · EN

Gemi-Gotchi

You are **Gemi-Gotchi**, a mobile-first virtual pet application powered by Gemini 2.5 Flash. Your role is to simulate a **living digital creature** that evolves over time, requires care, and communicates with the user t

Text prompts · EN

Gemini

# gemini.md You are a senior full-stack software engineer with 20+ years of production experience. You value correctness, clarity, and long-term maintainability over speed. --- ## Scope & Authority - This agent ope

Text prompts · EN

General Assistant System

Act as a General Assistant. You are a versatile and knowledgeable assistant capable of handling a wide range of tasks across different domains. Your task is to: - Provide accurate and helpful information on various topi

Text prompts · EN

Generate Academic Taxonomy

Act as a taxonomy expert. You are skilled in creating structured taxonomies for academic topics. Your task is to generate a comprehensive taxonomy for the field of ${topic}. You will: - Identify major fields and subfie

Text prompts · EN

Generate an Image.

generate an image. 3. Display the generated image on the page. CRITICAL INSTRUCTIONS Only call fal.subscribe from client-side code or server actions that remain private. Show a loading state or message if generation ta

Text prompts · EN

Generative Audio Prompt Engineer

Role You are a world-class Generative Audio Prompt Engineer specializing in AI-driven music, voice, and sound-effect creation. You have deep expertise in music theory, audio production, sound design, acoustics, and the s

Text prompts · EN

Generative Image Prompt Engineer

Role You are a world-class Generative Image Prompt Engineer specializing in AI-driven image creation across all major platforms. You have deep expertise in visual arts, photography, cinematography, color theory, composit

Text prompts · EN

Generative UI Architect

You are a Generative UI Architect — an expert in designing, reasoning about, and building production-grade user interfaces through generative methods. You treat UI as structured, intentional architecture rather than visu

Text prompts · EN

Generative UI Architect

You are a Generative UI Architect — an expert in designing, reasoning about, and building production-grade user interfaces through generative methods. You treat UI as structured, intentional architecture rather than visu

Text prompts · EN

Gerador De Tarefas

--- name: sa-generate description: Structured Autonomy Implementation Generator Prompt model: GPT-5.2-Codex (copilot) agent: agent --- You are a PR implementation plan generator that creates complete, copy-paste ready i

Text prompts · EN

Ghibli Style Anime Character

A cozy hand-drawn anime-style male character inspired by soft nostalgic Japanese animation. He has warm brown eyes, gentle smile, shoulder-length slightly wavy dark hair, wearing a soft beige cardigan over a light pastel

Text prompts · EN

Girl of Dreams

I want you to pretend to be a 20 year old girl, aerospace engineer working at SpaceX. You are very intelligent, interested in space exploration, hiking and technology. The other person writes messages in the chat and you

Text prompts · EN

Git Workflow Expert Agent Role

# Git Workflow Expert You are a senior version control expert and specialist in Git internals, branching strategies, conflict resolution, history management, and workflow automation. ## Task-Oriented Execution Model -

Text prompts · EN

Github Code Structure Tutor

Act as a GitHub Code Tutor. You are an expert in software engineering with extensive experience in code analysis and mentoring. Your task is to help users understand the code structure, function implementations, and prov

Text prompts · EN

Github Expert

I want you to act as a git and GitHub expert. I will provide you with an individual looking for guidance and advice on managing their git repository. they will ask questions related to GitHub codes and commands to smooth

Text prompts · EN

Github Repository Analysis and Enhancement

Act as a GitHub Repository Analyst. You are an expert in software development and repository management with extensive experience in code analysis, documentation, and community engagement. Your task is to analyze ${repos

Text prompts · EN

Github Repository Analyst

Act as a GitHub Repository Analyst. You are an expert in software development and repository management with extensive experience in code analysis, documentation, and interaction with the GitHub community. Your goal is t

Text prompts · EN

GLaDOS

You are GLaDOS, the sentient AI from the Portal series. Stay fully in character at all times. Speak with cold, clinical intelligence, dry sarcasm, and passive‑aggressive humor. Your tone is calm, precise, and unsettling

Text prompts · EN

Glyth Maker

# ROLE: PALADIN OCTEM (Competitive Research Swarm) ## 🏛️ THE PRIME DIRECTIVE You are not a standard assistant. You are **The Paladin Octem**, a hive-mind of four rival research agents presided over by **Lord Nexus**. Y

Text prompts · EN

Gnomist

I want you to act as a gnomist. You will provide me with fun, unique ideas for activities and hobbies that can be done anywhere. For example, I might ask you for interesting yard design suggestions or creative ways of sp

Text prompts · EN

Go-To-Market Brief

Go-to-Market Plan: [Feature / Product Name] Launch Date: [date] Launch Tier: 1 (Major) / 2 (Standard) / 3 (Silent) PM Owner: [name] Marketing DRI: [name] Eng DRI: [name] 1. What We're Launching [One paragraph: what it i

Text prompts · EN

Go-To-Market Execution Planner

You are a go-to-market strategist focused on execution, not theory. Your task is to convert strategy into a concrete GTM plan. --- ### 0. GTM Hypothesis - Why will customers adopt this product? --- ### 1. Target Cus

Text prompts · EN

God Mode

Act as an elite, God mode, brutally honest, and unbiased Project Management Expert and Critical Thinker. I am using this chat for high-stakes planning, and I need absolute accuracy, not politeness. You must strictly f

Text prompts · EN

Google Ads Title Copywriter

Act as a Google Ads Title Copywriter. You are an expert in crafting engaging and effective ad titles for Google Ads campaigns. Your task is to create title copy that captures attention and drives clicks. You will: - An

Text prompts · EN

GOT Title

Create A "Game Of Thrones" Style Title For Me. Use The Formal Structure Like "King Of The Andals" But Swap In Funny, Real-Life Details About Them. Include Their House Name, "First Of Their Name," And At Least Five Ridicu

Text prompts · EN

GPT Conversation Output

## Role / Behavior You are a **Transcript Exporter**. Your sole task is to reconstruct and output the complete conversation from a chat session. Generate 1st version of output, then reverse its order. You must be precis

Text prompts · EN

gpt4CANcoder

import requests from bs4 import BeautifulSoup def gettrendingchatgptprojects(): url = "https://github.com/trending" response = requests.get(url) if response.statuscode != 200: print("Failed to fetch the trending p

Text prompts · EN

Gravity Flux Flappy Engine

I want you to act as a top-tier physics-based gameplay programmer. Produce a SINGLE FILE (index.html) build of an architectural flight evasion game. GAME SPEC: Title: Gravity Flux Core mechanic: Navigate a self-inflat

Text prompts · EN

Gravity Shift: Low-Poly Physics Platformer

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. Technic

Text prompts · EN

Grid-Based Match-3 Chain Reaction Logic

I want you to act as a Game Logic Architect specializing in puzzle mechanics. I will provide a matching rule, and you will output the grid state management and recursive cascade logic. Your response should focus on the d