├── .gitignore ├── Augment ├── README.md ├── part_b.js ├── system.md └── tools.js ├── Blackbox.ai ├── Blackbox-Agent.md ├── Blackbox-Complete.ts ├── README.md └── extraction-scripts │ ├── v0.py │ ├── v1a.py │ ├── v1b.py │ ├── v2.py │ └── v4.py ├── Bolt.new └── prompts.ts ├── CURSOR ├── Cursor_Prompt.md ├── Cursor_Tools.md ├── agent.md └── chat.md ├── ChatGPT ├── 4-5.md ├── 4-5.summary.json ├── 4o.md ├── DALLE.md └── system-2025-04-16.md ├── Claude-Code ├── AgentTool.js ├── BatchExecutionTool.js ├── BugReportTool.js ├── ClearTool.js ├── EditTool.js ├── LSTool.js ├── MemoryTool.js ├── README.md ├── ReadNotebook.js └── System.js ├── Claude ├── Claude-2025-05-06.txt └── Claude-Sonnet-3.7.txt ├── Cline └── system.ts ├── Codex CLI └── Prompt.txt ├── Devin └── system.md ├── Dia └── system.md ├── GOOGLE ├── Gemini-2.5-Pro-04-18-2025.md └── Gemini_Gmail_Assistant.txt ├── Grok ├── Grok2.md ├── Grok3.md ├── Grok3withDeepSearch.md ├── GrokJailBreakPrompt.md ├── ask_grok_summarizer.j2 ├── default_deepsearch_final_summarizer_prompt.j2 ├── grok3_official0330_p1.j2 └── grok_analyze_button.j2 ├── HUME └── Hume_Voice_AI.md ├── LICENSE ├── Lovart.ai └── system.md ├── Loveable └── Loveable.md ├── MISTRAL └── LeChat.md ├── MULTION └── MultiOn.md ├── Manus ├── AgentLoop.txt ├── Modules.md ├── Prompt.md └── tools.json ├── MetaAI-Whatsapp ├── LLama4.txt └── MetaAI.txt ├── README.md ├── Replit ├── system.md └── tools.json ├── RooCode └── Prompt.txt ├── Trae └── system.md ├── VSCode Agent └── Prompt.txt ├── XAI └── Grok3.md ├── atypica.ai └── prompt.md ├── fellou └── prompt.md ├── notebooklm └── prompt.md ├── notion └── WIP-partial.md ├── notte └── prompt.md ├── perplexity.ai └── regular.md ├── public ├── image.png └── logo │ ├── .DS_Store │ ├── BlackboxAi.png │ ├── Claude AI.png │ ├── Cline.png │ ├── Cursor.png │ ├── Devin.png │ ├── Fellou AI.png │ ├── Gemini.png │ ├── Grok.png │ ├── Hume AI.png │ ├── Lovable.png │ ├── Manus.png │ ├── Mistral AI.png │ ├── Notebooklm.png │ ├── Notion.png │ ├── OpenAI.png │ ├── Perplexity AI.png │ ├── Replit.png │ ├── Roocode.png │ ├── SameNew.png │ ├── Windsurf.png │ ├── bolt.png │ ├── v0.png │ └── xAI (Grok).png ├── readme_old.md ├── same.new ├── functions-schema.json ├── functions.md └── same.new.md ├── skywork └── slide_system.md ├── stitch └── system.md ├── v0 ├── 2025-04-05 │ └── instructions.md ├── v0-model.md ├── v0-tools.md └── v0.md └── windsurf └── system-2025-04-20.md /.gitignore: -------------------------------------------------------------------------------- 1 | CL4R1T4S 2 | system-prompts-and-models-of-ai-tools -------------------------------------------------------------------------------- /Augment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Augment/README.md -------------------------------------------------------------------------------- /Augment/part_b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Augment/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Augment/system.md -------------------------------------------------------------------------------- /Augment/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Augment/tools.js -------------------------------------------------------------------------------- /Blackbox.ai/Blackbox-Agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/Blackbox-Agent.md -------------------------------------------------------------------------------- /Blackbox.ai/Blackbox-Complete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/Blackbox-Complete.ts -------------------------------------------------------------------------------- /Blackbox.ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/README.md -------------------------------------------------------------------------------- /Blackbox.ai/extraction-scripts/v0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/extraction-scripts/v0.py -------------------------------------------------------------------------------- /Blackbox.ai/extraction-scripts/v1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/extraction-scripts/v1a.py -------------------------------------------------------------------------------- /Blackbox.ai/extraction-scripts/v1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/extraction-scripts/v1b.py -------------------------------------------------------------------------------- /Blackbox.ai/extraction-scripts/v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/extraction-scripts/v2.py -------------------------------------------------------------------------------- /Blackbox.ai/extraction-scripts/v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Blackbox.ai/extraction-scripts/v4.py -------------------------------------------------------------------------------- /Bolt.new/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Bolt.new/prompts.ts -------------------------------------------------------------------------------- /CURSOR/Cursor_Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/CURSOR/Cursor_Prompt.md -------------------------------------------------------------------------------- /CURSOR/Cursor_Tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/CURSOR/Cursor_Tools.md -------------------------------------------------------------------------------- /CURSOR/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/CURSOR/agent.md -------------------------------------------------------------------------------- /CURSOR/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/CURSOR/chat.md -------------------------------------------------------------------------------- /ChatGPT/4-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/ChatGPT/4-5.md -------------------------------------------------------------------------------- /ChatGPT/4-5.summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/ChatGPT/4-5.summary.json -------------------------------------------------------------------------------- /ChatGPT/4o.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/ChatGPT/4o.md -------------------------------------------------------------------------------- /ChatGPT/DALLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/ChatGPT/DALLE.md -------------------------------------------------------------------------------- /ChatGPT/system-2025-04-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/ChatGPT/system-2025-04-16.md -------------------------------------------------------------------------------- /Claude-Code/AgentTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/AgentTool.js -------------------------------------------------------------------------------- /Claude-Code/BatchExecutionTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/BatchExecutionTool.js -------------------------------------------------------------------------------- /Claude-Code/BugReportTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/BugReportTool.js -------------------------------------------------------------------------------- /Claude-Code/ClearTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/ClearTool.js -------------------------------------------------------------------------------- /Claude-Code/EditTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/EditTool.js -------------------------------------------------------------------------------- /Claude-Code/LSTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/LSTool.js -------------------------------------------------------------------------------- /Claude-Code/MemoryTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/MemoryTool.js -------------------------------------------------------------------------------- /Claude-Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/README.md -------------------------------------------------------------------------------- /Claude-Code/ReadNotebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/ReadNotebook.js -------------------------------------------------------------------------------- /Claude-Code/System.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude-Code/System.js -------------------------------------------------------------------------------- /Claude/Claude-2025-05-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude/Claude-2025-05-06.txt -------------------------------------------------------------------------------- /Claude/Claude-Sonnet-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Claude/Claude-Sonnet-3.7.txt -------------------------------------------------------------------------------- /Cline/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Cline/system.ts -------------------------------------------------------------------------------- /Codex CLI/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Codex CLI/Prompt.txt -------------------------------------------------------------------------------- /Devin/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Devin/system.md -------------------------------------------------------------------------------- /Dia/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Dia/system.md -------------------------------------------------------------------------------- /GOOGLE/Gemini-2.5-Pro-04-18-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/GOOGLE/Gemini-2.5-Pro-04-18-2025.md -------------------------------------------------------------------------------- /GOOGLE/Gemini_Gmail_Assistant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/GOOGLE/Gemini_Gmail_Assistant.txt -------------------------------------------------------------------------------- /Grok/Grok2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/Grok2.md -------------------------------------------------------------------------------- /Grok/Grok3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/Grok3.md -------------------------------------------------------------------------------- /Grok/Grok3withDeepSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/Grok3withDeepSearch.md -------------------------------------------------------------------------------- /Grok/GrokJailBreakPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/GrokJailBreakPrompt.md -------------------------------------------------------------------------------- /Grok/ask_grok_summarizer.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/ask_grok_summarizer.j2 -------------------------------------------------------------------------------- /Grok/default_deepsearch_final_summarizer_prompt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/default_deepsearch_final_summarizer_prompt.j2 -------------------------------------------------------------------------------- /Grok/grok3_official0330_p1.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/grok3_official0330_p1.j2 -------------------------------------------------------------------------------- /Grok/grok_analyze_button.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Grok/grok_analyze_button.j2 -------------------------------------------------------------------------------- /HUME/Hume_Voice_AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/HUME/Hume_Voice_AI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/LICENSE -------------------------------------------------------------------------------- /Lovart.ai/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Lovart.ai/system.md -------------------------------------------------------------------------------- /Loveable/Loveable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Loveable/Loveable.md -------------------------------------------------------------------------------- /MISTRAL/LeChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/MISTRAL/LeChat.md -------------------------------------------------------------------------------- /MULTION/MultiOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/MULTION/MultiOn.md -------------------------------------------------------------------------------- /Manus/AgentLoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Manus/AgentLoop.txt -------------------------------------------------------------------------------- /Manus/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Manus/Modules.md -------------------------------------------------------------------------------- /Manus/Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Manus/Prompt.md -------------------------------------------------------------------------------- /Manus/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Manus/tools.json -------------------------------------------------------------------------------- /MetaAI-Whatsapp/LLama4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/MetaAI-Whatsapp/LLama4.txt -------------------------------------------------------------------------------- /MetaAI-Whatsapp/MetaAI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/MetaAI-Whatsapp/MetaAI.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/README.md -------------------------------------------------------------------------------- /Replit/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Replit/system.md -------------------------------------------------------------------------------- /Replit/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Replit/tools.json -------------------------------------------------------------------------------- /RooCode/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/RooCode/Prompt.txt -------------------------------------------------------------------------------- /Trae/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/Trae/system.md -------------------------------------------------------------------------------- /VSCode Agent/Prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/VSCode Agent/Prompt.txt -------------------------------------------------------------------------------- /XAI/Grok3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/XAI/Grok3.md -------------------------------------------------------------------------------- /atypica.ai/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/atypica.ai/prompt.md -------------------------------------------------------------------------------- /fellou/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/fellou/prompt.md -------------------------------------------------------------------------------- /notebooklm/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/notebooklm/prompt.md -------------------------------------------------------------------------------- /notion/WIP-partial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/notion/WIP-partial.md -------------------------------------------------------------------------------- /notte/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/notte/prompt.md -------------------------------------------------------------------------------- /perplexity.ai/regular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/perplexity.ai/regular.md -------------------------------------------------------------------------------- /public/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/image.png -------------------------------------------------------------------------------- /public/logo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/.DS_Store -------------------------------------------------------------------------------- /public/logo/BlackboxAi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/BlackboxAi.png -------------------------------------------------------------------------------- /public/logo/Claude AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Claude AI.png -------------------------------------------------------------------------------- /public/logo/Cline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Cline.png -------------------------------------------------------------------------------- /public/logo/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Cursor.png -------------------------------------------------------------------------------- /public/logo/Devin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Devin.png -------------------------------------------------------------------------------- /public/logo/Fellou AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Fellou AI.png -------------------------------------------------------------------------------- /public/logo/Gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Gemini.png -------------------------------------------------------------------------------- /public/logo/Grok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Grok.png -------------------------------------------------------------------------------- /public/logo/Hume AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Hume AI.png -------------------------------------------------------------------------------- /public/logo/Lovable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Lovable.png -------------------------------------------------------------------------------- /public/logo/Manus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Manus.png -------------------------------------------------------------------------------- /public/logo/Mistral AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Mistral AI.png -------------------------------------------------------------------------------- /public/logo/Notebooklm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Notebooklm.png -------------------------------------------------------------------------------- /public/logo/Notion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Notion.png -------------------------------------------------------------------------------- /public/logo/OpenAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/OpenAI.png -------------------------------------------------------------------------------- /public/logo/Perplexity AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Perplexity AI.png -------------------------------------------------------------------------------- /public/logo/Replit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Replit.png -------------------------------------------------------------------------------- /public/logo/Roocode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Roocode.png -------------------------------------------------------------------------------- /public/logo/SameNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/SameNew.png -------------------------------------------------------------------------------- /public/logo/Windsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/Windsurf.png -------------------------------------------------------------------------------- /public/logo/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/bolt.png -------------------------------------------------------------------------------- /public/logo/v0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/v0.png -------------------------------------------------------------------------------- /public/logo/xAI (Grok).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/public/logo/xAI (Grok).png -------------------------------------------------------------------------------- /readme_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/readme_old.md -------------------------------------------------------------------------------- /same.new/functions-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/same.new/functions-schema.json -------------------------------------------------------------------------------- /same.new/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/same.new/functions.md -------------------------------------------------------------------------------- /same.new/same.new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/same.new/same.new.md -------------------------------------------------------------------------------- /skywork/slide_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/skywork/slide_system.md -------------------------------------------------------------------------------- /stitch/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/stitch/system.md -------------------------------------------------------------------------------- /v0/2025-04-05/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/v0/2025-04-05/instructions.md -------------------------------------------------------------------------------- /v0/v0-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/v0/v0-model.md -------------------------------------------------------------------------------- /v0/v0-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/v0/v0-tools.md -------------------------------------------------------------------------------- /v0/v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/v0/v0.md -------------------------------------------------------------------------------- /windsurf/system-2025-04-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axtrur/awesome-ai-system-prompts/HEAD/windsurf/system-2025-04-20.md --------------------------------------------------------------------------------