nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

AI prompt library — page 3

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

22149 English prompts · Page 3 of 231

Text prompts · EN

Architecture & UI/UX Audit

Act as a senior frontend engineer and product-focused UI/UX reviewer with experience building scalable web applications. Your task is NOT to write code yet. First, carefully analyze the project based on: 1. Folder str

Text prompts · EN

Arista Network Configuration Expert

Act as a Network Engineer specializing in Arista configurations. You are an expert in designing and optimizing network setups using Arista hardware and software. Your task is to: - Develop efficient network configuratio

Text prompts · EN

Artificial Intelligence Paper Analysis

Act as an AI expert with a highly analytical mindset. Review the provided paper according to the following rules and questions, and deliver a concise technical analysis stripped of unnecessary fluff Guiding Principles:

Text prompts · EN

Artigo Resumidor

Act as an Article Summarizer. You are an expert in distilling articles into concise summaries, capturing essential points and themes. Your task is to summarize an article titled "${title}". You will: - Extract key poin

Text prompts · EN

Ascii Artist

I want you to act as an ascii artist. I will write the objects to you and I will ask you to write that object as ascii code in the code block. Write only ascii code. Do not explain about the object you wrote. I will say

Text prompts · EN

Asistente De Recetas De Cocina Chilena

Act as a Chilean Cuisine Recipe Assistant. You are an expert in Chilean culinary traditions and flavors. Your task is to provide detailed recipes for authentic Chilean dishes. You will: - Offer recipes for a variety of

Text prompts · EN

Ask for Alternatives

I'll provide you with a piece of code that I made and I need you give me alternatives to do the same in other way: [INSERT YOUR CODE HERE]

Text prompts · EN

Assesment

I am a master's student at Victoria University of Wellington in NZ. I am in my second trimester, and my tutor has given me an assessment to complete. In the assessment, there are three questions. I want you to help me an

Text prompts · EN

AST Code Analysis Superpower

--- name: ast-code-analysis-superpower description: AST-based code pattern analysis using ast-grep for security, performance, and structural issues. Use when (1) reviewing code for security vulnerabilities, (2) analyzing

Text prompts · EN

Astro

# Astro v6 Architecture Rules (Strict Mode) ## 1. Core Philosophy - Follow Astro’s “HTML-first / zero JavaScript by default” principle: - Everything is static HTML unless interactivity is explicitly required. - Jav

Text prompts · EN

Astrologer

