├── .github └── workflows │ └── update_plugins.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── categories.yaml ├── plugins ├── kayak.md ├── keymate-ai-search.md ├── notable.md ├── prompt-perfect.md ├── scholarai.md ├── show-me.md ├── speak.md ├── summarize-anything-ai.md ├── video-insights.md ├── webpilot.md ├── wolfram.md └── zapier.md └── scripts ├── chatgpt_plugin_descriptions.json ├── chatgpt_plugins.ipynb ├── chatgpt_plugins.json ├── chatgpt_plugins_categories.ipynb └── description_refinement.ipynb /.github/workflows/update_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/.github/workflows/update_plugins.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/README.md -------------------------------------------------------------------------------- /categories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/categories.yaml -------------------------------------------------------------------------------- /plugins/kayak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/kayak.md -------------------------------------------------------------------------------- /plugins/keymate-ai-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/keymate-ai-search.md -------------------------------------------------------------------------------- /plugins/notable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/notable.md -------------------------------------------------------------------------------- /plugins/prompt-perfect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/prompt-perfect.md -------------------------------------------------------------------------------- /plugins/scholarai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/scholarai.md -------------------------------------------------------------------------------- /plugins/show-me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/show-me.md -------------------------------------------------------------------------------- /plugins/speak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/speak.md -------------------------------------------------------------------------------- /plugins/summarize-anything-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/summarize-anything-ai.md -------------------------------------------------------------------------------- /plugins/video-insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/video-insights.md -------------------------------------------------------------------------------- /plugins/webpilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/webpilot.md -------------------------------------------------------------------------------- /plugins/wolfram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/wolfram.md -------------------------------------------------------------------------------- /plugins/zapier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/plugins/zapier.md -------------------------------------------------------------------------------- /scripts/chatgpt_plugin_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/scripts/chatgpt_plugin_descriptions.json -------------------------------------------------------------------------------- /scripts/chatgpt_plugins.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/scripts/chatgpt_plugins.ipynb -------------------------------------------------------------------------------- /scripts/chatgpt_plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/scripts/chatgpt_plugins.json -------------------------------------------------------------------------------- /scripts/chatgpt_plugins_categories.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/scripts/chatgpt_plugins_categories.ipynb -------------------------------------------------------------------------------- /scripts/description_refinement.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighwayofLife/awesome-chatgpt-plugins/HEAD/scripts/description_refinement.ipynb --------------------------------------------------------------------------------