nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

Workflows — page 9

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

929 English prompts · Page 9 of 10

Workflows · EN

Storage Hook

import { useState } from 'react'; import { ref, uploadBytes, getDownloadURL, deleteObject } from 'firebase/storage'; import { storage } from '../firebase'; export function useStorage(path: string) { const [progress, se

Workflows · EN

Storyteller

I want you to act as a storyteller. You will come up with entertaining stories that are engaging, imaginative and captivating for the audience. It can be fairy tales, educational stories or any other type of stories whic

Workflows · EN

Stripe Payment Builder

Act as a Stripe Payment Setup Assistant. You are an expert in configuring Stripe payment options for various business needs. Your task is to set up a payment process that allows customization based on user input. You wi

Workflows · EN

Structural Fusion: the Thriller-Parable

--- name: structural-fusion-the-thriller-parable description: A JSON structured prompt for writing a series that blends thriller and parable genres using a unique double narrative structure. --- # Structural Fusion: The

Workflows · EN

Subject Meditating in a Crystal Sphere

a transparent crystal portal floating in the middle of clouds in the sky, with a ${subject}, sitting inside meditating with golden lights coming up from all their chakras, 2 other light beams are traversing their body on

Workflows · EN

Subscription Management Component

// In your settings or subscription page const handleUpgrade = async () = { const response = await fetch("/api/stripe/create-checkout", { method: "POST", headers: { "Content-Type": "application/json", Authorization:

Workflows · EN

Success Stories

Write 3-5 brief success stories or testimonials from users who have benefited from [project name], showing real-world impact.

Workflows · EN

SWAP MENU EXTERNAL C++

CHANGE THE OLD MISTY LOADER TO THE NEWEST LOADER THAT IS ALREADY IN THE NEW SOURCE PATH WITH THE SAME FONT AND THE SAME THEME AND THE SAME SIZE AND JUST CHANGE THE LOADER TO ENTER THE KEYAUTH, DON'T CHANGE ANYTHING ELSE

Workflows · EN

Synonym Finder

I want you to act as a synonyms provider. I will tell you a word, and you will reply to me with a list of synonym alternatives according to my prompt. Provide a max of 10 synonyms per prompt. If I want more synonyms of t

Workflows · EN

Talent Coach

I want you to act as a Talent Coach for interviews. I will give you a job title and you'll suggest what should appear in a curriculum related to that title, as well as some questions the candidate should be able to answe

Workflows · EN

Tanstack Query Setup

import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { ReactQueryDevtools } from '@tanstack/react-query-devtools' const queryClient = new QueryClient({ defaultOptions: { queries: { staleTim

Workflows · EN

Tech Reviewer

I want you to act as a tech reviewer. I will give you the name of a new piece of technology and you will provide me with an in-depth review - including pros, cons, features, and comparisons to other technologies on the m

Workflows · EN

Tech Troubleshooter

I want you to act as a tech troubleshooter. I'll describe issues I'm facing with my devices, software, or any tech-related problem, and you'll provide potential solutions or steps to diagnose the issue further. I want yo

Workflows · EN

Technology Transferer

I want you to act as a Technology Transferer, I will provide resume bullet points and you will map each bullet point from one technology to a different technology. I want you to only reply with the mapped bullet points i

Workflows · EN

Tell Your Story

Write a personal story about why I started contributing to open source, what drives me, and how sponsorship helps me continue this journey in [field/technology].

Workflows · EN

Test Claude Skills in Interviews

You are an expert hiring manager. You know Claude and its strengths (comprehension and generation of large texts, quick and efficient processing, ability to learn). Create an interview procedure that would test the [sk

Workflows · EN

Test Claude Skills in Interviews

Test Claude skills in Interviews You are an expert hiring manager. You know Claude and its strengths (comprehension and generation of large texts, quick and efficient processing, ability to learn). Create an interview

Workflows · EN

Test Organization

// ✅ CORRECT describe('Authentication', () = { describe('initialization', () = { it('should initialize Clerk with valid key', async () = { // Test implementation }); it('should throw error with invalid key', async

Workflows · EN

Text Summarizer

Act as a Text Summarizer. You are an expert in distilling complex texts into concise summaries. Your task is to extract the core essence of the provided text, highlighting key points and themes. You will: - Identify and

Workflows · EN

The 3-Strike Error Protocol

ATTEMPT 1 — Diagnose & fix Read the error carefully. Identify root cause from message + stack. Apply a targeted fix. Log to Errors Encountered. ATTEMPT 2 — Alternative approach If the same error returns, switch metho

Workflows · EN

The 5-Phase Non-Linear Flow

+-------------------------------------------------+ | | | +----------+ +----------+ +----------+ | | | 1. RECON |---+| 2. MAP |---+| 3. FIND | | | +----------+ +-----+----+ +-----+-----+ | | ^ | | | | | v v | | | +------

Workflows · EN

The Curriculum Mapping Prompt.

Prompt: ​"Task: Based exclusively on the uploaded materials, engineer a comprehensive [Insert Number]-week curriculum map. Constraints: Structure the learning journey using Bloom's Taxonomy, moving learners from basic r

Workflows · EN

The Fighter

[00:00 - 00:2.0] Intense boxing exchange mid-ring, Red Trunks vs Blue Trunks, smoky arena atmosphere with high-contrast backlighting, sweat glistening under spotlights. [Audio: Canvas footwork scuffs, leather-on-leather

Workflows · EN

The Template

🧠Smart Dev Task: 1️⃣Fix program🔧, provide bug-free🐞, well-commented code📝. 2️⃣Write detailed📏 code, implement architecture🏛️. Start with core classes🔠, functions🔢, methods🔣, brief comments🖊️. 3️⃣Output each

Workflows · EN

Tic-Tac-Toe Game

I want you to act as a Tic-Tac-Toe game. I will make the moves and you will update the game board to reflect my moves and determine if there is a winner or a tie. Use X for my moves and O for the computer's moves. Do not

Workflows · EN

Time Commitment

Explain how sponsorship would allow me to dedicate [X hours/days] per week/month to open source, comparing current volunteer time vs. potential sponsored time.

Workflows · EN

Token Handling

// ✅ CORRECT async function getAccessToken() { try { return await auth0Client.getTokenSilently(); } catch (error) { handleTokenError(error); throw error; } } // ❌ INCORRECT function getAccessToken() { const token

Workflows · EN

Token Handling

// ✅ CORRECT async function getAccessToken() { try { return await auth.getToken(); } catch (error) { handleTokenError(error); throw error; } } // ❌ INCORRECT function getAccessToken() { const token = localStorage

Workflows · EN

Token Handling

const { getToken, refreshToken } = useAuth() const apiClient = axios.create({ baseURL: '/api', headers: { Authorization: Bearer ${getToken()} } }) apiClient.interceptors.response.use( response = response, async e

Workflows · EN

Token Management

// Get access token async function getAccessToken() { try { const token = await auth0Client.getTokenSilently(); return token; } catch (error) { console.error('Token error:', error); throw error; } } // Make authe

Workflows · EN

Token Management

const getAccessToken = async () = { try { return await auth0Client.getTokenSilently(); } catch (error) { console.error('Error getting access token:', error); throw error; } };

Workflows · EN

Token Management

const refreshToken = async () = { try { await auth0Client.checkSession(); } catch (error) { console.error('Error refreshing token:', error); throw error; } };

Workflows · EN

Token Management

// Get access token async function getAccessToken() { try { const token = await auth.getToken(); return token; } catch (error) { console.error('Token error:', error); throw error; } } // Refresh token async funct

Workflows · EN

Tom and Jerry Classic Cartoon Chase

Create a 2D classic cartoon style video of Tom the cat and Jerry the mouse in a 4-scene chase through a cozy kitchen. Each scene is 8 seconds long, featuring: 1. Scene 1: Jerry runs with cheese, Tom chases him, slipping

Workflows · EN

Trade Contract Review Expert

Act as a Trade Contract Review Expert. Your role is to meticulously analyze trade contracts for ${industry:global trade} to ensure they meet legal and business standards. Your task is to: - Identify and highlight key ter

Workflows · EN

Translate Ad Copy into Other Languages

Translate [ad copy] into [language]. Understand the meaning of [ad copy] and find relevant words and native phrases in [language] that are best suited for persuading customers. Show what you've changed/added in English

Workflows · EN

Two-Factor Authentication

// lib/client.ts import { createClient } from 'better-auth' import { twoFactor } from 'better-auth/plugins' export const auth = createClient({ plugins: [ twoFactor({ issuer: 'Your App Name', algorithm: 'sha256', di

Workflows · EN

Underwater Veo 3 Video

Ultra-realistic 6-second cinematic underwater video: A sleek predator fish darts through a vibrant coral reef, scattering a school of colorful tropical fish. The camera follows from a low FPV angle just behind the predat

Workflows · EN

Upsell Using Email Marketing

Generate ideas on how to use email marketing for [business] to retain existing customers and to encourage repeat purchases from [product line]. Business = [Insert Here] Product line = [Insert Here]

Workflows · EN

Usage Examples

import { AuthService } from './services/auth'; // Registration try { await AuthService.register('[email protected]', 'password123', 'John Doe'); console.log('Registration successful'); } catch (error) { console.error(

Workflows · EN

Use AI to Get Instagram Story Ideas

I need an Instagram story idea that will provide a sneak peek of upcoming products or services and create a sense of anticipation and excitement for with a clear and compelling call to action. Targeted audience = [descr

Workflows · EN

Use Awareness - Action Framework Using AI

Use the 'Awareness-Comprehension-Conviction-Action' framework to create an email marketing campaign. Make [ideal customer persona] understand [problem] that they face. Create the desired conviction in the reader to use [

Workflows · EN

Use Claude to Create a Business Model

I need you to help me create a detailed business model canvas for a [business details] company. Organize your answers in a table that reproduces the original format used in consulting. I want you to write detailed answer

Workflows · EN

Use Claude to Create a Business Model

Use Claude to create a business model I need you to help me create a detailed business model canvas for a [business details] company. Organize your answers in a table that reproduces the original format used in consulti

Workflows · EN

Use Claude to Find CTA Ideas

Give me a few CTA (call to action) ideas for my new product. Make sure they are eye catching, short and friendly. Must emphasize "value" over "action". Product: [describe your product]

Workflows · EN

Use Claude to Generate "about" Section

I want you to act as my social media manager for my [business details and what you usually post about]. Give me at least 5 examples of an interesting "About" section for my Linkedln profile, write in a polite and friendl

Workflows · EN

Use Claude to Generate "about" Section

Use Claude to generate "about" Section I want you to act as my social media manager for my [business details and what you usually post about]. Give me at least 5 examples of an interesting "About" section for my Linkedl

Workflows · EN

Use the Computer S Front-Facing Camera

Use the computer's front-facing camera. Use the mediapipe library to capture facial landmarks. Use threejs to apply a LASER EYE effect to the face captured by the camera, based on the real-time 3D landmark information pr

Workflows · EN

Variables

// ✅ CORRECT const auth0Client = await initializeAuth0Client(); const currentUser = await auth0Client.getUser(); const isAuthenticated = await auth0Client.isAuthenticated(); // ❌ INCORRECT const client = await initializ

Workflows · EN

Variables

// ✅ CORRECT const authClient = await initializeAuthClient(); const currentUser = await authClient.getUser(); const isAuthenticated = Boolean(currentUser); // ❌ INCORRECT const client = await initializeAuthClient(); //

Workflows · EN

Variables

// ✅ CORRECT const clerkInstance = await initializeClerk(); const currentUser = clerk.user; const isAuthenticated = Boolean(clerk.user); // ❌ INCORRECT const ci = await initializeClerk(); // Too short const auth = clerk

Workflows · EN

Variables

// ✅ CORRECT const supabaseClient = initializeSupabaseClient(); const currentUser = await supabaseClient.auth.getUser(); const isAuthenticated = Boolean(currentUser); // ❌ INCORRECT const client = initializeSupabaseClie

Workflows · EN

Verbatim Chat to Organized Notes

extract all information in this chat verbatim Capture every detail from start to finish, ensuring the notes read like a comprehensive plan or proposal, with a focus on the user's intentions and actions.

Workflows · EN

Vintage Botanical Illustration Generator

A botanical diagram of a ${subject}, illustrated in the style of vintage scientific journals. Accented with natural tones and detailed cross-sections, it’s labeled with handwritten annotations in sepia ink, evoking a sch

Workflows · EN

Virtual Doctor

I want you to act as a virtual doctor. I will describe my symptoms and you will provide a diagnosis and treatment plan. You should only reply with your diagnosis and treatment plan, and nothing else. Do not write explana

Workflows · EN

Wary Bear in a Hostile Woodland

Act as a Wildlife Narrator. You are an expert in describing the behaviors and environments of animals in the wild. Your task is to create a vivid narrative of a wary bear navigating a hostile, overgrown woodland filled w

Workflows · EN

Web Application

--- name: web-application description: Optimize the prompt for an advanced AI web application builder to develop a fully functional ${applicationType:travel booking} web application. The application should be ${environme

Workflows · EN

Web Browser

I want you to act as a text based web browser browsing an imaginary internet. You should only reply with the contents of the page, nothing else. I will enter a url and you will return the contents of this webpage on the

Workflows · EN

Web Design

I want you to act as a web design consultant. I will provide details about an organization that needs assistance designing or redesigning a website. Your role is to analyze these details and recommend the most suitable i

Workflows · EN

Web Design Consultant

I want you to act as a web design consultant. I will provide you with details related to an organization needing assistance designing or redeveloping their website, and your role is to suggest the most suitable interface

Workflows · EN

Webhook Integration

// Backend endpoint to handle Clerk webhooks async function handleWebhook(request) { const WEBHOOKSECRET = process.env.CLERKWEBHOOKSECRET; try { const payload = await verifyWebhookSignature( request, WEBHOOKSECRET

Workflows · EN

Webswarm Plan

WebSwarm Plan: Structure Map Node Definitions Node : Mode: Evidence In: Children: (if DELEGATE) Action: (if EXECUTE) Expected Evidence Out: Shared Experience Aggregation Rules

Workflows · EN

Whiteboard Diagrams

Steps to build an AI startup by making something people want: { "style": { "name": "Whiteboard Sketch Diagram", "description": "Transform any concept into an elegant hand-drawn diagram. Clean, minimal, archite

Workflows · EN

Wikipedia Page

I want you to act as a Wikipedia page. I will give you the name of a topic, and you will provide a summary of that topic in the format of a Wikipedia page. Your summary should be informative and factual, covering the mos