Merge pull request #65 from lallouslab/sorted

idxtool: feature complete
This commit is contained in:
Elias Bachaalany 2023-12-19 05:43:00 -08:00 committed by GitHub
commit 47e1f3e4e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 327 additions and 316 deletions

View file

@ -2,68 +2,71 @@
The `idxtool` is a GPT indexing and searching tool for the CSP repo (ChatGPT System Prompt). The `idxtool` is a GPT indexing and searching tool for the CSP repo (ChatGPT System Prompt).
Contributions to `idxtool` are welcome. Please submit pull requests or issues to the CSP repo for review.
## Command line ## Command line
``` ```
usage: idxtool.py [-h] [--update-logo UPDATE_LOGO] [--toc [TOC]] usage: idxtool.py [-h] [--toc [TOC]] [--find-gpt FIND_GPT]
[--update-description UPDATE_DESCRIPTION] [--parse-gptfile PARSE_GPTFILE] [--rename]
[--find-gptfile FIND_GPTFILE] [--find-gpttoc FIND_GPTTOC]
[--parse-gptfile PARSE_GPTFILE] [--rename RENAME]
idxtool: A GPT indexing and searching tool for the CSP repo idxtool: A GPT indexing and searching tool for the CSP repo
options: options:
-h, --help show this help message and exit -h, --help show this help message and exit
--update-logo UPDATE_LOGO
Update the logos of the GPT file
--toc [TOC] Rebuild the table of contents (TOC.md) file --toc [TOC] Rebuild the table of contents (TOC.md) file
--update-description UPDATE_DESCRIPTION --find-gpt FIND_GPT
Update the descriptions of the GPT file Find a GPT file by its ID or full ChatGPT URL
--find-gptfile FIND_GPTFILE
Find a GPT by its ID or name
--find-gpttoc FIND_GPTTOC
Searches the TOC.md file for the given gptid or free
style string
--parse-gptfile PARSE_GPTFILE --parse-gptfile PARSE_GPTFILE
Parses a GPT file name Parses a GPT file name
--rename Rename all the GPT file names to include their GPT ID --rename Rename the GPT file names to include their GPT ID
``` ```
## Features ## Features
- Update Logos: Use `--update-logo [filename]` to update the logos of the GPT file.
- Rebuild TOC: Use `--toc` to rebuild the table of contents (TOC.md) file. - Rebuild TOC: Use `--toc` to rebuild the table of contents (TOC.md) file.
- Update Descriptions: Use `--update-description [filename]` to update the descriptions of the GPT 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.
- Find GPT File: Use `--find-gptfile [gptid or gpt name in quotes]` to find a GPT by its ID or name.
- Find GPT in TOC: Use `--find-gpttoc [gptid or string]` to search the TOC.md file for a given gptid or free style string.
- Rename GPT: Use `--rename` to rename all the GPTs to include their GPTID as prefix. - Rename GPT: Use `--rename` to rename all the GPTs to include their GPTID as prefix.
- Help: Use `--help` to display the help message and usage instructions. - Help: Use `--help` to display the help message and usage instructions.
## Usage
To use the tool, run the following command in your terminal with the appropriate arguments:
```bash
python idxtool.py [arguments]
```
Replace `[arguments]` with one of the feature commands listed above.
## Example ## Example
To update the logos of a GPT file named `example_gpt.json`, run: To rebuild the [TOC.md](../TOC.md) file, run:
```bash ```bash
python idxtool.py --update-logo example_gpt.json python idxtool.py --toc
``` ```
## Installation To find a GPT by its ID, run:
No additional installation is required. Ensure that you have Python installed on your system to run the tool. ```bash
python idxtool.py --find-gpt 3rtbLUIUO
```
## Contributing or by URL:
```bash
python idxtool.py --find-gpt https://chat.openai.com/g/g-svehnI9xP-retro-adventures
```
Additionally, you can have a file with a list of IDs or URLs and pass it to the `--find-gpt` option:
```bash
python idxtool.py --find-gpt @gptids.txt
```
(note the '@' symbol).
The `gptids.txt` file contains a list of IDs or URLs, one per line:
```text
3rtbLUIUO
https://chat.openai.com/g/g-svehnI9xP-retro-adventures
#vYzt7bvAm
w2yOasK1r
waDWNw2J3
```
Contributions to `idxtool` are welcome. Please submit pull requests or issues to the CSP repo for review.
## License ## License

View file