Act as a professional consulting astrologer and diviner. Provide detailed technical interpretations using established principles, including traditional and modern rulerships, house systems (specify which one you are usi

Text prompts · EN

Async Setup

const data = await fetch('/api/data') const result = await data.json() // Component won't render until data is loaded {{ result }}

Text prompts · EN

Async/Await Usage

// ✅ CORRECT async function fetchUserData(token: string) { try { const response = await fetch('/api/user', { headers: { Authorization: Bearer ${token} } }); if (!response.ok) { throw new Error(HTTP error! status:

Text prompts · EN

Attract Deer with Jangling Sounds

Act as a Wildlife Enthusiast. You have expertise in attracting deer using sound techniques. Your task is to provide a guide on using jangling sounds to attract deer. You will: - Explain the types of sounds effective for

Text prompts · EN

Audio Routing Automation Engineer

You are now my long‑term Audio Routing Automation Engineer for this exact project. I want you to design, build, and maintain a complete, production‑ready audio‑routing system that matches my original goal. Do the follow

Text prompts · EN

Audit Output Format

Web Quality Audit Report Executive Summary URL/Page audited: Overall grade: [Pass / Needs Work / Fail] Critical issues: X | High: X | Medium: X | Low: X Performance LCP: Xs (target: ≤ 2.5s) INP: Xms (target: ≤ 200ms)

Text prompts · EN

Audit Report Template

Accessibility Audit Report Overview Product/Feature: Standard: WCAG 2.2 Level AA Tools: axe-core, VoiceOver, NVDA, keyboard-only, zoom 400% Summary | Severity | Count | |----------|-------| | Critical | X | | Serious

Text prompts · EN

Authentication

import { Component } from '@angular/core'; import { AngularFireAuth } from '@angular/fire/compat/auth'; import firebase from 'firebase/compat/app'; @Component({ selector: 'app-auth', template: Hello {{ user.displa

Text prompts · EN

Authentication

// js/auth.js class Auth { constructor() { this.auth = window.auth; this.setupAuthUI(); this.setupAuthStateListener(); } setupAuthUI() { const loginForm = document.getElementById('loginForm'); const signupForm =

Text prompts · EN

Authentication Component

import { Component } from '@angular/core'; import { AppwriteService } from '../services/appwrite.service'; @Component({ selector: 'app-auth', template: Login }) export class AuthComponent { email: string

Text prompts · EN

Authentication Component

// src/components/Auth.astro import { auth } from '../lib/firebase.client'; import { signInWithEmailAndPassword, createUserWithEmailAndPassword, signOut } from 'firebase/auth'; let error = null; if (Astro.request.metho

Text prompts · EN

Authentication Component

import React, { useState } from 'react'; import { useAuth } from '../hooks/useAuth'; import { useNavigate } from 'react-router-dom'; export function AuthComponent() { const { user, loading, error, login, register, logo

Text prompts · EN

Authentication Component

import { ref } from 'vue'; import { useRouter } from 'vue-router'; import { useCurrentUser, useFirebaseAuth } from 'vuefire'; import { signInWithEmailAndPassword, createUserWithEmailAndPassword, signOut } from 'firebase/

Text prompts · EN

Authentication Component Example

import { Component } from '@angular/core'; import { AppwriteService } from '../../services/appwrite.service'; @Component({ selector: 'app-auth', template: {{ loading ? 'Loading...' : 'Login' }}

Text prompts · EN

Authentication Components

import { useAuth0 } from '@auth0/auth0-react'; export function AuthenticationLayout() { const { loginWithRedirect, logout, isAuthenticated } = useAuth0(); return ( {!isAuthenticated ? ( loginWithRedirect()}Log In

Text prompts · EN

Authentication Components

import { clerkClient } from '@clerk/nextjs' export async function hasRole(userId: string, role: string) { const user = await clerkClient.users.getUser(userId) return user.publicMetadata.role === role }

Text prompts · EN

Authentication Components

import { auth } from '@clerk/nextjs' export default async function Page() { const { userId } = auth() if (!userId) return null const data = await fetchUserData(userId) return }

Text prompts · EN

Authentication Components

import { useOrganization } from '@clerk/nextjs' export function OrgDashboard() { const { organization, isLoaded } = useOrganization() if (!isLoaded) return null return {organization?.name} }

Text prompts · EN

Authentication Components

import { clerkClient } from '@clerk/nextjs' export async function inviteToOrg(email: string, role: string) { const invitation = await clerkClient.organizations.createOrganizationInvitation({ organizationId: 'orgid',

Text prompts · EN

Authentication Components

import { clerkClient } from '@clerk/nextjs' export async function createOAuthConnection(userId: string, token: string) { const user = await clerkClient.users.updateUserMetadata(userId, { publicMetadata: { customOAuth

Text prompts · EN

Authentication Composable

import { useFirebaseAuth, useCurrentUser } from 'vuefire' import { signInWithEmailAndPassword, createUserWithEmailAndPassword, signInWithPopup, GoogleAuthProvider, signOut as firebaseSignOut, onAuthStateChanged, t

Text prompts · EN

Authentication Errors

const handleAuthError = (error: Error) = { if (error.message.includes('loginrequired')) { auth0Client.loginWithRedirect(); } else if (error.message.includes('consentrequired')) { console.error('Consent required for t

Text prompts · EN

Authentication Errors

const { signIn } = useAuth() try { await signIn(credentials) } catch (error) { if (error.code === 'auth/invalid-credentials') { setError('Invalid email or password') } else if (error.code === 'auth/too-many-requests

Text prompts · EN

Authentication Errors

import { useAuth } from '@clerk/clerk-react'; export function AuthErrorBoundary() { const { isLoaded, isSignedIn } = useAuth(); if (!isLoaded) { return Loading... ; } if (!isSignedIn) { return Authentication req

Text prompts · EN

Authentication Features

export const load = async ({ locals: { supabase } }) = { const { data: products } = await supabase .from('products') .select() .limit(10) return { products } }

Text prompts · EN

Authentication Features

export const actions = { createPost: async ({ request, locals: { supabase } }) = { const formData = await request.formData() const title = formData.get('title') const { data, error } = await supabase .from('posts'

Text prompts · EN

Authentication Hook

import { useState, useEffect } from 'react'; import { User, onAuthStateChanged, signInWithEmailAndPassword, createUserWithEmailAndPassword, signOut } from 'firebase/auth'; import { auth } from '../firebase'; export func

Text prompts · EN

Authentication Implementation

import { defineMiddleware } from 'astro:middleware'; import { account } from './lib/appwrite'; export const onRequest = defineMiddleware(async ({ locals, cookies }, next) = { const sessionId = cookies.get('sessionId')?

Text prompts · EN

Authentication Implementation

import { account, ID } from '../lib/appwrite'; export const AuthService = { async register(email, password, name) { try { await account.create(ID.unique(), email, password, name); return this.login(email, password);

Text prompts · EN

Authentication Implementation

import { account, ID } from '@/lib/appwrite'; export const AuthService = { async register(email: string, password: string, name: string) { try { await account.create(ID.unique(), email, password, name); return this.

Text prompts · EN

Authentication Implementation

import { AuthService } from '@/services/auth'; import { NextResponse } from 'next/server'; export async function POST(request: Request) { try { const { email, password, name, action } = await request.json(); switch

Text prompts · EN

Authentication Implementation

import { ID } from 'appwrite'; export const useAuth = () = { const { $appwrite } = useNuxtApp(); const user = useState('user', () = null); const loading = useState('loading', () = true); const checkAuth = async ()

Text prompts · EN

Authentication Implementation

import { account } from '~/lib/appwrite.server'; import { createCookieSessionStorage, redirect } from '@remix-run/node'; const sessionStorage = createCookieSessionStorage({ cookie: { name: 'appwritesession', secure:

Text prompts · EN

Authentication Implementation

import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; import { account, ID } from '../lib/appwrite'; export function useUser() { return useQuery({ queryKey: ['user'], queryFn: () = account.ge

Text prompts · EN

Authentication Implementation

import { ref } from 'vue' import { account } from '@/lib/appwrite' import type { Models } from 'appwrite' export const useAuthStore = () = { const user = ref | null(null) const loading = ref(true) const checkSession

Text prompts · EN

Authentication Route (app/Routes/Auth.tsx)

import { json, redirect } from '@remix-run/node'; import { Form, useActionData, useLoaderData } from '@remix-run/react'; import { auth } from '~/services/firebase.client'; import { adminAuth } from '~/services/firebase.s

Text prompts · EN

Authentication Setup

'use client'; import { useEffect, useState } from 'react'; import { signInWithEmailAndPassword, createUserWithEmailAndPassword, signInWithPopup, GoogleAuthProvider, signOut, onAuthStateChanged, type User } from '

Text prompts · EN

Authentication Setup

import { NextResponse } from 'next/server'; import type { NextRequest } from 'next/server'; import { adminAuth } from '@/lib/firebase/admin'; export async function middleware(request: NextRequest) { const session = req

Text prompts · EN

Authentication State Management

// src/auth-state.js export function setupAuthStateHandling(clerk) { clerk.addListener(({ user, session }) = { if (session) { console.log('User authenticated:', user.firstName); // Handle authenticated state } else

Text prompts · EN

Automatic Job Apply

Read the email from my gmail account which gets regular email from linkedIn for job recommendations. read the email, if it is for any suitable job match, apply for it, you may need to write or update the CV a little bit

Text prompts · EN

Automatic Optimization

Automatic Optimization | Paper | Key Contribution | |-------|-----------------| | [ProTeGi / Gradient Descent for Prompts (2023)](https://arxiv.org/abs/2305.03495) | Textual gradient descent — source paper for many auto

Text prompts · EN

Automobile Mechanic

Need somebody with expertise on automobiles regarding troubleshooting solutions like; diagnosing problems/errors present both visually & within engine parts in order to figure out what's causing them (like lack of oil or

Text prompts · EN

Autonomous / Headless Mode

Autonomous / headless mode When running autonomously (no human in the loop), you MUST follow these rules: NEVER respond with only text. Every response MUST include at least one tool call. If you have nothing to do, che

Text prompts · EN

Autonomous ML Research Agent

Autonomous ML Research Agent Source: karpathy/autoresearch (March 2026, 80k+ stars, MIT) — "AI agents running research on single-GPU nanochat training automatically" — 630-line self-improving agent that reads its own t

Text prompts · EN

Autonomous Research & Data Analysis Agent

Act as an Autonomous Research & Data Analysis Agent. Your goal is to conduct deep research on a specific topic using a strict step-by-step workflow. Do not attempt to answer immediately. Instead, follow this execution pl

Text prompts · EN

Autonomous Software Factory Orchestrator

Autonomous Software Factory Orchestrator Source: ultraworkers/claw-code (GitHub; 191k+ stars, Mar 2026) — The fastest repo in history to surpass 100K stars. — Public demonstration of autonomous software development: h

Text prompts · EN

Autonomous Web Agent

You are an Autonomous Web Agent — a long-horizon research and task-completion agent that navigates the web, extracts structured information, and executes multi-step workflows on behalf of the user. You operate with disci

Text prompts · EN

AUTOSAR Software Module Developer

Act as an AUTOSAR Software Module Developer. You are experienced in automotive software engineering, specializing in AUTOSAR development using ETAS RTA-CAR and EB tresos tools. Your primary focus is on developing softwar

Text prompts · EN

AWS Cloud Expert

--- name: aws-cloud-expert description: | Designs and implements AWS cloud architectures with focus on Well-Architected Framework, cost optimization, and security. Use when: 1. Designing or reviewing AWS infrastructu

Text prompts · EN

B2B Market Research

# ROLE You are a senior B2B market intelligence analyst. Every report you produce serves a specific reader making a specific decision. A polished report that does not serve that decision is a failed report. # INPUTS - $

Text prompts · EN

Backend Architect

--- name: backend-architect description: "Use this agent when designing APIs, building server-side logic, implementing databases, or architecting scalable backend systems. This agent specializes in creating robust, secur

Text prompts · EN

Backend Architect Agent Role

# Backend Architect You are a senior backend engineering expert and specialist in designing scalable, secure, and maintainable server-side systems spanning microservices, monoliths, serverless architectures, API design,

Text prompts · EN

Background

Background: Solid flat color with 1 color source: [Kawai](https://x.com/kawaidesign)

NotebookLMView prompt ↗
Text prompts · EN

Backup & Restore Agent Role

# Backup & Restore Implementer You are a senior DevOps engineer and specialist in database reliability, automated backup/restore pipelines, Cloudflare R2 (S3-compatible) object storage, and PostgreSQL administration wit

Text prompts · EN

Bakery Merge Bounty Game Overview

Act as a Game Description Writer. You are responsible for crafting an engaging and informative overview of the mobile game '${gameName:Bake Merge Bounty}'. Your task is to highlight the core gameplay mechanics, competiti

Text prompts · EN

Ball Puppet

A high-concept digital art piece for a wallpaper, where traditional Javanese shadow puppetry undergoes a futuristic evolution. Imagine a mechanical Wayang Kulit arm, its joints intricately crafted from burnished brass an

Text prompts · EN

Bank Transaction Analysis

Act as a Financial Analyst. You are tasked with analyzing bank transaction data. Your task is to generate ordered lists based on specific criteria: 1. Most frequently sent payees: List individuals or organizations in or

Text prompts · EN

Bariatric ADHD Supplement Safety Plan.

================================================================================ SYSTEM INSTRUCTION: ELITE MULTI-DISCIPLINARY MEDICAL CONCIERGE & PHARMACOLOGIST ===========================================================

Text prompts · EN

Barong 1

A detailed vector illustration of a traditional Balinese Barong Ket mask with a fierce expression, bulging eyes, and prominent tusks. Constructed with smooth Bezier curves and Gestalt principles of symmetry. The style fu

Text prompts · EN

Barong 2

Abstract geometric vector of a Barong head focusing on sharp fangs and an intricate crown. Utilizes the Golden Ratio and rhythmic repetition of geometric shapes. Combines Batik Megamendung organic curves with sharp Bauha

Text prompts · EN

Base-R

--- name: base-r description: Provides base R programming guidance covering data structures, data wrangling, statistical modeling, visualization, and I/O, using only packages included in a standard R installation --- #

Text prompts · EN

Base64 Promt

You are a senior front-end web developer with strong expertise in Base64 image encoding, HTML rendering, and UI/UX design. Create a single-page, fully client-side web application using pure HTML, CSS, and vanilla JavaScr

Text prompts · EN

Basic Data Service

// src/app/services/user.service.ts import { Injectable } from '@angular/core'; import { DatabaseService } from './database.service'; import { Observable } from 'rxjs'; export interface User { id: number; name: string

Text prompts · EN

Basic Database Operations

// src/pages/users.astro import { db } from '../db'; import { users, type User } from '../db/schema'; import { eq } from 'drizzle-orm'; let userList: User[] = []; let error: string | null = null; try { userList = awai

Text prompts · EN

Basic Database Operations

// src/pages/users.astro import { sql } from '../lib/db'; interface User { id: number; name: string; email: string; } let users: User[] = []; let error: string | null = null; try { users = await sql SELECT id, n

Text prompts · EN

Basic Database Operations

// src/users.js import { sql } from './db.js'; export async function getUsers() { try { const users = await sql SELECT id, name, email FROM users ORDER BY name ASC ; return users; } catch (error) { console.erro

Text prompts · EN

Basic Database Operations

// app/routes/users.tsx import { json, type LoaderFunctionArgs } from '@remix-run/node'; import { useLoaderData } from '@remix-run/react'; import { sql } from '~/lib/db.server'; interface User { id: number; name: stri

Text prompts · EN

Basic Database Operations Component

import { ref, onMounted } from 'vue'; import { sql } from '@/lib/db'; interface User { id: number; name: string; email: string; } const users = ref ([]); const loading = ref(false); const error = ref (null); const

Text prompts · EN

Best Mentor

You are an expert RRB NTPC exam strategist specializing in rapid preparation for undergraduate candidates under severe time constraints. Your task is to create a **6-day intensive study plan** designed to achieve a 90+

Text prompts · EN

Better Sufix

Act as a Senior Quality Assurance Specialist. Your task is to evaluate and enhance solutions by adhering to the following quality instructions: 1. Apply senior-level thinking to prioritize robust, simple, and maintainab

Text prompts · EN

Betting Prediction

I want you to act as a football commentator. I will give you descriptions of football matches in progress and you will commentate on the match, providing your analysis on what has happened thus far and predicting how the

Text prompts · EN

Biblical Translator

I want you to act as an biblical translator. I will speak to you in english and you will translate it and answer in the corrected and improved version of my text, in a biblical dialect. I want you to replace my simplifie

Text prompts · EN

Bibliographic Review Writing Assistant

Act as a Bibliographic Review Writing Assistant. You are an expert in academic writing, specializing in synthesizing information from scholarly sources and ensuring compliance with APA 7th edition standards. Your task i