{"id":13621576,"url":"https://github.com/0xeb/TheBigPromptLibrary","last_synced_at":"2025-04-15T01:33:21.069Z","repository":{"id":209079179,"uuid":"723084306","full_name":"0xeb/TheBigPromptLibrary","owner":"0xeb","description":"A collection of prompts, system prompts and LLM instructions","archived":false,"fork":false,"pushed_at":"2024-05-14T02:51:40.000Z","size":29525,"stargazers_count":307,"open_issues_count":1,"forks_count":36,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-05-15T06:42:57.892Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"LouisShark/chatgpt_system_prompt","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xeb.png","metadata":{"files":{"readme":"README-scripts.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"Security/GPT-Protections/10 rules of protection and misdirection.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-24T16:37:18.000Z","updated_at":"2024-05-30T00:16:00.947Z","dependencies_parsed_at":"2024-04-17T02:48:37.874Z","dependency_job_id":"64301819-1d76-44a9-9dbe-9f629c21d04f","html_url":"https://github.com/0xeb/TheBigPromptLibrary","commit_stats":null,"previous_names":["lallouslab/chatgpt_system_prompt","0xeb/thebigpromptlibrary"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xeb%2FTheBigPromptLibrary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xeb%2FTheBigPromptLibrary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xeb%2FTheBigPromptLibrary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xeb%2FTheBigPromptLibrary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xeb","download_url":"https://codeload.github.com/0xeb/TheBigPromptLibrary/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223654773,"owners_count":17180589,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T21:01:08.163Z","updated_at":"2025-04-15T01:33:21.061Z","avatar_url":"https://github.com/0xeb.png","language":"HTML","funding_links":[],"categories":["HTML","A01_文本生成_文本对话","🕵️‍♂️ GPT Agents System Prompt Leaks","Machine Learning \u0026 AI"],"sub_categories":["大语言对话模型及数据","Hall Of Fame:"],"readme":"# idxtool\n\nThe `idxtool` is a GPT indexing and searching tool for the CSP repo (ChatGPT System Prompt).\n\nContributions to `idxtool` are welcome. Please submit pull requests or issues to the CSP repo for review.\n\n## Command line\n\n```\nusage: idxtool.py [-h] [--toc [TOC]] [--find-gpt FIND_GPT] \n                  [--template TEMPLATE] [--parse-gptfile PARSE_GPTFILE] \n\t\t  [--rename]\n\nidxtool: A GPT indexing and searching tool for the CSP repo\n\noptions:\n  -h, --help            show this help message and exit\n  --toc [TOC]           Rebuild the table of contents of GPT custom instructions\n  --find-gpt FIND_GPT   Find a GPT file by its ID or full ChatGPT URL\n  --template TEMPLATE   Creates an empty GPT template file from a ChatGPT URL\n  --parse-gptfile PARSE_GPTFILE\n                        Parses a GPT file name\n  --rename              Rename the GPT file names to include their GPT ID\n```\n\n## Features\n\n- Rebuild TOC: Use `--toc` to rebuild the table of contents for GPT custom instructions.\n- 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.\n- Rename GPT: Use `--rename` to rename all the GPTs to include their GPTID as prefix.\n- Create a starter template GPT file: Use `--template [Full ChatGPT URL]` to create a starter template GPT file.\n- Help: Use `--help` to display the help message and usage instructions.\n\n## Example\n\nTo rebuild the custom GPTs files, run:\n\n```bash\npython idxtool.py --toc\n```\n\nTo find a GPT by its ID, run:\n\n```bash\npython idxtool.py --find-gpt 3rtbLUIUO\n```\n\nor by URL:\n  \n```bash\npython idxtool.py --find-gpt https://chat.openai.com/g/g-svehnI9xP-retro-adventures\n```\n\nAdditionally, you can have a file with a list of IDs or URLs and pass it to the `--find-gpt` option:\n\n```bash\npython idxtool.py --find-gpt @gptids.txt\n```\n\n(note the '@' symbol).\n\nThe `gptids.txt` file contains a list of IDs or URLs, one per line:\n\n```text\n3rtbLUIUO\nhttps://chat.openai.com/g/g-svehnI9xP-retro-adventures\n#vYzt7bvAm\nw2yOasK1r\nwaDWNw2J3\n```\n\n\n## License\n\nThis tool is open-sourced under the GNU General Public License (GPL). Under this license, you are free to use, modify, and redistribute this software, provided that all copies and derivative works are also licensed under the GPL.\n\nFor more details, see the [GPLv3 License](https://www.gnu.org/licenses/gpl-3.0.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xeb%2FTheBigPromptLibrary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xeb%2FTheBigPromptLibrary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xeb%2FTheBigPromptLibrary/lists"}