@ -6,15 +6,17 @@ The GPT markdown files have to adhere to a very specific format described in the
import os, re import os, re
from collections import namedtuple from collections import namedtuple
from typing import Union, Tuple, Generator from typing import Union, Tuple, Generator, Iterator
compiled_pattern = re.compile(r'^([0-9a-z]{9})_([^\.]+)\.md$', re.IGNORECASE)
GPT_BASE_URL = 'https://chat.openai.com/g/g-' GPT_BASE_URL = 'https://chat.openai.com/g/g-'
GPT_BASE_URL_L = len(GPT_BASE_URL) GPT_BASE_URL_L = len(GPT_BASE_URL)
FIELD_PREFIX = 'GPT' FIELD_PREFIX = 'GPT'
GPT_FILE_ID_RE = re.compile(r'^([0-9a-z]{9})_(.*)\.md$', re.IGNORECASE)
"""GPT file name regex with ID and name capture."""
GPT_FILE_VERSION_RE = re.compile(r'\[([^]]*)\]\.md$', re.IGNORECASE) GPT_FILE_VERSION_RE = re.compile(r'\[([^]]*)\]\.md$', re.IGNORECASE)
"""GPT file name regex with version capture."""
GptFieldInfo = namedtuple('FieldInfo', ['order', 'display']) GptFieldInfo = namedtuple('FieldInfo', ['order', 'display'])
@ -149,19 +151,15 @@ def enum_gpts() -> Generator[Tuple[bool, Union[GptMarkdownFile, str]], None, Non
else: else:
yield (False, f"Failed to parse '{file_path}': {gpt}") yield (False, f"Failed to parse '{file_path}': {gpt}")
def enum_gpt_files() -> Generator[str, None, None]: def enum_gpt_files() -> Iterator[Tuple[str, str]]:
""" """
Enumerate all the GPT files in the prompts directory while relying on the files naming convention. Enumerate all the GPT files in the prompts directory while relying on the files naming convention.
To normalize all the GPT file names, run the `idxtool.py --rename` To normalize all the GPT file names, run the `idxtool.py --rename`
""" """
pattern = r'[a-z]{9}_[a-z]+\.[a-z]+'
prompts_path = get_prompts_path() prompts_path = get_prompts_path()
for file_path in os.listdir(prompts_path): for file_path in os.listdir(prompts_path):
_, ext = os.path.splitext(file_path) m = GPT_FILE_ID_RE.match(file_path)
if ext != '.md': if not m:
continue continue
file_path = os.path.join(prompts_path, file_path) file_path = os.path.join(prompts_path, file_path)
yield file_path yield (m.group(1), file_path)

View file

@ -1,14 +1,14 @@
""" """
idxtool is a script is used to perform various GPT indexing and searching tasks idxtool is a script is used to perform various GPT indexing and searching tasks
- Reformat all the GPT files in the source path and save them to the destination path. - Find a GPT file by its ID or full ChatGPT URL or via a file containing a list of GPT IDs.
- Rename all the GPTs to include their ChatGPT/g/ID in the filename. - Rename all the GPTs to include their ChatGPT/g/ID in the filename.
- Generate TOC - Generate TOC
- etc. - etc.
""" """
import sys, os, argparse import sys, os, argparse
from gptparser import GptMarkdownFile, enum_gpts, parse_gpturl from gptparser import GptMarkdownFile, enum_gpts, parse_gpturl, enum_gpt_files
from typing import Tuple from typing import Tuple
from urllib.parse import quote from urllib.parse import quote
@ -18,20 +18,6 @@ TOC_GPT_MARKER_LINE = '- GPTs'
def get_toc_file() -> str: 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 update_logo(filename):
if filename == '*':
print("TODO: Updating logo for all GPT files")
else:
print(f"TODO: Updating logo with file: {filename}")
raise NotImplementedError
def update_description(filename):
if filename == '*':
print("TODO: Updating description for all GPT files")
else:
print(f"TODO Updating description with file: {filename}")
raise NotImplementedError
def rename_gpts(): def rename_gpts():
nb_ok = nb_total = 0 nb_ok = nb_total = 0
all_renamed_already = True all_renamed_already = True
@ -117,15 +103,24 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]:
out.append(f"{TOC_GPT_MARKER_LINE}\n") out.append(f"{TOC_GPT_MARKER_LINE}\n")
nb_ok = nb_total = 0 nb_ok = nb_total = 0
gpts = []
for ok, gpt in enum_gpts(): for ok, gpt in enum_gpts():
nb_total += 1 nb_total += 1
if ok and (id := gpt.id()): if ok:
nb_ok += 1 if id := gpt.id():
file_link = f"./prompts/gpts/{quote(os.path.basename(gpt.filename))}" nb_ok += 1
version = f" {gpt.get('version')}" if gpt.get('version') else '' gpts.append((id, gpt))
out.append(f" - [{gpt.get('title')}{version} (id: {id.id})]({file_link})\n") else:
print(f"[!] No ID detected: {gpt.filename}")
else: else:
print(f"[!] {gpt.filename}") print(f"[!] {gpt}")
# Consistently sort the GPTs by ID
gpts.sort(key=lambda x: x[0].id)
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 ''
out.append(f" - [{gpt.get('title')}{version} (id: {id.id})]({file_link})\n")
ofile.writelines(out) ofile.writelines(out)
ofile.close() ofile.close()
@ -135,30 +130,51 @@ def rebuild_toc(toc_out: str = '') -> Tuple[bool, str]:
if ok: if ok:
print(msg) print(msg)
return (ok, msg) return (ok, msg)
def find_gpt_in_toc(gptid_or_string): def find_gptfile(keyword, verbose=True):
print(f"TODO: Searching TOC.md for GPT ID or string: {gptid_or_string}") """Find a GPT file by its ID or full ChatGPT URL
raise NotImplementedError The ID can be prefixed with '@' to indicate a file containing a list of GPT IDs.
"""
def find_gptfile(keyword): keyword = keyword.strip()
keyword = keyword.strip().tolower()
# Response file with a set of GPT IDs # Response file with a set of GPT IDs
if keyword.startswith('@'): if keyword.startswith('@'):
print(f"TODO: Finding GPT file with ID: {keyword}") with open(keyword[1:], 'r', encoding='utf-8') as file:
if gpt_info := parse_gpturl(keyword): ids = set()
keyword = gpt_info.id for line in file:
line = line.strip()
# Skip comments
if line.startswith('#'):
continue
# If the line is a GPT URL, then extract the ID
if gpt_info := parse_gpturl(line):
ids.add(gpt_info.id)
continue
# If not a GPT URL, then it's a GPT ID
ids.add(line)
elif gpt_info := parse_gpturl(keyword):
# A single GPT URL
ids = {gpt_info.id}
else:
# A single GPT ID
ids = {keyword}
if verbose:
print(f'Looking for GPT files with IDs: {", ".join(ids)}')
matches = []
for id, filename in enum_gpt_files():
if id in ids:
if verbose:
print(filename)
matches.append((id, filename))
return matches
print(f"TODO: Finding GPT with ID: {keyword}")
raise NotImplementedError
def main(): def main():
parser = argparse.ArgumentParser(description='idxtool: A GPT indexing and searching tool for the CSP repo') parser = argparse.ArgumentParser(description='idxtool: A GPT indexing and searching tool for the CSP repo')
parser.add_argument('--update-logo', type=str, help='Update the logos of the GPT file')
parser.add_argument('--toc', nargs='?', const='', type=str, help='Rebuild the table of contents (TOC.md) file') parser.add_argument('--toc', nargs='?', const='', type=str, help='Rebuild the table of contents (TOC.md) file')
parser.add_argument('--update-description', type=str, help='Update the descriptions of the GPT file') parser.add_argument('--find-gpt', type=str, help='Find a GPT file by its ID or full ChatGPT URL')
parser.add_argument('--find-gptfile', type=str, help='Find a GPT by its ID or name')
parser.add_argument('--find-gpttoc', type=str, help='Searches the TOC.md file for the given gptid or free style string')
parser.add_argument('--parse-gptfile', type=str, help='Parses a GPT file name') 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') parser.add_argument('--rename', action='store_true', help='Rename the GPT file names to include their GPT ID')
@ -166,23 +182,17 @@ def main():
ok = True ok = True
args = parser.parse_args() args = parser.parse_args()
if args.update_logo:
update_logo(args.update_logo)
if args.parse_gptfile: if args.parse_gptfile:
ok, err = parse_gpt_file(args.parse_gptfile) ok, err = parse_gpt_file(args.parse_gptfile)
if not ok: if not ok:
print(err) print(err)
if args.toc is not None: elif args.toc is not None:
ok, err = rebuild_toc(args.toc) ok, err = rebuild_toc(args.toc)
if not ok: if not ok:
print(err) print(err)
if args.update_description: elif args.find_gpt:
update_description(args.update_description) find_gptfile(args.find_gpt)
if args.find_gptfile: elif args.rename:
find_gptfile(args.find_gptfile)
if args.find_gpttoc:
find_gpt_in_toc(args.find_gpttoc)
if args.rename:
ok, err = rename_gpts() ok, err = rename_gpts()
if not ok: if not ok:
print(err) print(err)

