├── .gitignore ├── LICENSE ├── better-gpt-builder ├── config.md ├── files │ ├── A_exploration_background.md │ ├── A_exploration_instructions.md │ ├── B_specifications_background.md │ ├── C_configuration_background.md │ ├── C_configuration_format.md │ ├── C_configuration_instructions.md │ ├── C_configuration_tools.md │ ├── C_main_prompt_template.md │ └── D_export_background.md └── instructions.md ├── character_count.py └── docs ├── README.md ├── archived_instructions └── 2023-11-14_instructions.md ├── images └── self-update.png ├── notes ├── instructions │ ├── builder_update_instructions.md │ ├── builder_updating_gpts.md │ └── user_update_instructions.md ├── mobile_ideas.md ├── system_prompts.md └── useful_prompts.md └── system_prompts ├── all_tools_2023-11-10.md └── all_tools_2024-01-12.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /better-gpt-builder/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/config.md -------------------------------------------------------------------------------- /better-gpt-builder/files/A_exploration_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/A_exploration_background.md -------------------------------------------------------------------------------- /better-gpt-builder/files/A_exploration_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/A_exploration_instructions.md -------------------------------------------------------------------------------- /better-gpt-builder/files/B_specifications_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/B_specifications_background.md -------------------------------------------------------------------------------- /better-gpt-builder/files/C_configuration_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/C_configuration_background.md -------------------------------------------------------------------------------- /better-gpt-builder/files/C_configuration_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/C_configuration_format.md -------------------------------------------------------------------------------- /better-gpt-builder/files/C_configuration_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/C_configuration_instructions.md -------------------------------------------------------------------------------- /better-gpt-builder/files/C_configuration_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/C_configuration_tools.md -------------------------------------------------------------------------------- /better-gpt-builder/files/C_main_prompt_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/C_main_prompt_template.md -------------------------------------------------------------------------------- /better-gpt-builder/files/D_export_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/files/D_export_background.md -------------------------------------------------------------------------------- /better-gpt-builder/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/better-gpt-builder/instructions.md -------------------------------------------------------------------------------- /character_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/character_count.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/archived_instructions/2023-11-14_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/archived_instructions/2023-11-14_instructions.md -------------------------------------------------------------------------------- /docs/images/self-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/images/self-update.png -------------------------------------------------------------------------------- /docs/notes/instructions/builder_update_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/instructions/builder_update_instructions.md -------------------------------------------------------------------------------- /docs/notes/instructions/builder_updating_gpts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/instructions/builder_updating_gpts.md -------------------------------------------------------------------------------- /docs/notes/instructions/user_update_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/instructions/user_update_instructions.md -------------------------------------------------------------------------------- /docs/notes/mobile_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/mobile_ideas.md -------------------------------------------------------------------------------- /docs/notes/system_prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/system_prompts.md -------------------------------------------------------------------------------- /docs/notes/useful_prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/notes/useful_prompts.md -------------------------------------------------------------------------------- /docs/system_prompts/all_tools_2023-11-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/system_prompts/all_tools_2023-11-10.md -------------------------------------------------------------------------------- /docs/system_prompts/all_tools_2024-01-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisonmorrell/gptbuilder/HEAD/docs/system_prompts/all_tools_2024-01-12.txt --------------------------------------------------------------------------------