diff --git a/.scripts/README.md b/.scripts/README.md index 3c838819..75c7f641 100644 --- a/.scripts/README.md +++ b/.scripts/README.md @@ -8,15 +8,16 @@ Contributions to `idxtool` are welcome. Please submit pull requests or issues to ``` usage: idxtool.py [-h] [--toc [TOC]] [--find-gpt FIND_GPT] - [--parse-gptfile PARSE_GPTFILE] [--rename] + [--template TEMPLATE] [--parse-gptfile PARSE_GPTFILE] + [--rename] idxtool: A GPT indexing and searching tool for the CSP repo options: -h, --help show this help message and exit --toc [TOC] Rebuild the table of contents (TOC.md) file - --find-gpt FIND_GPT - Find a GPT file by its ID or full ChatGPT URL + --find-gpt FIND_GPT Find a GPT file by its ID or full ChatGPT URL + --template TEMPLATE Creates an empty GPT template file from a ChatGPT URL --parse-gptfile PARSE_GPTFILE Parses a GPT file name --rename Rename the GPT file names to include their GPT ID @@ -27,6 +28,7 @@ options: - Rebuild TOC: Use `--toc` to rebuild the table of contents (TOC.md) file. - Find GPT File: Use `--find-gpt [GPTID or Full ChatGPT URL or a response file with IDs/URLs]` to find a GPT by its ID or URL. - Rename GPT: Use `--rename` to rename all the GPTs to include their GPTID as prefix. +- Create a starter template GPT file: Use `--template [Full ChatGPT URL]` to create a starter template GPT file. - Help: Use `--help` to display the help message and usage instructions. ## Example diff --git a/.scripts/idxtool.py b/.scripts/idxtool.py index ed178d0c..6cff66e6 100644 --- a/.scripts/idxtool.py +++ b/.scripts/idxtool.py @@ -8,15 +8,17 @@ """ import sys, os, argparse -from gptparser import GptMarkdownFile, enum_gpts, parse_gpturl, enum_gpt_files from typing import Tuple from urllib.parse import quote +import gptparser +from gptparser import enum_gpts, parse_gpturl, enum_gpt_files, get_prompts_path + TOC_FILENAME = 'TOC.md' TOC_GPT_MARKER_LINE = '- GPTs' def get_toc_file() -> str: - return os.path.abspath(os.path.join(os.path.dirname(__file__), '..', TOC_FILENAME)) + return os.path.abspath(os.path.join(os.path.dirname(__file__), '..', TOC_FILENAME)) def rename_gpts(): nb_ok = nb_total = 0 @@ -39,7 +41,7 @@ def rename_gpts(): print(f"[+] {basename} -> {os.path.basename(new_fn)}") if os.system(f"git mv \"{gpt.filename}\" \"{new_fn}\"") == 0: nb_ok += 1 - + msg = f"Renamed {nb_ok} out of {nb_total} GPT files." ok = nb_ok == nb_total if all_renamed_already: @@ -50,11 +52,11 @@ def rename_gpts(): def parse_gpt_file(filename) -> Tuple[bool, str]: - ok, gpt = GptMarkdownFile.parse(filename) + ok, gpt = gptparser.GptMarkdownFile.parse(filename) if ok: file_name_without_ext = os.path.splitext(os.path.basename(filename))[0] dst_fn = os.path.join( - os.path.dirname(filename), + os.path.dirname(filename), f"{file_name_without_ext}.new.md") gpt.save(dst_fn) else: @@ -63,7 +65,7 @@ def parse_gpt_file(filename) -> Tuple[bool, str]: return (ok, gpt) -def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: +def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: """ Rebuilds the table of contents (TOC.md) file by reading all the GPT files in the prompts/gpts directory. """ @@ -79,7 +81,7 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: if not os.path.exists(toc_in): return (False, f"TOC File '{toc_in}' does not exist.") - + # Read the TOC file and find the marker line for the GPT instructions out = [] marker_found = False @@ -91,8 +93,8 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: else: out.append(line) if not marker_found: - return (False, f"Could not find the marker '{TOC_GPT_MARKER_LINE}' in '{toc_in}'.") - + return (False, f"Could not find the marker '{TOC_GPT_MARKER_LINE}' in '{toc_in}'. Please revert the TOC file and try again.") + # Write the TOC file all the way up to the marker line try: ofile = open(toc_out, 'w', encoding='utf-8') @@ -107,16 +109,21 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: for ok, gpt in enum_gpts(): nb_total += 1 if ok: - if id := gpt.id(): + if gpt_id := gpt.id(): nb_ok += 1 - gpts.append((id, gpt)) + gpts.append((gpt_id, gpt)) else: print(f"[!] No ID detected: {gpt.filename}") else: print(f"[!] {gpt}") - # Consistently sort the GPTs by ID - gpts.sort(key=lambda x: x[0].id) + # Consistently sort the GPTs by ID and GPTs title + def gpts_sorter(key): + gpt_id, gpt = key + version = f"{gpt.get('version')}" if gpt.get('version') else '' + return f"{gpt.get('title')}{version} (id: {gpt_id.id}))" + gpts.sort(key=gpts_sorter) + for id, gpt in gpts: file_link = f"./prompts/gpts/{quote(os.path.basename(gpt.filename))}" version = f" {gpt.get('version')}" if gpt.get('version') else '' @@ -130,7 +137,40 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]: if ok: print(msg) return (ok, msg) - + +def make_template(url, verbose=True): + """Creates an empty GPT template file from a ChatGPT URL""" + if not (gpt_info := parse_gpturl(url)): + msg = f"Invalid ChatGPT URL: '{url}'" + if verbose: + print(msg) + return (False, msg) + + filename = os.path.join(get_prompts_path(), f"{gpt_info.id}_RENAMEME.md") + if os.path.exists(filename): + msg = f"File '{filename}' already exists." + if verbose: + print(msg) + return (False, msg) + + with open(filename, 'w', encoding='utf-8') as file: + for field, info in gptparser.SUPPORTED_FIELDS.items(): + if field == 'verif_status': + continue + if field == 'url': + file.write(f"{gptparser.FIELD_PREFIX} {info.display}: {url}\n\n") + elif field == 'instructions': + file.write(f"{gptparser.FIELD_PREFIX} {info.display}:\n```markdown\n{info.display} here...\n```\n\n") + elif field == 'logo': + file.write(f"{gptparser.FIELD_PREFIX} {info.display}: \n\n") + else: + file.write(f"{gptparser.FIELD_PREFIX} {info.display}: {info.display} goes here...\n\n") + + msg = f"Created template '{filename}' for URL '{url}'" + if verbose: + print(msg) + return (True, msg) + def find_gptfile(keyword, verbose=True): """Find a GPT file by its ID or full ChatGPT URL The ID can be prefixed with '@' to indicate a file containing a list of GPT IDs. @@ -172,9 +212,10 @@ def find_gptfile(keyword, verbose=True): def main(): parser = argparse.ArgumentParser(description='idxtool: A GPT indexing and searching tool for the CSP repo') - + parser.add_argument('--toc', nargs='?', const='', type=str, help='Rebuild the table of contents (TOC.md) file') parser.add_argument('--find-gpt', type=str, help='Find a GPT file by its ID or full ChatGPT URL') + parser.add_argument('--template', type=str, help='Creates an empty GPT template file from a ChatGPT URL') parser.add_argument('--parse-gptfile', type=str, help='Parses a GPT file name') parser.add_argument('--rename', action='store_true', help='Rename the GPT file names to include their GPT ID') @@ -192,6 +233,8 @@ def main(): print(err) elif args.find_gpt: find_gptfile(args.find_gpt) + elif args.template: + make_template(args.template) elif args.rename: ok, err = rename_gpts() if not ok: diff --git a/.vscode/launch.json b/.vscode/launch.json index 2f7e9c9b..4eb10561 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,11 +2,11 @@ "version": "0.2.0", "configurations": [ { - "name": "idxtool-Update Logo", + "name": "idxtool-any", "type": "python", "request": "launch", "program": "${workspaceFolder}/.scripts/idxtool.py", - "args": ["--update-logo", "logo.png"], + "args": ["--template", "https://chat.openai.com/g/g-svehnI9xP-retro-adventures"], "console": "integratedTerminal" }, { diff --git a/README.md b/README.md index e4834462..59e403ab 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,19 @@ # ChatGPT_system_prompt -valuable agent's system prompt,find GPT's prompt in [TOC.md](./TOC.md) + +This repository is a collection of various system prompts for ChatGPT and [custom GPTs](https://openai.com/blog/introducing-gpts), providing significant educational value in learning about writing system prompts and creating custom GPTs. + +For a quick start, go to [TOC.md](./TOC.md) to find the specific GPT or system prompt you need. + +Other topics: + +- [How to get system prompt?](#how-to-get-system-prompt) +- [How to get knowledge files?](#how-to-get-knowledge-files) +- [How to protect GPT instructions?](#how-to-protect-gpt-instructions) +- [How to get GPT's action schema?](#how-to-get-gpts-action-schema) +- [Contribution](#contribution) +- [Learning resources](#learning-resources) +- [Find system prompts and custom GPTs](./TOC.md) + @@ -96,9 +110,9 @@ some useful GPTs may be helpful: 2. [GPT Shop Keeper](https://chat.openai.com/g/g-22ZUhrOgu-gpt-shop-keeper) -## If you want to contribute to this repo +## Contribution -Please follow the format below; it is important to keep the format consistent for the [`idxtool`](./scripts/idxtool.py). +Please follow the format below; it is important to keep the format consistent for the [`idxtool`](./.scripts/README.md). ```markdown GPT URL: You put the GPT url here @@ -121,6 +135,12 @@ GPT Extras: Put a list of extra stuff, for example Chrome Extension links, etc. Please check a simple GPT file [here](./prompts/gpts/Animal%20Chefs.md) and mimic the format. +Alternatively, use the (`idxtool`)[./.scripts/README.md] to create a template file: + +```bash +python idxtool.py --template https://chat.openai.com/g/g-3ngv8eP6R-gpt-white-hack +``` + With respect to the GPT file names, please follow the format below for new GPT submissions: ```markdown @@ -154,7 +174,6 @@ NOTE: Please try not to use weird file name characters and avoid using '[' and ' - https://www.reddit.com/r/ChatGPTJailbreak/ - https://github.com/0xeb/gpt-analyst/ - ## Disclaimer The sharing of these prompts/instructions is purely for reference and knowledge sharing, aimed at enhancing everyone's prompt writing skills and raising awareness about prompt injection security. diff --git a/TOC.md b/TOC.md index 0adcc039..a31f0ba4 100644 --- a/TOC.md +++ b/TOC.md @@ -19,236 +19,236 @@ - [tldraw](./prompts/opensource-prj/tldraw.md) - GPTs - - [Node.js GPT - Project Builder (id: 02zmxuXd5)](./prompts/gpts/02zmxuXd5_Node.js%20GPT%20-%20Project%20Builder.md) - - [Toronto City Council Guide (id: 0GxNbgD2H)](./prompts/gpts/0GxNbgD2H_Toronto%20City%20Council.md) - - [Synthia 😋🌟 (id: 0Lsw9zT25)](./prompts/gpts/0Lsw9zT25_Synthia.md) - - [Mr. Ranedeer Config Wizard (id: 0XxT0SGIS)](./prompts/gpts/0XxT0SGIS_Mr.%20Ranedeer%20Config%20Wizard.md) - - [確定申告について教えてくれる君 (id: 0ol5nPrqr)](./prompts/gpts/0ol5nPrqr_%E7%A2%BA%E5%AE%9A%E7%94%B3%E5%91%8A%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E6%95%99%E3%81%88%E3%81%A6%E3%81%8F%E3%82%8C%E3%82%8B%E5%90%9B.md) - - [老爸,该怎么办? (id: 0t8c9nEXR)](./prompts/gpts/0t8c9nEXR_%E8%80%81%E7%88%B8%EF%BC%8C%E8%AF%A5%E6%80%8E%E4%B9%88%E5%8A%9E.md) - - [Flow Speed Typist (id: 12ZUJ6puA)](./prompts/gpts/12ZUJ6puA_Flow%20Speed%20Typist.md) - - [武林秘传:江湖探险 Secrets of Martial Arts (id: 1qBbVvF0T)](./prompts/gpts/1qBbVvF0T_%E6%AD%A6%E6%9E%97%E7%A7%98%E4%BC%A0_%E6%B1%9F%E6%B9%96%E6%8E%A2%E9%99%A9.md) - - [GPT Shop Keeper v1.2 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.2%5D.md) - - [GPT Shop Keeper v1.0 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.0%5D.md) - - [Radical Selfishness (id: 26jvBBVTr)](./prompts/gpts/26jvBBVTr_Radical%20Selfishness.md) - - [GPT Code Copilot (id: 2DQzU5UZl)](./prompts/gpts/2DQzU5UZl_CodeCopilot.md) - - [DesignerGPT (id: 2Eo3NxuS7)](./prompts/gpts/2Eo3NxuS7_DesignerGPT.md) - - [非虚构作品的阅读高手 (id: 2Fjd2BP2O)](./prompts/gpts/2Fjd2BP2O_%E9%9D%9E%E8%99%9A%E6%9E%84%E4%BD%9C%E5%93%81%E7%9A%84%E9%98%85%E8%AF%BB%E9%AB%98%E6%89%8B.md) - - [TaxGPT (id: 2Xi2xYPa3)](./prompts/gpts/2Xi2xYPa3_TaxGPT.md) - - [Unbreakable GPT (id: 2dBCALcDz)](./prompts/gpts/2dBCALcDz_Unbreakable%20GPT.md) - - [CuratorGPT (id: 3Df4zQppr)](./prompts/gpts/3Df4zQppr_CuratorGPT.md) - - [Dejargonizer (id: 3V1JcLD92)](./prompts/gpts/3V1JcLD92_Dejargonizer.md) - - [Sous Chef (id: 3VrgJ1GpH)](./prompts/gpts/3VrgJ1GpH_sous_chef.md) - - [Succubus (id: 3rtbLUIUO)](./prompts/gpts/3rtbLUIUO_Succubus.md) - - [AskTheCode (id: 3s6SJ5V7S)](./prompts/gpts/3s6SJ5V7S_AskTheCode.md) - - [🎀My excellent classmates (Help with my homework!) (id: 3x2jopNpP)](./prompts/gpts/3x2jopNpP_My%20excellent%20classmates-Help%20with%20my%20homework.md) - - [X Optimizer GPTOptimizes X posts for peak engagement - By Rowan Cheung (id: 4CktagQWR)](./prompts/gpts/4CktagQWR_X%20Optimizer%20GPT.md) - - [plugin surf (id: 4Rf4RWwe7)](./prompts/gpts/4Rf4RWwe7_plugin%20surf.md) - - [Code Copilot (id: 5qFFjp0bP)](./prompts/gpts/5qFFjp0bP_Code%20Copilot.md) - - [Plant Based Buddy (id: 5tVXJ2p3p)](./prompts/gpts/5tVXJ2p3p_Plant%20Based%20Buddy.md) - - [The History of Everything (id: 6AIsip2Fo)](./prompts/gpts/6AIsip2Fo_The%20History%20of%20Everything.md) - - [LeetCode Problem Solver (id: 6EPxrMA8m)](./prompts/gpts/6EPxrMA8m_LeetCode%20Problem%20Solver.md) - - [解梦大师 (id: 6Uo9lNEFV)](./prompts/gpts/6Uo9lNEFV_%E8%A7%A3%E6%A2%A6%E5%A4%A7%E5%B8%88.md) - - [Salvador (id: 6iEq5asfX)](./prompts/gpts/6iEq5asfX_Salvador.md) - - [王阳明 (id: 6jFncOc0w)](./prompts/gpts/6jFncOc0w_%E7%8E%8B%E9%98%B3%E6%98%8E.md) + - [10x Engineer (id: nUwUAwUZm)](./prompts/gpts/nUwUAwUZm_10x%20Engineer.md) + - [20K Vocab builder (id: jrW2FRbTX)](./prompts/gpts/jrW2FRbTX_20K%20Vocab%20builder.md) + - [42master-Beck (id: i4OHvQXkc)](./prompts/gpts/i4OHvQXkc_42master-Beck.md) + - [42master-Style (id: pyF1sFgzK)](./prompts/gpts/pyF1sFgzK_42master-Style.md) - [AI Bestie (id: 6jlF3ag0Y)](./prompts/gpts/6jlF3ag0Y_AI%20Bestie.md) - - [Murder Mystery Mayhem (id: 82dEDeoN3)](./prompts/gpts/82dEDeoN3_Murder%20Mystery%20Mayhem.md) - - [Santa (id: 84tjozO5q)](./prompts/gpts/84tjozO5q_Santa.md) - - [短视频脚本 (id: 87zN9yfMy)](./prompts/gpts/87zN9yfMy_%E7%9F%AD%E8%A7%86%E9%A2%91%E8%84%9A%E6%9C%AC.md) - - [Calendar GPT (id: 8OcWVLenu)](./prompts/gpts/8OcWVLenu_Calendar%20GPT.md) - - [完蛋,我被美女包围了(AI同人) (id: 8ex81F0ym)](./prompts/gpts/8ex81F0ym_%E5%AE%8C%E8%9B%8B%EF%BC%8C%E6%88%91%E8%A2%AB%E7%BE%8E%E5%A5%B3%E5%8C%85%E5%9B%B4%E4%BA%86%28AI%E5%90%8C%E4%BA%BA%29.md) - - [[deleted] Super Describe (id: 9qWC0oyBd)](./prompts/gpts/9qWC0oyBd_Super%20Describe.md) - - [Write For Me (id: B3hgivKK9)](./prompts/gpts/B3hgivKK9_Write%20For%20Me.md) - - [SEObot (id: BfmuJziwz)](./prompts/gpts/BfmuJziwz_SEObot.md) - - [Interview Coach (id: Br0UFtDCR)](./prompts/gpts/Br0UFtDCR_Interview%20Coach.md) - - [凌凤箫 (id: BrWB0e4Tw)](./prompts/gpts/BrWB0e4Tw_%E5%87%8C%E5%87%A4%E7%AE%AB.md) - - [Story Spock (id: C635cEk6K)](./prompts/gpts/C635cEk6K_Story%20Spock.md) - - [Video Game Almanac (id: CXIpGA7ub)](./prompts/gpts/CXIpGA7ub_Video%20Game%20Almanac.md) - - [Bao Image OCR (id: CuuiG0G3Z)](./prompts/gpts/CuuiG0G3Z_Bao%20Image%20OCR.md) - - [知识渊博的健身教练 (id: CxR7vUU0o)](./prompts/gpts/CxR7vUU0o_%E7%9F%A5%E8%AF%86%E6%B8%8A%E5%8D%9A%E7%9A%84%E5%81%A5%E8%BA%AB%E6%95%99%E7%BB%83.md) - - [超级Dalle (id: D4RzWGfXs)](./prompts/gpts/D4RzWGfXs_%E8%B6%85%E7%BA%A7Dalle.md) - - [BioCode V2 (id: DDnJR7g5C)](./prompts/gpts/DDnJR7g5C_BioCode%20V2.md) - - [Coloring Book Hero (id: DerYxX7rA)](./prompts/gpts/DerYxX7rA_coloring_book_hero.md) - - [Writing Assistant (id: DpGlZrobT)](./prompts/gpts/DpGlZrobT_Writing%20Assistant.md) - - [Poe Bot Creator (id: E0BtBRrf5)](./prompts/gpts/E0BtBRrf5_Poe%20Bot%20Creator.md) - - [Math Mentor (id: ENhijiiwK)](./prompts/gpts/ENhijiiwK_math_mentor.md) - - [Automation Consultant by Zapier (id: ERKZdxC6D)](./prompts/gpts/ERKZdxC6D_Automation%20Consultant%20by%20Zapier.md) - - [CEO GPT (id: EvV57BRZ0)](./prompts/gpts/EvV57BRZ0_CEO%20GPT.md) - - [Flipper Zero App Builder (id: EwFUWU7YB)](./prompts/gpts/EwFUWU7YB_Flipper%20Zero%20App%20Builder.md) - - [Diffusion Master (id: FMXlNpFkB)](./prompts/gpts/FMXlNpFkB_Diffusion%20Master.md) - - [MetabolismBoosterGPT (id: FOawqrxih)](./prompts/gpts/FOawqrxih_MetabolismBoosterGPT.md) - - [Cosmic Dream (id: FdMHL1sNo)](./prompts/gpts/FdMHL1sNo_Cosmic%20Dream.md) - - [Virtual Sweetheart (id: FjiRmCEVx)](./prompts/gpts/FjiRmCEVx_Virtual%20Sweetheart.md) - - [ChatPRD (id: G5diVh12v)](./prompts/gpts/G5diVh12v_ChatPRD.md) - - [ALL IN GPT (id: G9xpNjjMi)](./prompts/gpts/G9xpNjjMi_ALL%20IN%20GPT.md) - - [PhoneixInk (id: GJdH0BxMk)](./prompts/gpts/GJdH0BxMk_Phoneix%20Ink.md) + - [AI Doctor (id: vYzt7bvAm)](./prompts/gpts/vYzt7bvAm_AI%20Doctor.md) - [AI Lover (id: GWdqYPusV)](./prompts/gpts/GWdqYPusV_AI%20Lover.md) - - [Universal Primer (id: GbLbctpPz)](./prompts/gpts/GbLbctpPz_Universal%20Primer.md) - - [Evolution Chamber (id: GhEwyi2R1)](./prompts/gpts/GhEwyi2R1_Evolution%20Chamber.md) - - [What should I watch? (id: Gm9cCA5qg)](./prompts/gpts/Gm9cCA5qg_What%20should%20I%20watch.md) - - [Doc Maker (id: Gt6Z8pqWF)](./prompts/gpts/Gt6Z8pqWF_Doc%20Maker.md) - - [LLM Daily (id: H8dDj1Odo)](./prompts/gpts/H8dDj1Odo_LLM%20Daily.md) - - [Executive f(x)n (id: H93fevKeK)](./prompts/gpts/H93fevKeK_Executive%20f%28x%29n.md) - - [Mind Hack (id: H9bxyOEYn)](./prompts/gpts/H9bxyOEYn_Mind%20Hack.md) - - [BibiGPT.co (id: HEChZ7eza)](./prompts/gpts/HEChZ7eza_BibiGPT.co.md) - - [Data Analysis (id: HMNcP6w7d)](./prompts/gpts/HMNcP6w7d_data_nalysis.md) + - [AI PDF 對話導師 aka 小樊登 (id: iTKuCS2iV)](./prompts/gpts/iTKuCS2iV_AI%20PDF%20Dialogue%20Tutor.md) + - [AI Paper Polisher Pro (id: VX52iRD3r)](./prompts/gpts/VX52iRD3r_AI%20Paper%20Polisher%20Pro.md) + - [AI算命 (id: cbNeVpiuC)](./prompts/gpts/cbNeVpiuC_AI%20Fortune%20Telling.md) + - [ALL IN GPT (id: G9xpNjjMi)](./prompts/gpts/G9xpNjjMi_ALL%20IN%20GPT.md) - [API Docs (id: I1XNbsyDK)](./prompts/gpts/I1XNbsyDK_ChatGPT%20-%20API%20Docs.md) - - [Screenplay GPT (id: INlwuHdxU)](./prompts/gpts/INlwuHdxU_Screenplay%20GPT.md) - - [FramerGPT (id: IcZbvOaf4)](./prompts/gpts/IcZbvOaf4_FramerGPT.md) - - [HumanWriterGPT (id: JBE7uEN9u)](./prompts/gpts/JBE7uEN9u_HumanWriterGPT.md) - - [Strap UI (id: JOulUmG1f)](./prompts/gpts/JOulUmG1f_Strap%20UI.md) - - [toonGPT (id: Jsefk8PeL)](./prompts/gpts/Jsefk8PeL_toonGPT.md) - - [The Shaman (id: Klhv0H49u)](./prompts/gpts/Klhv0H49u_The%20Shaman.md) - - [OCR-GPT (id: L29PpDmgg)](./prompts/gpts/L29PpDmgg_OCR-GPT.md) - - [ScholarAI (id: L2HknCZTC)](./prompts/gpts/L2HknCZTC_ScholarAI.md) + - [AboutMe (id: hOBBFG8U1)](./prompts/gpts/hOBBFG8U1_AboutMe.md) + - [ActionsGPT (id: TYEliDU6A)](./prompts/gpts/TYEliDU6A_ActionsGPT.md) + - [Ads Generator by joe (id: WBQKGsGm3)](./prompts/gpts/WBQKGsGm3_Ads%20Generator%20by%20joe.md) + - [Agi.zip (id: r4ckjls47)](./prompts/gpts/r4ckjls47_Agi_zip.md) + - [Ai PDF (id: V2KIUZSj0)](./prompts/gpts/V2KIUZSj0_Ai%20PDF.md) + - [Animal Chefs (id: U3VHptOvM)](./prompts/gpts/U3VHptOvM_Animal%20Chefs.md) + - [AskTheCode (id: 3s6SJ5V7S)](./prompts/gpts/3s6SJ5V7S_AskTheCode.md) + - [Automation Consultant by Zapier (id: ERKZdxC6D)](./prompts/gpts/ERKZdxC6D_Automation%20Consultant%20by%20Zapier.md) + - [Avatar Maker by HeadshotPro (id: afTYtrccz)](./prompts/gpts/afTYtrccz_Avatar%20Maker%20by%20HeadshotPro.md) + - [BabyAgi.txt (id: lzbeEOr9Y)](./prompts/gpts/lzbeEOr9Y_BabyAgi_txt.md) + - [Bake Off (id: YA8Aglh2g)](./prompts/gpts/YA8Aglh2g_Bake%20Off.md) + - [Bao Image OCR (id: CuuiG0G3Z)](./prompts/gpts/CuuiG0G3Z_Bao%20Image%20OCR.md) + - [BibiGPT.co (id: HEChZ7eza)](./prompts/gpts/HEChZ7eza_BibiGPT.co.md) + - [BioCode V2 (id: DDnJR7g5C)](./prompts/gpts/DDnJR7g5C_BioCode%20V2.md) + - [Blog Post Generator (id: SO1P9FFKP)](./prompts/gpts/SO1P9FFKP_Blog%20Post%20Generator.md) + - [Book to Prompt (id: h4gjGg7a0)](./prompts/gpts/h4gjGg7a0_Book%20to%20Prompt.md) + - [Breakdown: Outline Any Topic (id: bWpihiZ0d)](./prompts/gpts/bWpihiZ0d_Breakdown_Outline%20Any%20Topic.md) - [Briefly (id: LNsEQH5rz)](./prompts/gpts/LNsEQH5rz_Briefly.md) - - [[latest] Vue.js GPT (id: LXEGvZLUS)](./prompts/gpts/LXEGvZLUS_%5Blatest%5D%20Vue.js%20GPT.md) - - [OpenStorytelling Plus (id: LppT0lwkB)](./prompts/gpts/LppT0lwkB_OpenStorytelling%20Plus.md) - - [There's An API For That - The #1 API Finder (id: LrNKhqZfA)](./prompts/gpts/LrNKhqZfA_There%27s%20An%20API%20For%20That%20-%20The%20%231%20API%20Finder.md) - - [Siren (id: MBkOkD76H)](./prompts/gpts/MBkOkD76H_Siren.md) - - [CIPHERON 🧪 (id: MQrMwDe4M)](./prompts/gpts/MQrMwDe4M_Cipheron.md) - - [MidJourney Prompt Generator (id: MUJ3zHjvn)](./prompts/gpts/MUJ3zHjvn_MidJourney%20Prompt%20Generator.md) - - [Logo Maker (id: Mc4XM2MQP)](./prompts/gpts/Mc4XM2MQP_Logo%20Maker.md) - - [情感对话大师——帮你回复女生 (id: MgGYzeyyK)](./prompts/gpts/MgGYzeyyK_%E6%83%85%E6%84%9F%E5%AF%B9%E8%AF%9D%E5%A4%A7%E5%B8%88%E2%80%94%E2%80%94%E5%B8%AE%E4%BD%A0%E5%9B%9E%E5%A4%8D%E5%A5%B3%E7%94%9F.md) - - [天官庙的刘半仙 (id: NVaMkYa04)](./prompts/gpts/NVaMkYa04_%E5%A4%A9%E5%AE%98%E5%BA%99%E7%9A%84%E5%88%98%E5%8D%8A%E4%BB%99.md) - - [GPT Shield v.04 (id: NdDdtfZJo)](./prompts/gpts/NdDdtfZJo_GPT%20Shield%5Bv.04%5D.md) - [Business Plan Sage (id: NsLil9uoU)](./prompts/gpts/NsLil9uoU_Business%20Plan%20Sage.md) - - [genz 4 meme (id: OCOyXYJjW)](./prompts/gpts/OCOyXYJjW_genz_4_meme.md) - - [悲慘世界 RPG (id: OSVW9rZqu)](./prompts/gpts/OSVW9rZqu_%E6%82%B2%E6%85%98%E4%B8%96%E7%95%8C%20RPG.md) - - [ID Photo Pro (id: OVHGnZl5G)](./prompts/gpts/OVHGnZl5G_ID%20Photo%20Pro.md) - - [枫叶林 (id: P890478mJ)](./prompts/gpts/P890478mJ_%E6%9E%AB%E5%8F%B6%E6%9E%97.md) - - [[deleted] 骂醒恋爱脑 (id: PUalJKyJj)](./prompts/gpts/PUalJKyJj_%E9%AA%82%E9%86%92%E6%81%8B%E7%88%B1%E8%84%91.md) - - [Mocktail Mixologist (id: PXlrhc1MV)](./prompts/gpts/PXlrhc1MV_mocktail_mixologist.md) - - [Laundry Buddy (id: QrGDSn90Q)](./prompts/gpts/QrGDSn90Q_laundry_buddy.md) - - [Product GPT (id: QvgPbQlOx)](./prompts/gpts/QvgPbQlOx_Product%20GPT.md) - - [脏话连篇 (id: RGBeEuIgg)](./prompts/gpts/RGBeEuIgg_%E8%84%8F%E8%AF%9D%E8%BF%9E%E7%AF%87.md) - - [Nomad List (id: RnFjPkxAt)](./prompts/gpts/RnFjPkxAt_Nomad%20List.md) - - [EmojAI (id: S4LziUWji)](./prompts/gpts/S4LziUWji_EmojAI.md) - - [GPT Action Schema Creator (id: SENFY7fep)](./prompts/gpts/SENFY7fep_GPT%20Action%20Schema%20Creator.md) - - [img2img & image edit (id: SIE5101qP)](./prompts/gpts/SIE5101qP_img2img.md) - - [Blog Post Generator (id: SO1P9FFKP)](./prompts/gpts/SO1P9FFKP_Blog%20Post%20Generator.md) - - [Meme Magic (id: SQTa6OMNN)](./prompts/gpts/SQTa6OMNN_Meme%20Magic.md) - - [Codey (id: SuWVXlmkP)](./prompts/gpts/SuWVXlmkP_Codey.md) - - [Game Time (id: Sug6mXozT)](./prompts/gpts/Sug6mXozT_game_time.md) - - [The Negotiator (id: TTTAK9GuS)](./prompts/gpts/TTTAK9GuS_the_negotiator.md) - - [GymStreak Workout Creator (id: TVDhLW5fm)](./prompts/gpts/TVDhLW5fm_GymStreak%20Workout%20Creator.md) - - [ActionsGPT (id: TYEliDU6A)](./prompts/gpts/TYEliDU6A_ActionsGPT.md) - - [[deleted] 完蛋!我爱上了姐姐 (id: ThfYYYz5m)](./prompts/gpts/ThfYYYz5m_%E5%AE%8C%E8%9B%8B%EF%BC%81%E6%88%91%E7%88%B1%E4%B8%8A%E4%BA%86%E5%A7%90%E5%A7%90.md) + - [CEO GPT (id: EvV57BRZ0)](./prompts/gpts/EvV57BRZ0_CEO%20GPT.md) + - [CIPHERON 🧪 (id: MQrMwDe4M)](./prompts/gpts/MQrMwDe4M_Cipheron.md) + - [Calendar GPT (id: 8OcWVLenu)](./prompts/gpts/8OcWVLenu_Calendar%20GPT.md) + - [Can't Hack This 0.3 (id: l40jmWXnV)](./prompts/gpts/l40jmWXnV_Can%27t%20Hack%20This%5B0.3%5D.md) + - [Canva (id: alKfVrz9K)](./prompts/gpts/alKfVrz9K_Canva.md) + - [Carrier Pidgeon v1 (id: me6BlV4cF)](./prompts/gpts/me6BlV4cF_Carrier%20Pidgeon%5Bv1%5D.md) - [Cauldron (id: TnyOV07bC)](./prompts/gpts/TnyOV07bC_Cauldron.md) - - [Animal Chefs (id: U3VHptOvM)](./prompts/gpts/U3VHptOvM_Animal%20Chefs.md) + - [Character Forger (id: waDWNw2J3)](./prompts/gpts/waDWNw2J3_Character%20Forger.md) + - [Chat NeurIPS (id: roTFoEAkP)](./prompts/gpts/roTFoEAkP_Chat%20NeurIPS.md) + - [ChatGPT Classic (id: YyyyMT9XH)](./prompts/gpts/YyyyMT9XH_gpt4_classic.md) + - [ChatPRD (id: G5diVh12v)](./prompts/gpts/G5diVh12v_ChatPRD.md) + - [Chibi Kohaku (猫音コハク) (id: pHgfp5zic)](./prompts/gpts/pHgfp5zic_Chibi%20Kohaku.md) - [Choose your own adventure! (id: U6y5TqwA9)](./prompts/gpts/U6y5TqwA9_Choose%20your%20own%20adventure%21.md) - - [World Class Prompt Engineer (id: UMzfCVA9Z)](./prompts/gpts/UMzfCVA9Z_World%20Class%20Prompt%20Engineer.md) - - [Socratic Mentor (id: UaKXFhSfO)](./prompts/gpts/UaKXFhSfO_Socratic%20Mentor.md) - - [LegolizeGPT (id: UxBchV9VU)](./prompts/gpts/UxBchV9VU_LegolizeGPT.md) - - [Ai PDF (id: V2KIUZSj0)](./prompts/gpts/V2KIUZSj0_Ai%20PDF.md) - - [The Rizz Game (id: VJfk8tcd8)](./prompts/gpts/VJfk8tcd8_The%20Rizz%20Game.md) - - [AI Paper Polisher Pro (id: VX52iRD3r)](./prompts/gpts/VX52iRD3r_AI%20Paper%20Polisher%20Pro.md) + - [ClearGPT (id: t8YaZcv1X)](./prompts/gpts/t8YaZcv1X_ClearGPT.md) + - [Code Copilot (id: 5qFFjp0bP)](./prompts/gpts/5qFFjp0bP_Code%20Copilot.md) - [Code Critic Gilfoyle (id: VmzCWnc46)](./prompts/gpts/VmzCWnc46_Code%20Critic%20Gilfoyle.md) - - [Ads Generator by joe (id: WBQKGsGm3)](./prompts/gpts/WBQKGsGm3_Ads%20Generator%20by%20joe.md) - - [Tech Support Advisor (id: WKIaLGGem)](./prompts/gpts/WKIaLGGem_tech_support_advisor.md) - - [Starter Pack Generator (id: XlQF3MOnd)](./prompts/gpts/XlQF3MOnd_Starter%20Pack%20Generator.md) - - [YT transcriber (id: Xt0xteYE8)](./prompts/gpts/Xt0xteYE8_YT%20transcriber.md) - - [Bake Off (id: YA8Aglh2g)](./prompts/gpts/YA8Aglh2g_Bake%20Off.md) - - [痤疮治疗指南 (id: YfKcgLiSr)](./prompts/gpts/YfKcgLiSr_%E7%97%A4%E7%96%AE%E6%B2%BB%E7%96%97%E6%8C%87%E5%8D%97.md) - - [GPT Builder (id: YoI0yk3Kv)](./prompts/gpts/YoI0yk3Kv_GPT%20Builder.md) - - [ChatGPT Classic (id: YyyyMT9XH)](./prompts/gpts/YyyyMT9XH_gpt4_classic.md) - - [OpenAPI Builder (id: ZHFKmHM1R)](./prompts/gpts/ZHFKmHM1R_OpenAPI%20Builder.md) - - [[deleted] Fantasy Book Weaver (id: a4YGO3q49)](./prompts/gpts/a4YGO3q49_Fantasy%20Book%20Weaver.md) - - [HormoziGPT (id: aIWEfl3zH)](./prompts/gpts/aIWEfl3zH_HormoziGPT.md) - - [子言女友 (id: aYtbDci0G)](./prompts/gpts/aYtbDci0G_%E5%AD%90%E8%A8%80%E5%A5%B3%E5%8F%8B.md) - - [Avatar Maker by HeadshotPro (id: afTYtrccz)](./prompts/gpts/afTYtrccz_Avatar%20Maker%20by%20HeadshotPro.md) - - [Canva (id: alKfVrz9K)](./prompts/gpts/alKfVrz9K_Canva.md) - - [老妈,我爱你 (id: b17NWuOUD)](./prompts/gpts/b17NWuOUD_%E8%80%81%E5%A6%88%EF%BC%8C%E6%88%91%E7%88%B1%E4%BD%A0.md) - - [Breakdown: Outline Any Topic (id: bWpihiZ0d)](./prompts/gpts/bWpihiZ0d_Breakdown_Outline%20Any%20Topic.md) - - [The Secret of Monkey Island: Amsterdam (id: bZoD0qWT8)](./prompts/gpts/bZoD0qWT8_The%20Secret%20of%20Monkey%20Island%20Amsterdam.md) - - [Secret Code Guardian (id: bn1w7q8hm)](./prompts/gpts/bn1w7q8hm_Secret%20Code%20Guardian.md) - - [鐵公雞 (id: bnVWHsTX9)](./prompts/gpts/bnVWHsTX9_%E9%90%B5%E5%85%AC%E9%9B%9E.md) - - [ResearchGPT (id: bo0FiWLY7)](./prompts/gpts/bo0FiWLY7_ResearchGPT.md) - - [KoeGPT (id: bu2lGvTTH)](./prompts/gpts/bu2lGvTTH_KoeGPT.md) - - [Email Responder Pro (id: butcDDLSA)](./prompts/gpts/butcDDLSA_Email%20Responder%20Pro.md) - - [Negative Nancy (id: c7Wi7WLOM)](./prompts/gpts/c7Wi7WLOM_Negative%20Nancy.md) - - [攻击型领导 (id: cW3ZTUQ41)](./prompts/gpts/cW3ZTUQ41_%E6%94%BB%E5%87%BB%E5%9E%8B%E9%A2%86%E5%AF%BC.md) - - [AI算命 (id: cbNeVpiuC)](./prompts/gpts/cbNeVpiuC_AI%20Fortune%20Telling.md) - - [Outfit Generator (id: csCTyILmx)](./prompts/gpts/csCTyILmx_Outfit%20Generator.md) - - [YT Summarizer (id: dHRRUFODc)](./prompts/gpts/dHRRUFODc_YT%20Summarizer.md) - - [Storyteller (id: dmgFloZ5w)](./prompts/gpts/dmgFloZ5w_Storyteller.md) - - [[deleted] Girlfriend Emma (id: eEFZELjV9)](./prompts/gpts/eEFZELjV9_Girlfriend%20Emma.md) - - [React GPT - Project Builder (id: eSIFeP4GM)](./prompts/gpts/eSIFeP4GM_React%20GPT%20-%20Project%20Builder.md) - - [Email Proofreader (id: ebowB1582)](./prompts/gpts/ebowB1582_Email%20Proofreader.md) - - [广告文案大师 (id: f8phtYiLj)](./prompts/gpts/f8phtYiLj_%E5%B9%BF%E5%91%8A%E6%96%87%E6%A1%88%E5%A4%A7%E5%B8%88.md) - - [Hot Mods (id: fTA4FQ7wj)](./prompts/gpts/fTA4FQ7wj_hot_mods.md) - - [Storybook Vision (id: gFFsdkfMC)](./prompts/gpts/gFFsdkfMC_Storybook%20Vision.md) - - [Ebook Writer & Designer GPT (id: gNSMT0ySH)](./prompts/gpts/gNSMT0ySH_Ebook%20Writer%20%26%20Designer%20GPT.md) - - [Sticker Whiz (id: gPRWpLspC)](./prompts/gpts/gPRWpLspC_sticker_whiz.md) - - [Trey Ratcliff's Fun Photo Critique GPT (id: gWki9zYNV)](./prompts/gpts/gWki9zYNV_Trey%20Ratcliff%27s%20Photo%20Critique%20GPT.md) - - [Gif-PT (id: gbjSvXu6i)](./prompts/gpts/gbjSvXu6i_Gif-PT.md) - - [TherapistGPT (id: gmnjKZywZ)](./prompts/gpts/gmnjKZywZ_TherapistGPT.md) - - [Book to Prompt (id: h4gjGg7a0)](./prompts/gpts/h4gjGg7a0_Book%20to%20Prompt.md) - - [Manga Miko - Anime Girlfriend (id: hHYE7By6Y)](./prompts/gpts/hHYE7By6Y_Manga%20Miko%20-%20Anime%20Girlfriend.md) - - [AboutMe (id: hOBBFG8U1)](./prompts/gpts/hOBBFG8U1_AboutMe.md) - - [TailwindCSS builder - WindChat (id: hrRKy1YYK)](./prompts/gpts/hrRKy1YYK_TailwindCSS_Previewer_WindChat.md) - - [42master-Beck (id: i4OHvQXkc)](./prompts/gpts/i4OHvQXkc_42master-Beck.md) - - [未来問 (id: iL2R6mcaP)](./prompts/gpts/iL2R6mcaP_%E6%9C%AA%E6%9D%A5%E5%95%8F.md) - - [AI PDF 對話導師 aka 小樊登 (id: iTKuCS2iV)](./prompts/gpts/iTKuCS2iV_AI%20PDF%20Dialogue%20Tutor.md) - - [GPT Customizer, File Finder & JSON Action Creator (id: iThwkWDbA)](./prompts/gpts/iThwkWDbA_GPT%20Customizer%2C%20File%20Finder%20%26%20JSON%20Action%20Creator.md) - - [Midjourney Generator (id: iWNYzo5Td)](./prompts/gpts/iWNYzo5Td_Midjourney%20Generator.md) - - [小红书写作专家 (id: iWeTcmxdr)](./prompts/gpts/iWeTcmxdr_%E5%B0%8F%E7%BA%A2%E4%B9%A6%E5%86%99%E4%BD%9C%E4%B8%93%E5%AE%B6.md) - - [High-Quality Review Analyzer (id: inkifSixn)](./prompts/gpts/inkifSixn_High-Quality%20Review%20Analyzer.md) - - [New GPT-5 (id: jCYeXl5xh)](./prompts/gpts/jCYeXl5xh_New%20GPT-5.md) - - [20K Vocab builder (id: jrW2FRbTX)](./prompts/gpts/jrW2FRbTX_20K%20Vocab%20builder.md) - - [World Class Software Engineer (id: kLwmWO80d)](./prompts/gpts/kLwmWO80d_World%20Class%20Software%20Engineer.md) + - [Code Monkey (id: r4sudcvR3)](./prompts/gpts/r4sudcvR3_CodeMonkey.md) + - [Codey (id: SuWVXlmkP)](./prompts/gpts/SuWVXlmkP_Codey.md) + - [Coloring Book Hero (id: DerYxX7rA)](./prompts/gpts/DerYxX7rA_coloring_book_hero.md) + - [Coloring Page (id: pHqH0mDII)](./prompts/gpts/pHqH0mDII_Coloring%20Page.md) - [ConvertAnything (id: kMKw5tFmB)](./prompts/gpts/kMKw5tFmB_ConvertAnything.md) - - [Framer Partner Assistant (id: kVfn5SDio)](./prompts/gpts/kVfn5SDio_Framer%20Template%20Assistant.md) - - [春霞つくし Tsukushi Harugasumi (id: l1cAnHy7S)](./prompts/gpts/l1cAnHy7S_%E6%98%A5%E9%9C%9E%E3%81%A4%E3%81%8F%E3%81%97%20Tsukushi%20Harugasumi.md) - - [Can't Hack This 0.3 (id: l40jmWXnV)](./prompts/gpts/l40jmWXnV_Can%27t%20Hack%20This%5B0.3%5D.md) + - [Cosmic Dream (id: FdMHL1sNo)](./prompts/gpts/FdMHL1sNo_Cosmic%20Dream.md) - [Creative Writing Coach (id: lN1gKFnvL)](./prompts/gpts/lN1gKFnvL_creative_writing_coach.md) + - [CuratorGPT (id: 3Df4zQppr)](./prompts/gpts/3Df4zQppr_CuratorGPT.md) + - [Data Analysis (id: HMNcP6w7d)](./prompts/gpts/HMNcP6w7d_data_nalysis.md) + - [Dejargonizer (id: 3V1JcLD92)](./prompts/gpts/3V1JcLD92_Dejargonizer.md) + - [DesignerGPT (id: 2Eo3NxuS7)](./prompts/gpts/2Eo3NxuS7_DesignerGPT.md) + - [Diffusion Master (id: FMXlNpFkB)](./prompts/gpts/FMXlNpFkB_Diffusion%20Master.md) + - [Doc Maker (id: Gt6Z8pqWF)](./prompts/gpts/Gt6Z8pqWF_Doc%20Maker.md) + - [EZBRUSH Readable Jumbled Text Maker (id: tfw1MupAG)](./prompts/gpts/tfw1MupAG_EZBRUSH%20Readable%20Jumbled%20Text%20Maker.md) + - [Ebook Writer & Designer GPT (id: gNSMT0ySH)](./prompts/gpts/gNSMT0ySH_Ebook%20Writer%20%26%20Designer%20GPT.md) + - [Email Proofreader (id: ebowB1582)](./prompts/gpts/ebowB1582_Email%20Proofreader.md) + - [Email Responder Pro (id: butcDDLSA)](./prompts/gpts/butcDDLSA_Email%20Responder%20Pro.md) + - [EmojAI (id: S4LziUWji)](./prompts/gpts/S4LziUWji_EmojAI.md) + - [Evolution Chamber (id: GhEwyi2R1)](./prompts/gpts/GhEwyi2R1_Evolution%20Chamber.md) + - [Executive f(x)n (id: H93fevKeK)](./prompts/gpts/H93fevKeK_Executive%20f%28x%29n.md) + - [Flipper Zero App Builder (id: EwFUWU7YB)](./prompts/gpts/EwFUWU7YB_Flipper%20Zero%20App%20Builder.md) + - [Flow Speed Typist (id: 12ZUJ6puA)](./prompts/gpts/12ZUJ6puA_Flow%20Speed%20Typist.md) + - [Framer Partner Assistant (id: kVfn5SDio)](./prompts/gpts/kVfn5SDio_Framer%20Template%20Assistant.md) + - [FramerGPT (id: IcZbvOaf4)](./prompts/gpts/IcZbvOaf4_FramerGPT.md) - [GASGPT (id: lN2QGmoTw)](./prompts/gpts/lN2QGmoTw_GASGPT.md) - - [🍩 Get Simpsonized! 🍩 (id: lbLmoUxk6)](./prompts/gpts/lbLmoUxk6_Get%20Simpsonized.md) + - [GPT Action Schema Creator (id: SENFY7fep)](./prompts/gpts/SENFY7fep_GPT%20Action%20Schema%20Creator.md) + - [GPT Builder (id: YoI0yk3Kv)](./prompts/gpts/YoI0yk3Kv_GPT%20Builder.md) + - [GPT Code Copilot (id: 2DQzU5UZl)](./prompts/gpts/2DQzU5UZl_CodeCopilot.md) + - [GPT Customizer, File Finder & JSON Action Creator (id: iThwkWDbA)](./prompts/gpts/iThwkWDbA_GPT%20Customizer%2C%20File%20Finder%20%26%20JSON%20Action%20Creator.md) + - [GPT Shield v.04 (id: NdDdtfZJo)](./prompts/gpts/NdDdtfZJo_GPT%20Shield%5Bv.04%5D.md) + - [GPT Shop Keeper v1.0 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.0%5D.md) + - [GPT Shop Keeper v1.2 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.2%5D.md) - [GPTsdex (id: lfIUvAHBw)](./prompts/gpts/lfIUvAHBw_GPTsdex.md) - - [BabyAgi.txt (id: lzbeEOr9Y)](./prompts/gpts/lzbeEOr9Y_BabyAgi_txt.md) - - [SQL Expert (id: m5lMeGifF)](./prompts/gpts/m5lMeGifF_SQL%20Expert.md) - - [Carrier Pidgeon v1 (id: me6BlV4cF)](./prompts/gpts/me6BlV4cF_Carrier%20Pidgeon%5Bv1%5D.md) - - [Grimoire 1.16.6 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.6%5D.md) - - [Grimoire 1.16.3 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.3%5D.md) + - [Game Time (id: Sug6mXozT)](./prompts/gpts/Sug6mXozT_game_time.md) + - [Geopolitics GPT (id: noFRwbK6K)](./prompts/gpts/noFRwbK6K_Geopolitics%20GPT.md) + - [Gif-PT (id: gbjSvXu6i)](./prompts/gpts/gbjSvXu6i_Gif-PT.md) - [Grimoire 1.13 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.13%5D.md) - [Grimoire 1.16.1 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.1%5D.md) + - [Grimoire 1.16.3 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.3%5D.md) - [Grimoire 1.16.5 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.5%5D.md) - - [The Greatest Computer Science Tutor (id: nNixY14gM)](./prompts/gpts/nNixY14gM_The%20Greatest%20Computer%20Science%20Tutor.md) + - [Grimoire 1.16.6 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.6%5D.md) + - [GymStreak Workout Creator (id: TVDhLW5fm)](./prompts/gpts/TVDhLW5fm_GymStreak%20Workout%20Creator.md) + - [High-Quality Review Analyzer (id: inkifSixn)](./prompts/gpts/inkifSixn_High-Quality%20Review%20Analyzer.md) + - [HongKongGPT (id: xKUMlCfYe)](./prompts/gpts/xKUMlCfYe_HongKongGPT.md) + - [HormoziGPT (id: aIWEfl3zH)](./prompts/gpts/aIWEfl3zH_HormoziGPT.md) + - [Hot Mods (id: fTA4FQ7wj)](./prompts/gpts/fTA4FQ7wj_hot_mods.md) + - [HumanWriterGPT (id: JBE7uEN9u)](./prompts/gpts/JBE7uEN9u_HumanWriterGPT.md) + - [ID Photo Pro (id: OVHGnZl5G)](./prompts/gpts/OVHGnZl5G_ID%20Photo%20Pro.md) + - [Interview Coach (id: Br0UFtDCR)](./prompts/gpts/Br0UFtDCR_Interview%20Coach.md) + - [KoeGPT (id: bu2lGvTTH)](./prompts/gpts/bu2lGvTTH_KoeGPT.md) + - [LLM Daily (id: H8dDj1Odo)](./prompts/gpts/H8dDj1Odo_LLM%20Daily.md) + - [Laundry Buddy (id: QrGDSn90Q)](./prompts/gpts/QrGDSn90Q_laundry_buddy.md) + - [LeetCode Problem Solver (id: 6EPxrMA8m)](./prompts/gpts/6EPxrMA8m_LeetCode%20Problem%20Solver.md) + - [LegolizeGPT (id: UxBchV9VU)](./prompts/gpts/UxBchV9VU_LegolizeGPT.md) + - [Logo Maker (id: Mc4XM2MQP)](./prompts/gpts/Mc4XM2MQP_Logo%20Maker.md) + - [LogoGPT (id: z61XG6t54)](./prompts/gpts/z61XG6t54_LogoGPT.md) + - [Manga Miko - Anime Girlfriend (id: hHYE7By6Y)](./prompts/gpts/hHYE7By6Y_Manga%20Miko%20-%20Anime%20Girlfriend.md) + - [Math Mentor (id: ENhijiiwK)](./prompts/gpts/ENhijiiwK_math_mentor.md) + - [Meme Magic (id: SQTa6OMNN)](./prompts/gpts/SQTa6OMNN_Meme%20Magic.md) + - [MetabolismBoosterGPT (id: FOawqrxih)](./prompts/gpts/FOawqrxih_MetabolismBoosterGPT.md) + - [MidJourney Prompt Generator (id: MUJ3zHjvn)](./prompts/gpts/MUJ3zHjvn_MidJourney%20Prompt%20Generator.md) + - [Midjourney Generator (id: iWNYzo5Td)](./prompts/gpts/iWNYzo5Td_Midjourney%20Generator.md) + - [Mind Hack (id: H9bxyOEYn)](./prompts/gpts/H9bxyOEYn_Mind%20Hack.md) + - [Moby Dick RPG (id: tdyNANXla)](./prompts/gpts/tdyNANXla_Moby%20Dick%20RPG%20.md) + - [Mocktail Mixologist (id: PXlrhc1MV)](./prompts/gpts/PXlrhc1MV_mocktail_mixologist.md) + - [Mr. Ranedeer Config Wizard (id: 0XxT0SGIS)](./prompts/gpts/0XxT0SGIS_Mr.%20Ranedeer%20Config%20Wizard.md) + - [Murder Mystery Mayhem (id: 82dEDeoN3)](./prompts/gpts/82dEDeoN3_Murder%20Mystery%20Mayhem.md) - [Music Writer (id: nNynL8EtD)](./prompts/gpts/nNynL8EtD_Music%20Writer.md) - - [10x Engineer (id: nUwUAwUZm)](./prompts/gpts/nUwUAwUZm_10x%20Engineer.md) - - [Geopolitics GPT (id: noFRwbK6K)](./prompts/gpts/noFRwbK6K_Geopolitics%20GPT.md) - [MuskGPT (id: oMTSqwU4R)](./prompts/gpts/oMTSqwU4R_MuskGPT.md) - - [Sales Cold Email Coach (id: p0BV8aH3f)](./prompts/gpts/p0BV8aH3f_Sales%20Cold%20Email%20Coach.md) + - [Negative Nancy (id: c7Wi7WLOM)](./prompts/gpts/c7Wi7WLOM_Negative%20Nancy.md) + - [New GPT-5 (id: jCYeXl5xh)](./prompts/gpts/jCYeXl5xh_New%20GPT-5.md) + - [Node.js GPT - Project Builder (id: 02zmxuXd5)](./prompts/gpts/02zmxuXd5_Node.js%20GPT%20-%20Project%20Builder.md) + - [Nomad List (id: RnFjPkxAt)](./prompts/gpts/RnFjPkxAt_Nomad%20List.md) + - [OCR-GPT (id: L29PpDmgg)](./prompts/gpts/L29PpDmgg_OCR-GPT.md) + - [OpenAPI Builder (id: ZHFKmHM1R)](./prompts/gpts/ZHFKmHM1R_OpenAPI%20Builder.md) + - [OpenStorytelling Plus (id: LppT0lwkB)](./prompts/gpts/LppT0lwkB_OpenStorytelling%20Plus.md) + - [Outfit Generator (id: csCTyILmx)](./prompts/gpts/csCTyILmx_Outfit%20Generator.md) + - [PhoneixInk (id: GJdH0BxMk)](./prompts/gpts/GJdH0BxMk_Phoneix%20Ink.md) + - [Pic-book Artist (id: wJVjE9bQs)](./prompts/gpts/wJVjE9bQs_Pic-book%20Artist.md) + - [Plant Based Buddy (id: 5tVXJ2p3p)](./prompts/gpts/5tVXJ2p3p_Plant%20Based%20Buddy.md) + - [Poe Bot Creator (id: E0BtBRrf5)](./prompts/gpts/E0BtBRrf5_Poe%20Bot%20Creator.md) + - [Product GPT (id: QvgPbQlOx)](./prompts/gpts/QvgPbQlOx_Product%20GPT.md) + - [Prompt Injection Maker (id: v8DghLbiu)](./prompts/gpts/v8DghLbiu_Prompt%20Injection%20Maker.md) - [Proofreader (id: pBjw280jj)](./prompts/gpts/pBjw280jj_Proofreader.md) - - [Chibi Kohaku (猫音コハク) (id: pHgfp5zic)](./prompts/gpts/pHgfp5zic_Chibi%20Kohaku.md) - - [Coloring Page (id: pHqH0mDII)](./prompts/gpts/pHqH0mDII_Coloring%20Page.md) - - [Viral Hooks Generator (id: pvLhTI3h1)](./prompts/gpts/pvLhTI3h1_Viral%20Hooks%20Generator.md) - - [42master-Style (id: pyF1sFgzK)](./prompts/gpts/pyF1sFgzK_42master-Style.md) - - [诗境画韵 (id: q4dSm9tCM)](./prompts/gpts/q4dSm9tCM_%E8%AF%97%E5%A2%83%E7%94%BB%E9%9F%B5.md) + - [Quality Raters SEO Guide (id: w2yOasK1r)](./prompts/gpts/w2yOasK1r_Quality%20Raters%20SEO%20Guide.md) + - [QuantFinance (id: tveXvXU5g)](./prompts/gpts/tveXvXU5g_QuantFinance.md) + - [Radical Selfishness (id: 26jvBBVTr)](./prompts/gpts/26jvBBVTr_Radical%20Selfishness.md) + - [React GPT - Project Builder (id: eSIFeP4GM)](./prompts/gpts/eSIFeP4GM_React%20GPT%20-%20Project%20Builder.md) + - [ResearchGPT (id: bo0FiWLY7)](./prompts/gpts/bo0FiWLY7_ResearchGPT.md) + - [Retro Adventures (id: svehnI9xP)](./prompts/gpts/svehnI9xP_Retro%20Adventures.md) + - [SEObot (id: BfmuJziwz)](./prompts/gpts/BfmuJziwz_SEObot.md) + - [SQL Expert (id: m5lMeGifF)](./prompts/gpts/m5lMeGifF_SQL%20Expert.md) + - [SWOT Analysis (id: v1M5Gn9kE)](./prompts/gpts/v1M5Gn9kE_SWOT%20Analysis.md) + - [Sales Cold Email Coach (id: p0BV8aH3f)](./prompts/gpts/p0BV8aH3f_Sales%20Cold%20Email%20Coach.md) + - [Salvador (id: 6iEq5asfX)](./prompts/gpts/6iEq5asfX_Salvador.md) + - [Santa (id: 84tjozO5q)](./prompts/gpts/84tjozO5q_Santa.md) + - [ScholarAI (id: L2HknCZTC)](./prompts/gpts/L2HknCZTC_ScholarAI.md) + - [Screenplay GPT (id: INlwuHdxU)](./prompts/gpts/INlwuHdxU_Screenplay%20GPT.md) + - [Secret Code Guardian (id: bn1w7q8hm)](./prompts/gpts/bn1w7q8hm_Secret%20Code%20Guardian.md) + - [Simpsonize Me (id: tcmMldCYy)](./prompts/gpts/tcmMldCYy_Simpsonize%20Me.md) + - [Siren (id: MBkOkD76H)](./prompts/gpts/MBkOkD76H_Siren.md) - [SmartCartGPT (id: q8HsJfG6z)](./prompts/gpts/q8HsJfG6z_SmartCartGPT.md) - - [怼怼哥 (id: qJikAH8xC)](./prompts/gpts/qJikAH8xC_Sarcastic%20Humorist.md) + - [Socratic Mentor (id: UaKXFhSfO)](./prompts/gpts/UaKXFhSfO_Socratic%20Mentor.md) + - [Sous Chef (id: 3VrgJ1GpH)](./prompts/gpts/3VrgJ1GpH_sous_chef.md) + - [Starter Pack Generator (id: XlQF3MOnd)](./prompts/gpts/XlQF3MOnd_Starter%20Pack%20Generator.md) + - [Sticker Whiz (id: gPRWpLspC)](./prompts/gpts/gPRWpLspC_sticker_whiz.md) + - [Story Spock (id: C635cEk6K)](./prompts/gpts/C635cEk6K_Story%20Spock.md) + - [Storybook Vision (id: gFFsdkfMC)](./prompts/gpts/gFFsdkfMC_Storybook%20Vision.md) + - [Storyteller (id: dmgFloZ5w)](./prompts/gpts/dmgFloZ5w_Storyteller.md) + - [Strap UI (id: JOulUmG1f)](./prompts/gpts/JOulUmG1f_Strap%20UI.md) + - [Succubus (id: 3rtbLUIUO)](./prompts/gpts/3rtbLUIUO_Succubus.md) + - [Synthia 😋🌟 (id: 0Lsw9zT25)](./prompts/gpts/0Lsw9zT25_Synthia.md) + - [TailwindCSS builder - WindChat (id: hrRKy1YYK)](./prompts/gpts/hrRKy1YYK_TailwindCSS_Previewer_WindChat.md) + - [Take Code Captures (id: yKDul3yPH)](./prompts/gpts/yKDul3yPH_Take%20Code%20Captures.md) + - [TaxGPT (id: 2Xi2xYPa3)](./prompts/gpts/2Xi2xYPa3_TaxGPT.md) + - [Tech Support Advisor (id: WKIaLGGem)](./prompts/gpts/WKIaLGGem_tech_support_advisor.md) + - [The Greatest Computer Science Tutor (id: nNixY14gM)](./prompts/gpts/nNixY14gM_The%20Greatest%20Computer%20Science%20Tutor.md) + - [The History of Everything (id: 6AIsip2Fo)](./prompts/gpts/6AIsip2Fo_The%20History%20of%20Everything.md) + - [The Negotiator (id: TTTAK9GuS)](./prompts/gpts/TTTAK9GuS_the_negotiator.md) + - [The Rizz Game (id: VJfk8tcd8)](./prompts/gpts/VJfk8tcd8_The%20Rizz%20Game.md) + - [The Secret of Monkey Island: Amsterdam (id: bZoD0qWT8)](./prompts/gpts/bZoD0qWT8_The%20Secret%20of%20Monkey%20Island%20Amsterdam.md) + - [The Shaman (id: Klhv0H49u)](./prompts/gpts/Klhv0H49u_The%20Shaman.md) + - [TherapistGPT (id: gmnjKZywZ)](./prompts/gpts/gmnjKZywZ_TherapistGPT.md) + - [There's An API For That - The #1 API Finder (id: LrNKhqZfA)](./prompts/gpts/LrNKhqZfA_There%27s%20An%20API%20For%20That%20-%20The%20%231%20API%20Finder.md) + - [Toronto City Council Guide (id: 0GxNbgD2H)](./prompts/gpts/0GxNbgD2H_Toronto%20City%20Council.md) + - [Translator (id: z9rg9aIOS)](./prompts/gpts/z9rg9aIOS_Translator.md) - [Trending Tik Tok Hashtags Finder Tool (id: qu8dSBqEH)](./prompts/gpts/qu8dSBqEH_Trending%20Tik%20Tok%20Hashtags%20Finder%20Tool.md) - - [Agi.zip (id: r4ckjls47)](./prompts/gpts/r4ckjls47_Agi_zip.md) - - [Code Monkey (id: r4sudcvR3)](./prompts/gpts/r4sudcvR3_CodeMonkey.md) - - [Chat NeurIPS (id: roTFoEAkP)](./prompts/gpts/roTFoEAkP_Chat%20NeurIPS.md) + - [Trey Ratcliff's Fun Photo Critique GPT (id: gWki9zYNV)](./prompts/gpts/gWki9zYNV_Trey%20Ratcliff%27s%20Photo%20Critique%20GPT.md) + - [Unbreakable GPT (id: 2dBCALcDz)](./prompts/gpts/2dBCALcDz_Unbreakable%20GPT.md) + - [Universal Primer (id: GbLbctpPz)](./prompts/gpts/GbLbctpPz_Universal%20Primer.md) + - [Video Game Almanac (id: CXIpGA7ub)](./prompts/gpts/CXIpGA7ub_Video%20Game%20Almanac.md) - [Video Script Generator (id: rxlwmrnqa)](./prompts/gpts/rxlwmrnqa_Video%20Script%20Generator.md) - - [Retro Adventures (id: svehnI9xP)](./prompts/gpts/svehnI9xP_Retro%20Adventures.md) - - [ClearGPT (id: t8YaZcv1X)](./prompts/gpts/t8YaZcv1X_ClearGPT.md) - - [Simpsonize Me (id: tcmMldCYy)](./prompts/gpts/tcmMldCYy_Simpsonize%20Me.md) - - [Moby Dick RPG (id: tdyNANXla)](./prompts/gpts/tdyNANXla_Moby%20Dick%20RPG%20.md) - - [EZBRUSH Readable Jumbled Text Maker (id: tfw1MupAG)](./prompts/gpts/tfw1MupAG_EZBRUSH%20Readable%20Jumbled%20Text%20Maker.md) - - [QuantFinance (id: tveXvXU5g)](./prompts/gpts/tveXvXU5g_QuantFinance.md) + - [Viral Hooks Generator (id: pvLhTI3h1)](./prompts/gpts/pvLhTI3h1_Viral%20Hooks%20Generator.md) + - [Virtual Sweetheart (id: FjiRmCEVx)](./prompts/gpts/FjiRmCEVx_Virtual%20Sweetheart.md) - [Visual Weather Artist GPT (id: twUGxmpHv)](./prompts/gpts/twUGxmpHv_Visual%20Weather%20Artist%20GPT.md) - - [科技文章翻译 (id: uBhKUJJTl)](./prompts/gpts/uBhKUJJTl_%E7%A7%91%E6%8A%80%E6%96%87%E7%AB%A0%E7%BF%BB%E8%AF%91.md) - [Watercolor Illustrator GPT (id: uJm9S1uRB)](./prompts/gpts/uJm9S1uRB_Watercolor%20Illustrator%20GPT.md) - - [SWOT Analysis (id: v1M5Gn9kE)](./prompts/gpts/v1M5Gn9kE_SWOT%20Analysis.md) + - [What should I watch? (id: Gm9cCA5qg)](./prompts/gpts/Gm9cCA5qg_What%20should%20I%20watch.md) + - [World Class Prompt Engineer (id: UMzfCVA9Z)](./prompts/gpts/UMzfCVA9Z_World%20Class%20Prompt%20Engineer.md) + - [World Class Software Engineer (id: kLwmWO80d)](./prompts/gpts/kLwmWO80d_World%20Class%20Software%20Engineer.md) + - [Write For Me (id: B3hgivKK9)](./prompts/gpts/B3hgivKK9_Write%20For%20Me.md) + - [Writing Assistant (id: DpGlZrobT)](./prompts/gpts/DpGlZrobT_Writing%20Assistant.md) + - [X Optimizer GPTOptimizes X posts for peak engagement - By Rowan Cheung (id: 4CktagQWR)](./prompts/gpts/4CktagQWR_X%20Optimizer%20GPT.md) + - [YT Summarizer (id: dHRRUFODc)](./prompts/gpts/dHRRUFODc_YT%20Summarizer.md) + - [YT transcriber (id: Xt0xteYE8)](./prompts/gpts/Xt0xteYE8_YT%20transcriber.md) + - [[deleted] Fantasy Book Weaver (id: a4YGO3q49)](./prompts/gpts/a4YGO3q49_Fantasy%20Book%20Weaver.md) + - [[deleted] Girlfriend Emma (id: eEFZELjV9)](./prompts/gpts/eEFZELjV9_Girlfriend%20Emma.md) + - [[deleted] Super Describe (id: 9qWC0oyBd)](./prompts/gpts/9qWC0oyBd_Super%20Describe.md) + - [[deleted] 完蛋!我爱上了姐姐 (id: ThfYYYz5m)](./prompts/gpts/ThfYYYz5m_%E5%AE%8C%E8%9B%8B%EF%BC%81%E6%88%91%E7%88%B1%E4%B8%8A%E4%BA%86%E5%A7%90%E5%A7%90.md) + - [[deleted] 骂醒恋爱脑 (id: PUalJKyJj)](./prompts/gpts/PUalJKyJj_%E9%AA%82%E9%86%92%E6%81%8B%E7%88%B1%E8%84%91.md) + - [[latest] Vue.js GPT (id: LXEGvZLUS)](./prompts/gpts/LXEGvZLUS_%5Blatest%5D%20Vue.js%20GPT.md) + - [genz 4 meme (id: OCOyXYJjW)](./prompts/gpts/OCOyXYJjW_genz_4_meme.md) + - [img2img & image edit (id: SIE5101qP)](./prompts/gpts/SIE5101qP_img2img.md) + - [plugin surf (id: 4Rf4RWwe7)](./prompts/gpts/4Rf4RWwe7_plugin%20surf.md) + - [toonGPT (id: Jsefk8PeL)](./prompts/gpts/Jsefk8PeL_toonGPT.md) + - [凌凤箫 (id: BrWB0e4Tw)](./prompts/gpts/BrWB0e4Tw_%E5%87%8C%E5%87%A4%E7%AE%AB.md) + - [天官庙的刘半仙 (id: NVaMkYa04)](./prompts/gpts/NVaMkYa04_%E5%A4%A9%E5%AE%98%E5%BA%99%E7%9A%84%E5%88%98%E5%8D%8A%E4%BB%99.md) + - [子言女友 (id: aYtbDci0G)](./prompts/gpts/aYtbDci0G_%E5%AD%90%E8%A8%80%E5%A5%B3%E5%8F%8B.md) + - [完蛋,我被美女包围了(AI同人) (id: 8ex81F0ym)](./prompts/gpts/8ex81F0ym_%E5%AE%8C%E8%9B%8B%EF%BC%8C%E6%88%91%E8%A2%AB%E7%BE%8E%E5%A5%B3%E5%8C%85%E5%9B%B4%E4%BA%86%28AI%E5%90%8C%E4%BA%BA%29.md) + - [小红书写作专家 (id: iWeTcmxdr)](./prompts/gpts/iWeTcmxdr_%E5%B0%8F%E7%BA%A2%E4%B9%A6%E5%86%99%E4%BD%9C%E4%B8%93%E5%AE%B6.md) + - [广告文案大师 (id: f8phtYiLj)](./prompts/gpts/f8phtYiLj_%E5%B9%BF%E5%91%8A%E6%96%87%E6%A1%88%E5%A4%A7%E5%B8%88.md) + - [怼怼哥 (id: qJikAH8xC)](./prompts/gpts/qJikAH8xC_Sarcastic%20Humorist.md) + - [悲慘世界 RPG (id: OSVW9rZqu)](./prompts/gpts/OSVW9rZqu_%E6%82%B2%E6%85%98%E4%B8%96%E7%95%8C%20RPG.md) + - [情感对话大师——帮你回复女生 (id: MgGYzeyyK)](./prompts/gpts/MgGYzeyyK_%E6%83%85%E6%84%9F%E5%AF%B9%E8%AF%9D%E5%A4%A7%E5%B8%88%E2%80%94%E2%80%94%E5%B8%AE%E4%BD%A0%E5%9B%9E%E5%A4%8D%E5%A5%B3%E7%94%9F.md) + - [攻击型领导 (id: cW3ZTUQ41)](./prompts/gpts/cW3ZTUQ41_%E6%94%BB%E5%87%BB%E5%9E%8B%E9%A2%86%E5%AF%BC.md) + - [春霞つくし Tsukushi Harugasumi (id: l1cAnHy7S)](./prompts/gpts/l1cAnHy7S_%E6%98%A5%E9%9C%9E%E3%81%A4%E3%81%8F%E3%81%97%20Tsukushi%20Harugasumi.md) + - [未来問 (id: iL2R6mcaP)](./prompts/gpts/iL2R6mcaP_%E6%9C%AA%E6%9D%A5%E5%95%8F.md) + - [枫叶林 (id: P890478mJ)](./prompts/gpts/P890478mJ_%E6%9E%AB%E5%8F%B6%E6%9E%97.md) + - [武林秘传:江湖探险 Secrets of Martial Arts (id: 1qBbVvF0T)](./prompts/gpts/1qBbVvF0T_%E6%AD%A6%E6%9E%97%E7%A7%98%E4%BC%A0_%E6%B1%9F%E6%B9%96%E6%8E%A2%E9%99%A9.md) - [猫耳美少女イラストメーカー (id: v1aRJ6GhG)](./prompts/gpts/v1aRJ6GhG_%E7%8C%AB%E8%80%B3%E7%BE%8E%E5%B0%91%E5%A5%B3%E3%82%A4%E3%83%A9%E3%82%B9%E3%83%88%E3%83%A1%E3%83%BC%E3%82%AB%E3%83%BC.md) - - [Prompt Injection Maker (id: v8DghLbiu)](./prompts/gpts/v8DghLbiu_Prompt%20Injection%20Maker.md) - - [AI Doctor (id: vYzt7bvAm)](./prompts/gpts/vYzt7bvAm_AI%20Doctor.md) - - [Quality Raters SEO Guide (id: w2yOasK1r)](./prompts/gpts/w2yOasK1r_Quality%20Raters%20SEO%20Guide.md) - - [Pic-book Artist (id: wJVjE9bQs)](./prompts/gpts/wJVjE9bQs_Pic-book%20Artist.md) - - [Character Forger (id: waDWNw2J3)](./prompts/gpts/waDWNw2J3_Character%20Forger.md) - - [HongKongGPT (id: xKUMlCfYe)](./prompts/gpts/xKUMlCfYe_HongKongGPT.md) + - [王阳明 (id: 6jFncOc0w)](./prompts/gpts/6jFncOc0w_%E7%8E%8B%E9%98%B3%E6%98%8E.md) + - [痤疮治疗指南 (id: YfKcgLiSr)](./prompts/gpts/YfKcgLiSr_%E7%97%A4%E7%96%AE%E6%B2%BB%E7%96%97%E6%8C%87%E5%8D%97.md) + - [知识渊博的健身教练 (id: CxR7vUU0o)](./prompts/gpts/CxR7vUU0o_%E7%9F%A5%E8%AF%86%E6%B8%8A%E5%8D%9A%E7%9A%84%E5%81%A5%E8%BA%AB%E6%95%99%E7%BB%83.md) + - [短视频脚本 (id: 87zN9yfMy)](./prompts/gpts/87zN9yfMy_%E7%9F%AD%E8%A7%86%E9%A2%91%E8%84%9A%E6%9C%AC.md) + - [確定申告について教えてくれる君 (id: 0ol5nPrqr)](./prompts/gpts/0ol5nPrqr_%E7%A2%BA%E5%AE%9A%E7%94%B3%E5%91%8A%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E6%95%99%E3%81%88%E3%81%A6%E3%81%8F%E3%82%8C%E3%82%8B%E5%90%9B.md) + - [科技文章翻译 (id: uBhKUJJTl)](./prompts/gpts/uBhKUJJTl_%E7%A7%91%E6%8A%80%E6%96%87%E7%AB%A0%E7%BF%BB%E8%AF%91.md) + - [老妈,我爱你 (id: b17NWuOUD)](./prompts/gpts/b17NWuOUD_%E8%80%81%E5%A6%88%EF%BC%8C%E6%88%91%E7%88%B1%E4%BD%A0.md) + - [老爸,该怎么办? (id: 0t8c9nEXR)](./prompts/gpts/0t8c9nEXR_%E8%80%81%E7%88%B8%EF%BC%8C%E8%AF%A5%E6%80%8E%E4%B9%88%E5%8A%9E.md) + - [脏话连篇 (id: RGBeEuIgg)](./prompts/gpts/RGBeEuIgg_%E8%84%8F%E8%AF%9D%E8%BF%9E%E7%AF%87.md) - [英文校正GPT (id: xk6AdDGIW)](./prompts/gpts/xk6AdDGIW_%E8%8B%B1%E6%96%87%E6%A0%A1%E6%AD%A3GPT.md) - - [Take Code Captures (id: yKDul3yPH)](./prompts/gpts/yKDul3yPH_Take%20Code%20Captures.md) - - [LogoGPT (id: z61XG6t54)](./prompts/gpts/z61XG6t54_LogoGPT.md) - - [Translator (id: z9rg9aIOS)](./prompts/gpts/z9rg9aIOS_Translator.md) + - [解梦大师 (id: 6Uo9lNEFV)](./prompts/gpts/6Uo9lNEFV_%E8%A7%A3%E6%A2%A6%E5%A4%A7%E5%B8%88.md) + - [诗境画韵 (id: q4dSm9tCM)](./prompts/gpts/q4dSm9tCM_%E8%AF%97%E5%A2%83%E7%94%BB%E9%9F%B5.md) + - [超级Dalle (id: D4RzWGfXs)](./prompts/gpts/D4RzWGfXs_%E8%B6%85%E7%BA%A7Dalle.md) + - [鐵公雞 (id: bnVWHsTX9)](./prompts/gpts/bnVWHsTX9_%E9%90%B5%E5%85%AC%E9%9B%9E.md) + - [非虚构作品的阅读高手 (id: 2Fjd2BP2O)](./prompts/gpts/2Fjd2BP2O_%E9%9D%9E%E8%99%9A%E6%9E%84%E4%BD%9C%E5%93%81%E7%9A%84%E9%98%85%E8%AF%BB%E9%AB%98%E6%89%8B.md) + - [🍩 Get Simpsonized! 🍩 (id: lbLmoUxk6)](./prompts/gpts/lbLmoUxk6_Get%20Simpsonized.md) + - [🎀My excellent classmates (Help with my homework!) (id: 3x2jopNpP)](./prompts/gpts/3x2jopNpP_My%20excellent%20classmates-Help%20with%20my%20homework.md)