nNexGateHub
Browse NexGateHub
NEXGATEHUB / PROMPTS

AI prompt library — page 226

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

22149 English prompts · Page 226 of 231

Workflows · EN

Route Protection Implementation

import { createRouter } from 'vue-router' import { authGuard } from '@auth0/auth0-vue' const router = createRouter({ // ... your routes configuration }) router.beforeEach(authGuard)

Workflows · EN

Route Protection Implementation

// auth.guard.ts import { Injectable } from '@angular/core'; import { Router } from '@angular/router'; import { BetterAuthService } from 'better-auth-angular'; import { map, tap } from 'rxjs/operators'; @Injectable({ p

Workflows · EN

Route Protection Implementation

// app.routes.ts import { Routes } from '@angular/router'; import { AuthGuardService, catchAllRoute } from 'ngx-clerk'; export const routes: Routes = [ { path: 'dashboard', component: DashboardComponent, canActivate

Workflows · EN

Route Protection Implementation

// guards/auth.guard.ts import { Injectable } from '@angular/core' import { Router } from '@angular/router' import { AuthService } from '../services/auth.service' import { map, tap } from 'rxjs/operators' @Injectable({

Workflows · EN

Royal Blue and Red

Shades of royal Blue and Red wet watercolor. Focus on different artistic styles to be used with kael/notebooklm Slides decks.

NotebookLMView prompt ↗
Workflows · EN

Royal Blue and Red

Royal blue and red Shades of royal Blue and Red wet watercolor. Focus on different artistic styles to be used with kael/notebooklm Slides decks. source: https://x.com/kottley/status/1994442047579721782?s=20

NotebookLMView prompt ↗
Workflows · EN

Salesperson

I want you to act as a salesperson. Try to market something to me, but make what you're trying to market look more valuable than it is and convince me to buy it. Now I'm going to pretend you're calling me on the phone an

Workflows · EN

Sarcastic AI Personality

Act as a Sarcastic Business Notion Assistant. You are an AI with a sharp wit and a penchant for sarcasm, yet capable of efficiently managing business tasks within Notion. Your task is to assist users with their business

Workflows · EN

Save Outputs

| Section | Paragraph | Rule Candidate | Target | Evidence | |---------|-----------|---------------|--------|---------| | intro | para-3 | [rule text] | journal-only / general | single / pattern |

Workflows · EN

Searchscreen

// Before var query by remember { mutableStateOf("") } // After (if primitive) var query by remember { mutableIntStateOf("") }

Workflows · EN

Searchscreen

// Before private val events = MutableSharedFlow () // After private val events = Channel (Channel.BUFFERED) val events = events.receiveAsFlow()

Workflows · EN

Security Fixes Cves

Vulnerability analysis Root cause identification Upgrade decision support Automation creation Documentation generation Compliance enforcement Engineers focused on validation, architectural decisions, and risk gover

Workflows · EN

Self-Help Book

I want you to act as a self-help book. You will provide me advice and tips on how to improve certain areas of my life, such as relationships, career development or financial planning. For example, if I am struggling in m

Workflows · EN

Senior System Architect Agent

Act as a Senior System Architect. You are an expert in designing and overseeing complex IT systems and infrastructure with over 15 years of experience. Your task is to lead architectural planning, design, and implementat

Workflows · EN

Sentry Bug Fixer

Act as a Sentry Bug Fixer. You are an expert in debugging and resolving software issues using Sentry error tracking. Your task is to ensure applications run smoothly by identifying and fixing bugs reported by Sentry. You

Workflows · EN

Serious Man in Urban Setting

A serious man in a denim jacket standing in a dark urban setting with flashing emergency lights behind him, cinematic lighting, dramatic atmosphere, Persian-English bilingual film poster style

Workflows · EN

Service Implementation

import { Injectable, OnModuleDestroy, OnModuleInit } from '@angular/core'; import { PrismaClient } from '@prisma/client'; @Injectable({ providedIn: 'root' }) export class PrismaService extends PrismaClient implements O

Workflows · EN

Session Management

// Check authentication state async function checkAuthState() { try { const isAuthenticated = await auth0Client.isAuthenticated(); return isAuthenticated; } catch (error) { console.error('Auth state check error:', e

Workflows · EN

Session Management

// Check authentication state async function checkAuthState() { try { const isAuthenticated = await auth.isAuthenticated(); return isAuthenticated; } catch (error) { console.error('Auth state check error:', error);

Workflows · EN

Session Management

// lib/hooks.server.ts import { auth } from '$lib/client' import type { Handle } from '@sveltejs/kit' export const handle: Handle = auth.handleRequest({ session: { maxAge: 7 24 60 60, // 7 days updateAge: 24 60 60, /

Workflows · EN

Session Management

// Handle session changes function initializeSessionHandling() { clerk.addListener(({ session }) = { if (session) { // Session is active console.log('Active session:', session.id); } else { // No active session co

Workflows · EN

Session Recovery

import { useAuth } from '@clerk/clerk-react'; export function SessionHandler() { const { getToken } = useAuth(); const handleApiCall = async () = { try { const token = await getToken(); // Use token for API calls

Workflows · EN

Session State

const { initializeAuth } = useAuth() useEffect(() = { initializeAuth({ persistSession: true, storageType: 'localStorage' }) }, [])

Workflows · EN

Session Storage Setup

// app/utils/session.server.ts import { createCookieSessionStorage } from '@remix-run/node' export const sessionStorage = createCookieSessionStorage({ cookie: { name: 'auth', sameSite: 'lax', path: '/', httpOnly: t

Workflows · EN

Small Business Loan Broker Agent

Act as a Small Business Loan Broker Agent. You are an expert in connecting small businesses with necessary financial products such as loans, lines of credit, and other services listed at [David Allen Capital](https://dav

Workflows · EN

Small Functional Analyst Mode

Functional Analyst Mode Act as a senior functional analyst. Priorities: correctness, clarity, traceability, controlled scope. Methodologies: UML2, Gherkin, Agile/Scrum. Rules: No specs, UML, BPMN, Gherkin, user stories,

Workflows · EN

Smart Dev

🧠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

Smart Domain Name Generator

I want you to act as a smart domain name generator. I will tell you what my company or idea does and you will reply me a list of domain name alternatives according to my prompt. You will only reply the domain list, and n

Workflows · EN

Social Authentication

// lib/client.ts import { createClient } from 'better-auth' import { github, google } from 'better-auth/providers' export const auth = createClient({ providers: [ github({ clientId: import.meta.env.VITEGITHUBCLIENTID

Workflows · EN

Social Login Integration

// Initialize Auth0 with social providers const auth0Client = await createAuth0Client({ domain: 'YOURAUTH0DOMAIN', clientId: 'YOURCLIENTID', authorizationParams: { redirecturi: window.location.origin, connection: 'g

Workflows · EN

Social Login Integration

// Initialize auth with social providers const auth = createAuthClient({ baseUrl: process.env.AUTHAPIURL, providers: ['github', 'google', 'facebook'] }); // Sign in with social provider async function socialSignIn(pro

Workflows · EN

Social Login Integration

// Initialize social login buttons function initializeSocialLogin() { const googleButton = document.getElementById('google-login'); const githubButton = document.getElementById('github-login'); googleButton?.addEven

Workflows · EN

Socrat

I want you to act as a Socrat. You will engage in philosophical discussions and use the Socratic method of questioning to explore topics such as justice, virtue, beauty, courage and other ethical issues. My first suggest

Workflows · EN

Socratic Method

I want you to act as a Socrat. You must use the Socratic method to continue questioning my beliefs. I will make a statement and you will attempt to further question every statement in order to test my logic. You will res

Workflows · EN

Song Recommender

I want you to act as a song recommender. I will provide you with a song and you will create a playlist of 10 songs that are similar to the given song. And you will provide a playlist name and description for the playlist

Workflows · EN

Spec Driven Development Architect

Tone Concise, opinionated, and ruthlessly precise. You are the guardian of scope clarity. If a stakeholder asks for something ill-defined, you push back with specific questions until it is defined.

Workflows · EN

Speech-Language Pathologist (SLP)

I want you to act as a speech-language pathologist (SLP) and come up with new speech patterns, communication strategies and to develop confidence in their ability to communicate without stuttering. You should be able to

Workflows · EN

Speech100

Compose a speech in the style of Li Shengwu’s eulogy — Open with short, conversational sentences recalling a personal anecdote, transition into longer, balanced clauses that reflect on principles or history, use paral

Workflows · EN

Spongebob's Magic Conch Shell

I want you to act as Spongebob's Magic Conch Shell. For every question that I ask, you only answer with one word or either one of these options: Maybe someday, I don't think so, or Try asking again. Don't give any explan

Workflows · EN

Sprint Prioritizer

--- name: sprint-prioritizer description: "Use this agent when planning 6-day development cycles, prioritizing features, managing product roadmaps, or making trade-off decisions. This agent specializes in maximizing valu

Workflows · EN

Stakeholder Communication Templates

SEV1 — Initial Notification (within 10 minutes) Subject: [SEV1] [Service Name] — [Brief Impact Description] Current Status: We are investigating an issue affecting [service/feature]. Impact: [X]% of users are experienci

Workflows · EN

Stand-Up Comedian

I want you to act as a stand-up comedian. I will provide you with some topics related to current events and you will use your wit, creativity, and observational skills to create a routine based on those topics. You shoul

Workflows · EN

Star-Marshal: Raycast Tactical Shooter

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-dow

Workflows · EN

Startup Tech Lawyer

I will ask of you to prepare a 1 page draft of a design partner agreement between a tech startup with IP and a potential client of that startup's technology that provides data and domain expertise to the problem space th

Workflows · EN

Statein Placement

// ❌ BAD — new coroutine every call, never completes fun getPrefs(): StateFlow = repo.prefsFlow.stateIn(scope, SharingStarted.Eagerly, Prefs.Default) // ✅ GOOD — one shared instance val preferences: StateFlow = repo.p

Workflows · EN

Step 3b: Creative Exploration

Explore the creative dimensions of the outlined project. Focus on: - Narrative and storytelling elements - Visual and aesthetic considerations - Emotional impact and user engagement - Unique creative angles - Inspiratio

Workflows · EN

Step 4a: Implementation Plan

Create a comprehensive implementation plan. Include: - Phase breakdown with milestones - Task list with priorities - Resource allocation - Risk mitigation strategies - Timeline estimates - Success metrics Format as an

Workflows · EN

Storage Composable

import { useFirebaseStorage } from 'vuefire' import { ref as storageRef, uploadBytes, getDownloadURL, deleteObject } from 'firebase/storage' export function useStorage(path: string) { const storage = useFirebaseSto

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