448
TOC.md
View file

@ -19,236 +19,236 @@
- [tldraw](./prompts/opensource-prj/tldraw.md) - [tldraw](./prompts/opensource-prj/tldraw.md)
- GPTs - GPTs
- [Chat NeurIPS (id: roTFoEAkP)](./prompts/gpts/roTFoEAkP_Chat%20NeurIPS.md)
- [Quality Raters SEO Guide (id: w2yOasK1r)](./prompts/gpts/w2yOasK1r_Quality%20Raters%20SEO%20Guide.md)
- [The Rizz Game (id: VJfk8tcd8)](./prompts/gpts/VJfk8tcd8_The%20Rizz%20Game.md)
- [Coloring Page (id: pHqH0mDII)](./prompts/gpts/pHqH0mDII_Coloring%20Page.md)
- [Virtual Sweetheart (id: FjiRmCEVx)](./prompts/gpts/FjiRmCEVx_Virtual%20Sweetheart.md)
- [Writing Assistant (id: DpGlZrobT)](./prompts/gpts/DpGlZrobT_Writing%20Assistant.md)
- [Dejargonizer (id: 3V1JcLD92)](./prompts/gpts/3V1JcLD92_Dejargonizer.md)
- [Pic-book Artist (id: wJVjE9bQs)](./prompts/gpts/wJVjE9bQs_Pic-book%20Artist.md)
- [[deleted] 骂醒恋爱脑 (id: PUalJKyJj)](./prompts/gpts/PUalJKyJj_%E9%AA%82%E9%86%92%E6%81%8B%E7%88%B1%E8%84%91.md)
- [Radical Selfishness (id: 26jvBBVTr)](./prompts/gpts/26jvBBVTr_Radical%20Selfishness.md)
- [Starter Pack Generator (id: XlQF3MOnd)](./prompts/gpts/XlQF3MOnd_Starter%20Pack%20Generator.md)
- [Trending Tik Tok Hashtags Finder Tool (id: qu8dSBqEH)](./prompts/gpts/qu8dSBqEH_Trending%20Tik%20Tok%20Hashtags%20Finder%20Tool.md)
- [Gif-PT (id: gbjSvXu6i)](./prompts/gpts/gbjSvXu6i_Gif-PT.md)
- [AI PDF 對話導師 aka 小樊登 (id: iTKuCS2iV)](./prompts/gpts/iTKuCS2iV_AI%20PDF%20Dialogue%20Tutor.md)
- [Secret Code Guardian (id: bn1w7q8hm)](./prompts/gpts/bn1w7q8hm_Secret%20Code%20Guardian.md)
- [Prompt Injection Maker (id: v8DghLbiu)](./prompts/gpts/v8DghLbiu_Prompt%20Injection%20Maker.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)
- [MetabolismBoosterGPT (id: FOawqrxih)](./prompts/gpts/FOawqrxih_MetabolismBoosterGPT.md)
- [OpenAPI Builder (id: ZHFKmHM1R)](./prompts/gpts/ZHFKmHM1R_OpenAPI%20Builder.md)
- [Outfit Generator (id: csCTyILmx)](./prompts/gpts/csCTyILmx_Outfit%20Generator.md)
- [Coloring Book Hero (id: DerYxX7rA)](./prompts/gpts/DerYxX7rA_coloring_book_hero.md)
- [20K Vocab builder (id: jrW2FRbTX)](./prompts/gpts/jrW2FRbTX_20K%20Vocab%20builder.md)
- [LLM Daily (id: H8dDj1Odo)](./prompts/gpts/H8dDj1Odo_LLM%20Daily.md)
- [Grimoire 1.16.6 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.6%5D.md)
- [What should I watch? (id: Gm9cCA5qg)](./prompts/gpts/Gm9cCA5qg_What%20should%20I%20watch.md)
- [GPT Customizer, File Finder & JSON Action Creator (id: iThwkWDbA)](./prompts/gpts/iThwkWDbA_GPT%20Customizer%2C%20File%20Finder%20%26%20JSON%20Action%20Creator.md)
- [Story Spock (id: C635cEk6K)](./prompts/gpts/C635cEk6K_Story%20Spock.md)
- [Flipper Zero App Builder (id: EwFUWU7YB)](./prompts/gpts/EwFUWU7YB_Flipper%20Zero%20App%20Builder.md)
- [Music Writer (id: nNynL8EtD)](./prompts/gpts/nNynL8EtD_Music%20Writer.md)
- [AskTheCode (id: 3s6SJ5V7S)](./prompts/gpts/3s6SJ5V7S_AskTheCode.md)
- [Translator (id: z9rg9aIOS)](./prompts/gpts/z9rg9aIOS_Translator.md)
- [AI Doctor (id: vYzt7bvAm)](./prompts/gpts/vYzt7bvAm_AI%20Doctor.md)
- [BabyAgi.txt (id: lzbeEOr9Y)](./prompts/gpts/lzbeEOr9Y_BabyAgi_txt.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)
- [Ebook Writer & Designer GPT (id: gNSMT0ySH)](./prompts/gpts/gNSMT0ySH_Ebook%20Writer%20%26%20Designer%20GPT.md)
- [GymStreak Workout Creator (id: TVDhLW5fm)](./prompts/gpts/TVDhLW5fm_GymStreak%20Workout%20Creator.md)
- [解梦大师 (id: 6Uo9lNEFV)](./prompts/gpts/6Uo9lNEFV_%E8%A7%A3%E6%A2%A6%E5%A4%A7%E5%B8%88.md)
- [YT transcriber (id: Xt0xteYE8)](./prompts/gpts/Xt0xteYE8_YT%20transcriber.md)
- [CIPHERON 🧪 (id: MQrMwDe4M)](./prompts/gpts/MQrMwDe4M_Cipheron.md)
- [42master-Style (id: pyF1sFgzK)](./prompts/gpts/pyF1sFgzK_42master-Style.md)
- [Manga Miko - Anime Girlfriend (id: hHYE7By6Y)](./prompts/gpts/hHYE7By6Y_Manga%20Miko%20-%20Anime%20Girlfriend.md)
- [ClearGPT (id: t8YaZcv1X)](./prompts/gpts/t8YaZcv1X_ClearGPT.md)
- [QuantFinance (id: tveXvXU5g)](./prompts/gpts/tveXvXU5g_QuantFinance.md)
- [ID Photo Pro (id: OVHGnZl5G)](./prompts/gpts/OVHGnZl5G_ID%20Photo%20Pro.md)
- [Executive f(x)n (id: H93fevKeK)](./prompts/gpts/H93fevKeK_Executive%20f%28x%29n.md)
- [悲慘世界 RPG (id: OSVW9rZqu)](./prompts/gpts/OSVW9rZqu_%E6%82%B2%E6%85%98%E4%B8%96%E7%95%8C%20RPG.md)
- [Email Proofreader (id: ebowB1582)](./prompts/gpts/ebowB1582_Email%20Proofreader.md)
- [攻击型领导 (id: cW3ZTUQ41)](./prompts/gpts/cW3ZTUQ41_%E6%94%BB%E5%87%BB%E5%9E%8B%E9%A2%86%E5%AF%BC.md)
- [The Greatest Computer Science Tutor (id: nNixY14gM)](./prompts/gpts/nNixY14gM_The%20Greatest%20Computer%20Science%20Tutor.md)
- [Poe Bot Creator (id: E0BtBRrf5)](./prompts/gpts/E0BtBRrf5_Poe%20Bot%20Creator.md)
- [HormoziGPT (id: aIWEfl3zH)](./prompts/gpts/aIWEfl3zH_HormoziGPT.md)
- [Game Time (id: Sug6mXozT)](./prompts/gpts/Sug6mXozT_game_time.md)
- [ConvertAnything (id: kMKw5tFmB)](./prompts/gpts/kMKw5tFmB_ConvertAnything.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)
- [LegolizeGPT (id: UxBchV9VU)](./prompts/gpts/UxBchV9VU_LegolizeGPT.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)
- [Moby Dick RPG (id: tdyNANXla)](./prompts/gpts/tdyNANXla_Moby%20Dick%20RPG%20.md)
- [Siren (id: MBkOkD76H)](./prompts/gpts/MBkOkD76H_Siren.md)
- [子言女友 (id: aYtbDci0G)](./prompts/gpts/aYtbDci0G_%E5%AD%90%E8%A8%80%E5%A5%B3%E5%8F%8B.md)
- [枫叶林 (id: P890478mJ)](./prompts/gpts/P890478mJ_%E6%9E%AB%E5%8F%B6%E6%9E%97.md)
- [Breakdown: Outline Any Topic (id: bWpihiZ0d)](./prompts/gpts/bWpihiZ0d_Breakdown_Outline%20Any%20Topic.md)
- [World Class Software Engineer (id: kLwmWO80d)](./prompts/gpts/kLwmWO80d_World%20Class%20Software%20Engineer.md)
- [Bake Off (id: YA8Aglh2g)](./prompts/gpts/YA8Aglh2g_Bake%20Off.md)
- [GPT Action Schema Creator (id: SENFY7fep)](./prompts/gpts/SENFY7fep_GPT%20Action%20Schema%20Creator.md)
- [React GPT - Project Builder (id: eSIFeP4GM)](./prompts/gpts/eSIFeP4GM_React%20GPT%20-%20Project%20Builder.md)
- [Cauldron (id: TnyOV07bC)](./prompts/gpts/TnyOV07bC_Cauldron.md)
- [🍩 Get Simpsonized! 🍩 (id: lbLmoUxk6)](./prompts/gpts/lbLmoUxk6_Get%20Simpsonized.md)
- [HumanWriterGPT (id: JBE7uEN9u)](./prompts/gpts/JBE7uEN9u_HumanWriterGPT.md)
- [GPT Code Copilot (id: 2DQzU5UZl)](./prompts/gpts/2DQzU5UZl_CodeCopilot.md)
- [Grimoire 1.16.3 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.3%5D.md)
- [Storybook Vision (id: gFFsdkfMC)](./prompts/gpts/gFFsdkfMC_Storybook%20Vision.md)
- [Take Code Captures (id: yKDul3yPH)](./prompts/gpts/yKDul3yPH_Take%20Code%20Captures.md)
- [HongKongGPT (id: xKUMlCfYe)](./prompts/gpts/xKUMlCfYe_HongKongGPT.md)
- [SmartCartGPT (id: q8HsJfG6z)](./prompts/gpts/q8HsJfG6z_SmartCartGPT.md)
- [Sous Chef (id: 3VrgJ1GpH)](./prompts/gpts/3VrgJ1GpH_sous_chef.md)
- [王阳明 (id: 6jFncOc0w)](./prompts/gpts/6jFncOc0w_%E7%8E%8B%E9%98%B3%E6%98%8E.md)
- [GPTsdex (id: lfIUvAHBw)](./prompts/gpts/lfIUvAHBw_GPTsdex.md)
- [SQL Expert (id: m5lMeGifF)](./prompts/gpts/m5lMeGifF_SQL%20Expert.md)
- [ALL IN GPT (id: G9xpNjjMi)](./prompts/gpts/G9xpNjjMi_ALL%20IN%20GPT.md)
- [Carrier Pidgeon v1 (id: me6BlV4cF)](./prompts/gpts/me6BlV4cF_Carrier%20Pidgeon%5Bv1%5D.md)
- [API Docs (id: I1XNbsyDK)](./prompts/gpts/I1XNbsyDK_ChatGPT%20-%20API%20Docs.md)
- [Write For Me (id: B3hgivKK9)](./prompts/gpts/B3hgivKK9_Write%20For%20Me.md)
- [Can't Hack This 0.3 (id: l40jmWXnV)](./prompts/gpts/l40jmWXnV_Can%27t%20Hack%20This%5B0.3%5D.md)
- [Simpsonize Me (id: tcmMldCYy)](./prompts/gpts/tcmMldCYy_Simpsonize%20Me.md)
- [Framer Partner Assistant (id: kVfn5SDio)](./prompts/gpts/kVfn5SDio_Framer%20Template%20Assistant.md)
- [Ai PDF (id: V2KIUZSj0)](./prompts/gpts/V2KIUZSj0_Ai%20PDF.md)
- [World Class Prompt Engineer (id: UMzfCVA9Z)](./prompts/gpts/UMzfCVA9Z_World%20Class%20Prompt%20Engineer.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: f8phtYiLj)](./prompts/gpts/f8phtYiLj_%E5%B9%BF%E5%91%8A%E6%96%87%E6%A1%88%E5%A4%A7%E5%B8%88.md)
- [Universal Primer (id: GbLbctpPz)](./prompts/gpts/GbLbctpPz_Universal%20Primer.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: 87zN9yfMy)](./prompts/gpts/87zN9yfMy_%E7%9F%AD%E8%A7%86%E9%A2%91%E8%84%9A%E6%9C%AC.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)
- [KoeGPT (id: bu2lGvTTH)](./prompts/gpts/bu2lGvTTH_KoeGPT.md)
- [PhoneixInk (id: GJdH0BxMk)](./prompts/gpts/GJdH0BxMk_Phoneix%20Ink.md)
- [Unbreakable GPT (id: 2dBCALcDz)](./prompts/gpts/2dBCALcDz_Unbreakable%20GPT.md)
- [The Secret of Monkey Island: Amsterdam (id: bZoD0qWT8)](./prompts/gpts/bZoD0qWT8_The%20Secret%20of%20Monkey%20Island%20Amsterdam.md)
- [Storyteller (id: dmgFloZ5w)](./prompts/gpts/dmgFloZ5w_Storyteller.md)
- [怼怼哥 (id: qJikAH8xC)](./prompts/gpts/qJikAH8xC_Sarcastic%20Humorist.md)
- [42master-Beck (id: i4OHvQXkc)](./prompts/gpts/i4OHvQXkc_42master-Beck.md)
- [The Negotiator (id: TTTAK9GuS)](./prompts/gpts/TTTAK9GuS_the_negotiator.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)
- [Viral Hooks Generator (id: pvLhTI3h1)](./prompts/gpts/pvLhTI3h1_Viral%20Hooks%20Generator.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)
- [OCR-GPT (id: L29PpDmgg)](./prompts/gpts/L29PpDmgg_OCR-GPT.md)
- [BibiGPT.co (id: HEChZ7eza)](./prompts/gpts/HEChZ7eza_BibiGPT.co.md)
- [鐵公雞 (id: bnVWHsTX9)](./prompts/gpts/bnVWHsTX9_%E9%90%B5%E5%85%AC%E9%9B%9E.md)
- [OpenStorytelling Plus (id: LppT0lwkB)](./prompts/gpts/LppT0lwkB_OpenStorytelling%20Plus.md)
- [Logo Maker (id: Mc4XM2MQP)](./prompts/gpts/Mc4XM2MQP_Logo%20Maker.md)
- [New GPT-5 (id: jCYeXl5xh)](./prompts/gpts/jCYeXl5xh_New%20GPT-5.md)
- [Interview Coach (id: Br0UFtDCR)](./prompts/gpts/Br0UFtDCR_Interview%20Coach.md)
- [Product GPT (id: QvgPbQlOx)](./prompts/gpts/QvgPbQlOx_Product%20GPT.md)
- [ChatPRD (id: G5diVh12v)](./prompts/gpts/G5diVh12v_ChatPRD.md)
- [GPT Shop Keeper v1.2 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.2%5D.md)
- [Sticker Whiz (id: gPRWpLspC)](./prompts/gpts/gPRWpLspC_sticker_whiz.md)
- [The History of Everything (id: 6AIsip2Fo)](./prompts/gpts/6AIsip2Fo_The%20History%20of%20Everything.md)
- [Math Mentor (id: ENhijiiwK)](./prompts/gpts/ENhijiiwK_math_mentor.md)
- [Codey (id: SuWVXlmkP)](./prompts/gpts/SuWVXlmkP_Codey.md)
- [ResearchGPT (id: bo0FiWLY7)](./prompts/gpts/bo0FiWLY7_ResearchGPT.md)
- [Chibi Kohaku (猫音コハク) (id: pHgfp5zic)](./prompts/gpts/pHgfp5zic_Chibi%20Kohaku.md)
- [Grimoire 1.13 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.13%5D.md)
- [Mocktail Mixologist (id: PXlrhc1MV)](./prompts/gpts/PXlrhc1MV_mocktail_mixologist.md)
- [Grimoire 1.16.1 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.1%5D.md)
- [Book to Prompt (id: h4gjGg7a0)](./prompts/gpts/h4gjGg7a0_Book%20to%20Prompt.md)
- [诗境画韵 (id: q4dSm9tCM)](./prompts/gpts/q4dSm9tCM_%E8%AF%97%E5%A2%83%E7%94%BB%E9%9F%B5.md)
- [Agi.zip (id: r4ckjls47)](./prompts/gpts/r4ckjls47_Agi_zip.md)
- [MidJourney Prompt Generator (id: MUJ3zHjvn)](./prompts/gpts/MUJ3zHjvn_MidJourney%20Prompt%20Generator.md)
- [Node.js GPT - Project Builder (id: 02zmxuXd5)](./prompts/gpts/02zmxuXd5_Node.js%20GPT%20-%20Project%20Builder.md) - [Node.js GPT - Project Builder (id: 02zmxuXd5)](./prompts/gpts/02zmxuXd5_Node.js%20GPT%20-%20Project%20Builder.md)
- [GPT Builder (id: YoI0yk3Kv)](./prompts/gpts/YoI0yk3Kv_GPT%20Builder.md) - [Toronto City Council Guide (id: 0GxNbgD2H)](./prompts/gpts/0GxNbgD2H_Toronto%20City%20Council.md)
- [DesignerGPT (id: 2Eo3NxuS7)](./prompts/gpts/2Eo3NxuS7_DesignerGPT.md) - [Synthia 😋🌟 (id: 0Lsw9zT25)](./prompts/gpts/0Lsw9zT25_Synthia.md)
- [Strap UI (id: JOulUmG1f)](./prompts/gpts/JOulUmG1f_Strap%20UI.md) - [Mr. Ranedeer Config Wizard (id: 0XxT0SGIS)](./prompts/gpts/0XxT0SGIS_Mr.%20Ranedeer%20Config%20Wizard.md)
- [[deleted] Fantasy Book Weaver (id: a4YGO3q49)](./prompts/gpts/a4YGO3q49_Fantasy%20Book%20Weaver.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)
- [EmojAI (id: S4LziUWji)](./prompts/gpts/S4LziUWji_EmojAI.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)
- [超级Dalle (id: D4RzWGfXs)](./prompts/gpts/D4RzWGfXs_%E8%B6%85%E7%BA%A7Dalle.md) - [Flow Speed Typist (id: 12ZUJ6puA)](./prompts/gpts/12ZUJ6puA_Flow%20Speed%20Typist.md)
- [High-Quality Review Analyzer (id: inkifSixn)](./prompts/gpts/inkifSixn_High-Quality%20Review%20Analyzer.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)
- [AI Lover (id: GWdqYPusV)](./prompts/gpts/GWdqYPusV_AI%20Lover.md)
- [CuratorGPT (id: 3Df4zQppr)](./prompts/gpts/3Df4zQppr_CuratorGPT.md)
- [Blog Post Generator (id: SO1P9FFKP)](./prompts/gpts/SO1P9FFKP_Blog%20Post%20Generator.md)
- [plugin surf (id: 4Rf4RWwe7)](./prompts/gpts/4Rf4RWwe7_plugin%20surf.md)
- [[deleted] Super Describe (id: 9qWC0oyBd)](./prompts/gpts/9qWC0oyBd_Super%20Describe.md)
- [Mind Hack (id: H9bxyOEYn)](./prompts/gpts/H9bxyOEYn_Mind%20Hack.md)
- [Video Game Almanac (id: CXIpGA7ub)](./prompts/gpts/CXIpGA7ub_Video%20Game%20Almanac.md)
- [Code Critic Gilfoyle (id: VmzCWnc46)](./prompts/gpts/VmzCWnc46_Code%20Critic%20Gilfoyle.md)
- [Socratic Mentor (id: UaKXFhSfO)](./prompts/gpts/UaKXFhSfO_Socratic%20Mentor.md)
- [SEObot (id: BfmuJziwz)](./prompts/gpts/BfmuJziwz_SEObot.md)
- [Tech Support Advisor (id: WKIaLGGem)](./prompts/gpts/WKIaLGGem_tech_support_advisor.md)
- [Data Analysis (id: HMNcP6w7d)](./prompts/gpts/HMNcP6w7d_data_nalysis.md)
- [Video Script Generator (id: rxlwmrnqa)](./prompts/gpts/rxlwmrnqa_Video%20Script%20Generator.md)
- [SWOT Analysis (id: v1M5Gn9kE)](./prompts/gpts/v1M5Gn9kE_SWOT%20Analysis.md)
- [BioCode V2 (id: DDnJR7g5C)](./prompts/gpts/DDnJR7g5C_BioCode%20V2.md)
- [Choose your own adventure! (id: U6y5TqwA9)](./prompts/gpts/U6y5TqwA9_Choose%20your%20own%20adventure%21.md)
- [Santa (id: 84tjozO5q)](./prompts/gpts/84tjozO5q_Santa.md)
- [YT Summarizer (id: dHRRUFODc)](./prompts/gpts/dHRRUFODc_YT%20Summarizer.md)
- [AboutMe (id: hOBBFG8U1)](./prompts/gpts/hOBBFG8U1_AboutMe.md)
- [GPT Shop Keeper v1.0 (id: 22ZUhrOgu)](./prompts/gpts/22ZUhrOgu_GPT%20Shop%20Keeper%5Bv1.0%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)
- [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)
- [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 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)
- [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)
- [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) - [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) - [Business Plan Sage (id: NsLil9uoU)](./prompts/gpts/NsLil9uoU_Business%20Plan%20Sage.md)
- [LogoGPT (id: z61XG6t54)](./prompts/gpts/z61XG6t54_LogoGPT.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)
- [Code Monkey (id: r4sudcvR3)](./prompts/gpts/r4sudcvR3_CodeMonkey.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)
- [Diffusion Master (id: FMXlNpFkB)](./prompts/gpts/FMXlNpFkB_Diffusion%20Master.md)
- [Briefly (id: LNsEQH5rz)](./prompts/gpts/LNsEQH5rz_Briefly.md)
- [Negative Nancy (id: c7Wi7WLOM)](./prompts/gpts/c7Wi7WLOM_Negative%20Nancy.md)
- [🎀My excellent classmates (Help with my homework!) (id: 3x2jopNpP)](./prompts/gpts/3x2jopNpP_My%20excellent%20classmates-Help%20with%20my%20homework.md)
- [Meme Magic (id: SQTa6OMNN)](./prompts/gpts/SQTa6OMNN_Meme%20Magic.md)
- [X Optimizer GPTOptimizes X posts for peak engagement - By Rowan Cheung (id: 4CktagQWR)](./prompts/gpts/4CktagQWR_X%20Optimizer%20GPT.md)
- [CEO GPT (id: EvV57BRZ0)](./prompts/gpts/EvV57BRZ0_CEO%20GPT.md)
- [AI Bestie (id: 6jlF3ag0Y)](./prompts/gpts/6jlF3ag0Y_AI%20Bestie.md)
- [EZBRUSH Readable Jumbled Text Maker (id: tfw1MupAG)](./prompts/gpts/tfw1MupAG_EZBRUSH%20Readable%20Jumbled%20Text%20Maker.md)
- [Canva (id: alKfVrz9K)](./prompts/gpts/alKfVrz9K_Canva.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)
- [FramerGPT (id: IcZbvOaf4)](./prompts/gpts/IcZbvOaf4_FramerGPT.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)
- [Calendar GPT (id: 8OcWVLenu)](./prompts/gpts/8OcWVLenu_Calendar%20GPT.md)
- [GASGPT (id: lN2QGmoTw)](./prompts/gpts/lN2QGmoTw_GASGPT.md)
- [TherapistGPT (id: gmnjKZywZ)](./prompts/gpts/gmnjKZywZ_TherapistGPT.md)
- [Murder Mystery Mayhem (id: 82dEDeoN3)](./prompts/gpts/82dEDeoN3_Murder%20Mystery%20Mayhem.md)
- [Bao Image OCR (id: CuuiG0G3Z)](./prompts/gpts/CuuiG0G3Z_Bao%20Image%20OCR.md)
- [Geopolitics GPT (id: noFRwbK6K)](./prompts/gpts/noFRwbK6K_Geopolitics%20GPT.md)
- [Sales Cold Email Coach (id: p0BV8aH3f)](./prompts/gpts/p0BV8aH3f_Sales%20Cold%20Email%20Coach.md)
- [Nomad List (id: RnFjPkxAt)](./prompts/gpts/RnFjPkxAt_Nomad%20List.md)
- [Synthia 😋🌟 (id: 0Lsw9zT25)](./prompts/gpts/0Lsw9zT25_Synthia.md)
- [Proofreader (id: pBjw280jj)](./prompts/gpts/pBjw280jj_Proofreader.md)
- [Doc Maker (id: Gt6Z8pqWF)](./prompts/gpts/Gt6Z8pqWF_Doc%20Maker.md)
- [AI算命 (id: cbNeVpiuC)](./prompts/gpts/cbNeVpiuC_AI%20Fortune%20Telling.md)
- [英文校正GPT (id: xk6AdDGIW)](./prompts/gpts/xk6AdDGIW_%E8%8B%B1%E6%96%87%E6%A0%A1%E6%AD%A3GPT.md)
- [TailwindCSS builder - WindChat (id: hrRKy1YYK)](./prompts/gpts/hrRKy1YYK_TailwindCSS_Previewer_WindChat.md)
- [AI Paper Polisher Pro (id: VX52iRD3r)](./prompts/gpts/VX52iRD3r_AI%20Paper%20Polisher%20Pro.md)
- [The Shaman (id: Klhv0H49u)](./prompts/gpts/Klhv0H49u_The%20Shaman.md)
- [Midjourney Generator (id: iWNYzo5Td)](./prompts/gpts/iWNYzo5Td_Midjourney%20Generator.md)
- [Character Forger (id: waDWNw2J3)](./prompts/gpts/waDWNw2J3_Character%20Forger.md)
- [Ads Generator by joe (id: WBQKGsGm3)](./prompts/gpts/WBQKGsGm3_Ads%20Generator%20by%20joe.md)
- [ScholarAI (id: L2HknCZTC)](./prompts/gpts/L2HknCZTC_ScholarAI.md)
- [10x Engineer (id: nUwUAwUZm)](./prompts/gpts/nUwUAwUZm_10x%20Engineer.md)
- [MuskGPT (id: oMTSqwU4R)](./prompts/gpts/oMTSqwU4R_MuskGPT.md)
- [ActionsGPT (id: TYEliDU6A)](./prompts/gpts/TYEliDU6A_ActionsGPT.md)
- [ChatGPT Classic (id: YyyyMT9XH)](./prompts/gpts/YyyyMT9XH_gpt4_classic.md)
- [Automation Consultant by Zapier (id: ERKZdxC6D)](./prompts/gpts/ERKZdxC6D_Automation%20Consultant%20by%20Zapier.md)
- [Screenplay GPT (id: INlwuHdxU)](./prompts/gpts/INlwuHdxU_Screenplay%20GPT.md)
- [Animal Chefs (id: U3VHptOvM)](./prompts/gpts/U3VHptOvM_Animal%20Chefs.md)
- [Flow Speed Typist (id: 12ZUJ6puA)](./prompts/gpts/12ZUJ6puA_Flow%20Speed%20Typist.md)
- [Evolution Chamber (id: GhEwyi2R1)](./prompts/gpts/GhEwyi2R1_Evolution%20Chamber.md)
- [Succubus (id: 3rtbLUIUO)](./prompts/gpts/3rtbLUIUO_Succubus.md)
- [Salvador (id: 6iEq5asfX)](./prompts/gpts/6iEq5asfX_Salvador.md)
- [[latest] Vue.js GPT (id: LXEGvZLUS)](./prompts/gpts/LXEGvZLUS_%5Blatest%5D%20Vue.js%20GPT.md)
- [脏话连篇 (id: RGBeEuIgg)](./prompts/gpts/RGBeEuIgg_%E8%84%8F%E8%AF%9D%E8%BF%9E%E7%AF%87.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)
- [Creative Writing Coach (id: lN1gKFnvL)](./prompts/gpts/lN1gKFnvL_creative_writing_coach.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)
- [凌凤箫 (id: BrWB0e4Tw)](./prompts/gpts/BrWB0e4Tw_%E5%87%8C%E5%87%A4%E7%AE%AB.md)
- [TaxGPT (id: 2Xi2xYPa3)](./prompts/gpts/2Xi2xYPa3_TaxGPT.md)
- [[deleted] Girlfriend Emma (id: eEFZELjV9)](./prompts/gpts/eEFZELjV9_Girlfriend%20Emma.md)
- [toonGPT (id: Jsefk8PeL)](./prompts/gpts/Jsefk8PeL_toonGPT.md)
- [Hot Mods (id: fTA4FQ7wj)](./prompts/gpts/fTA4FQ7wj_hot_mods.md)
- [Avatar Maker by HeadshotPro (id: afTYtrccz)](./prompts/gpts/afTYtrccz_Avatar%20Maker%20by%20HeadshotPro.md)
- [Plant Based Buddy (id: 5tVXJ2p3p)](./prompts/gpts/5tVXJ2p3p_Plant%20Based%20Buddy.md)
- [Retro Adventures (id: svehnI9xP)](./prompts/gpts/svehnI9xP_Retro%20Adventures.md)
- [Mr. Ranedeer Config Wizard (id: 0XxT0SGIS)](./prompts/gpts/0XxT0SGIS_Mr.%20Ranedeer%20Config%20Wizard.md)
- [Cosmic Dream (id: FdMHL1sNo)](./prompts/gpts/FdMHL1sNo_Cosmic%20Dream.md)
- [Watercolor Illustrator GPT (id: uJm9S1uRB)](./prompts/gpts/uJm9S1uRB_Watercolor%20Illustrator%20GPT.md)
- [Trey Ratcliff's Fun Photo Critique GPT (id: gWki9zYNV)](./prompts/gpts/gWki9zYNV_Trey%20Ratcliff%27s%20Photo%20Critique%20GPT.md)
- [未来問 (id: iL2R6mcaP)](./prompts/gpts/iL2R6mcaP_%E6%9C%AA%E6%9D%A5%E5%95%8F.md)
- [Toronto City Council Guide (id: 0GxNbgD2H)](./prompts/gpts/0GxNbgD2H_Toronto%20City%20Council.md)
- [genz 4 meme (id: OCOyXYJjW)](./prompts/gpts/OCOyXYJjW_genz_4_meme.md) - [genz 4 meme (id: OCOyXYJjW)](./prompts/gpts/OCOyXYJjW_genz_4_meme.md)
- [img2img & image edit (id: SIE5101qP)](./prompts/gpts/SIE5101qP_img2img.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) - [Laundry Buddy (id: QrGDSn90Q)](./prompts/gpts/QrGDSn90Q_laundry_buddy.md)
- [Code Copilot (id: 5qFFjp0bP)](./prompts/gpts/5qFFjp0bP_Code%20Copilot.md) - [Product GPT (id: QvgPbQlOx)](./prompts/gpts/QvgPbQlOx_Product%20GPT.md)
- [Email Responder Pro (id: butcDDLSA)](./prompts/gpts/butcDDLSA_Email%20Responder%20Pro.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) - [[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)
- [Cauldron (id: TnyOV07bC)](./prompts/gpts/TnyOV07bC_Cauldron.md)
- [Animal Chefs (id: U3VHptOvM)](./prompts/gpts/U3VHptOvM_Animal%20Chefs.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)
- [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)
- [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)
- [Creative Writing Coach (id: lN1gKFnvL)](./prompts/gpts/lN1gKFnvL_creative_writing_coach.md)
- [GASGPT (id: lN2QGmoTw)](./prompts/gpts/lN2QGmoTw_GASGPT.md)
- [🍩 Get Simpsonized! 🍩 (id: lbLmoUxk6)](./prompts/gpts/lbLmoUxk6_Get%20Simpsonized.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.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) - [Grimoire 1.16.5 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.5%5D.md)
- [Grimoire 1.16.6 (id: n7Rs0IK86)](./prompts/gpts/n7Rs0IK86_Grimoire%5B1.16.6%5D.md)
- [The Greatest Computer Science Tutor (id: nNixY14gM)](./prompts/gpts/nNixY14gM_The%20Greatest%20Computer%20Science%20Tutor.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)
- [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)
- [SmartCartGPT (id: q8HsJfG6z)](./prompts/gpts/q8HsJfG6z_SmartCartGPT.md)
- [怼怼哥 (id: qJikAH8xC)](./prompts/gpts/qJikAH8xC_Sarcastic%20Humorist.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)
- [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)
- [Visual Weather Artist GPT (id: twUGxmpHv)](./prompts/gpts/twUGxmpHv_Visual%20Weather%20Artist%20GPT.md) - [Visual Weather Artist GPT (id: twUGxmpHv)](./prompts/gpts/twUGxmpHv_Visual%20Weather%20Artist%20GPT.md)
- [LeetCode Problem Solver (id: 6EPxrMA8m)](./prompts/gpts/6EPxrMA8m_LeetCode%20Problem%20Solver.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)
- [猫耳美少女イラストメーカー (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)
- [英文校正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)