Live site β promptbrowser.cc
A fast, browsable UI over a 30-vendor archive of leaked and published system prompts and tool schemas from the AI coding agents shaping how we ship software β Cursor, v0, Claude Code, Codex CLI, Devin, Windsurf, Replit, Warp, VSCode Agent, and more.
Read the prompts, search every line, diff how a single agent's prompt evolved across versions, or compare two agents side-by-side.
Built on the prompt corpus collected by @x1xhlol. All prompts are archived verbatim from their original sources.
- Vendor index β 30+ AI coding agents, instant filter
- Full-text search β substring search across every
.txt/.mdprompt with highlighted snippets and deep-links - Diff view β line-level diff between two prompt versions (perfect for
Cursor Prompts/v1.0β2.0β2025-09-03) - Side-by-side compare β raw two-pane view of two prompts in the same vendor
- Polished viewer β JSON pretty-print, copy, line-wrap toggle, line/char stats
- Dark / light mode with system preference
- Next.js 15 (App Router, React 19)
- Tailwind CSS v4
- shadcn/ui-style local primitives β no registry dependency
difffor line-level diffinglucide-reacticons,next-themesfor theming
.
βββ prompts/ # The archive β one directory per vendor (Cursor, v0, β¦)
βββ prompt-explorer/ # The Next.js app
βββ assets/ # Brand assets used by the original archive
The data loader walks prompts/ at build time, so nothing is duplicated and adding a new vendor is just a git mv.
cd prompt-explorer
npm install
npm run devOpen http://localhost:3000.
cd prompt-explorer
npm run build
npm start| Route | What it does |
|---|---|
/ |
Vendor grid + name filter |
/[vendor] |
Vendor detail with file viewer |
/[vendor]/compare?a=β¦&b=β¦&mode=diffside |
Compare two prompts in a vendor |
/search?q=β¦ |
Full-text search across every prompt |
/api/search |
JSON endpoint backing the search page |
- Drop a directory under
prompts/named after the product. - Add
Prompt.txt(or*Prompt.txtsplit by mode/model) and optionallyTools.json. - Versions get separate files β
Agent Prompt v1.0.txt,Agent Prompt 2.0.txt,Agent Prompt 2025-09-03.txt. Never overwrite history. - Restart
next devβ the vendor appears automatically.
The prompt corpus is collected by @x1xhlol. This repo adds the prompt-explorer app and the prompts/ reorganization.