├── .github └── FUNDING.yml ├── .gitignore ├── .well-known └── ai-plugin.json ├── LICENSE ├── README.md ├── img ├── chatgpt-shellmaster1.png ├── load.png ├── pluginshop.png ├── settings.png └── shellmaster0.png ├── logo-cmd.png ├── logo.png ├── main.py ├── openapi.yaml ├── prompts ├── Analyzing-and-Managing-Log-Files.md ├── Handling-Large-Files.md └── learning-linux-unix-with-ChatGPT.md └── settings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/ai-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/.well-known/ai-plugin.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/README.md -------------------------------------------------------------------------------- /img/chatgpt-shellmaster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/img/chatgpt-shellmaster1.png -------------------------------------------------------------------------------- /img/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/img/load.png -------------------------------------------------------------------------------- /img/pluginshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/img/pluginshop.png -------------------------------------------------------------------------------- /img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/img/settings.png -------------------------------------------------------------------------------- /img/shellmaster0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/img/shellmaster0.png -------------------------------------------------------------------------------- /logo-cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/logo-cmd.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/main.py -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/openapi.yaml -------------------------------------------------------------------------------- /prompts/Analyzing-and-Managing-Log-Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/prompts/Analyzing-and-Managing-Log-Files.md -------------------------------------------------------------------------------- /prompts/Handling-Large-Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/prompts/Handling-Large-Files.md -------------------------------------------------------------------------------- /prompts/learning-linux-unix-with-ChatGPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/prompts/learning-linux-unix-with-ChatGPT.md -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VolkanSah/ChatGPT-ShellMaster/HEAD/settings.json --------------------------------------------------------------------------------