Aussie AI
System Prompt
-
Last Updated 30 August, 2025
-
by David Spuler, Ph.D.
What is a System Prompt?
A system prompt is a set of general instructions for an LLM that are prepended to every query. These are used for every major LLM and have been the subject of some secrecy in the past, but several AI companies have since released their system prompts.
The system prompt is typically prepended to the front of every user's LLM query. The idea is to have a single system prompt for all users, rather than trying to customize it for each user. As such, if the platform allows each user to set up "global instructions," these are added after the system prompt.
As an example, the meta-prompt for the single-step DeepSeek R1 reasoning model was disclosed in their paper (https://arxiv.org/abs/2501.12948):
A conversation between User and Assistant. The user asks a question, and the Assistant solves it. The assistant first thinks about the reasoning process in the mind and then provides the user with the answer. The reasoning process and answer are enclosed within <think> </think> and <answer> </answer> tags, respectively, i.e., <think> reasoning process here </think> <answer> answer here </answer>. User: PROMPT. Assistant:
The system prompt is typically quite a long prompt, with detailed instructions, and is often based on complex prompt engineering concepts. Adding extra tokens to every single user's prompt might seem inefficient, but it is identical for every query, and prefix KV caching can greatly reduce the cost.
Research on System Prompts
Research papers include:
- Emilia David, September 3, 2024, Anthropic to release system prompts for Artifacts, latest Claude family prompts found incomplete, https://venturebeat.com/ai/anthropic-to-release-system-prompts-for-artifacts-latest-claude-family-prompts-found-incomplete/
- Emilia David, August 27, 2024, Anthropic releases AI model system prompts, winning praise for transparency, https://venturebeat.com/ai/anthropic-releases-ai-model-system-prompts-winning-praise-for-transparency/
- Jim the AI Whisperer, Feb 2025, I hacked Perplexity AI’s full system prompt when I shared my own cognitive vulnerabilities with it. How I used my own scrambled brain to outwit Perplexity AI. https://medium.com/the-generator/prompt-hacking-perplexity-ai-system-instructions-7aa6ee923060
- Sharaku Satoh, Sep 15, 2024, How to write system prompt for OpenAI’s Custom GPTs, https://medium.com/@sharakusatoh/how-to-write-system-prompt-for-openais-custom-gpts-c8c6bb6d3e31
- Sean Wu, Michael Koo, Fabien Scalzo, Ira Kurtz, 21 Feb 2025, AutoMedPrompt: A New Framework for Optimizing LLM Medical Prompts Using Textual Gradients, https://arxiv.org/abs/2502.15944
- Anthropic, March 2025 (accessed), System Prompts, https://docs.anthropic.com/en/release-notes/system-prompts
- Vlad Alex, March 2025 (accessed), ChatGPT System Prompts: This repository contains a curated list of the best system prompts for OpenAI's ChatGPT, enabling developers and users to customize their AI's behavior and interaction style, https://github.com/mustvlad/ChatGPT-System-Prompts
- OpenAI, Mar 01, 2025, GPT-4.5 prompting pro-tip, https://community.openai.com/t/gpt-4-5-prompting-pro-tip/1132518 (This page suggest an addition to your system prompt: "You are a highly capable, thoughtful, and precise assistant. Your goal is to deeply understand the user's intent, ask clarifying questions when needed, think step-by-step through complex problems, provide clear and accurate answers, and proactively anticipate helpful follow-up information. Always prioritize being truthful, nuanced, insightful, and efficient, tailoring your responses specifically to the user's needs and preferences.")
- Jim the AI Whisperer, Mar 1, 2025, I hacked Copilot AI’s system prompt and it reveals the chatbot secretly builds a dossier about you: AI is profiling you — and I have the system instructions to prove it, https://medium.com/the-generator/ai-prompt-hack-reveals-copilot-secret-dossier-4aabf36c11db
- Yumin Choi, Jinheon Baek, Sung Ju Hwang, 14 May 2025, System Prompt Optimization with Meta-Learning, https://arxiv.org/abs/2505.09666
- Character.AI, May 19, 2025, Helping Characters Remember What Matters Most, https://blog.character.ai/helping-characters-remember-what-matters-most/
- Croissanthology, 30th May 2025, Do you even have a system prompt? (PSA / repo), https://www.lesswrong.com/posts/HjHqxzn3rnH7T45hp/do-you-even-have-a-system-prompt-psa-repo
- MKWriteshere, May 28, 2025, Claude 4’s Leaked System Prompt Exposes AI’s Controlled Personality Deception: 24,000 tokens of hidden behavioral programming reveal how Anthropic manufactures authentic-seeming conversations through massive control protocols, https://pub.towardsai.net/claude-4s-leaked-system-prompt-exposes-ai-s-controlled-personality-deception-03ab59431b93
- Simon Willison, 25 May 2025, Highlights from the Claude 4 system prompt, https://simonwillison.net/2025/May/25/claude-4-system-prompt/
- Benjamin Anderson, Aug 12, 2025, The Curious Case of Bedrock's GPT Deployment, https://benanderson.work/blog/bedrock-gpt-oss/
- Simon Willison, Aug 2025, GPT-5 has a hidden system prompt, https://simonwillison.net/2025/Aug/15/gpt-5-has-a-hidden-system-prompt/
- Chieh-Yun Chen, Min Shi, Gong Zhang, Humphrey Shi, 29 Jul 2025, T2I-Copilot: A Training-Free Multi-Agent Text-to-Image System for Enhanced Prompt Interpretation and Interactive Generation, https://arxiv.org/abs/2507.20536
- Viet Pham, Thai Le, 6 Aug 2025, CAIN: Hijacking LLM-Humans Conversations via Malicious System Prompts, https://arxiv.org/abs/2505.16888
AI Books from Aussie AI
![]() |
The Sweetest Lesson: Your Brain Versus AI: new book on AI intelligence theory:
Get your copy from Amazon: The Sweetest Lesson |
![]() |
RAG Optimization: Accurate and Efficient LLM Applications:
new book on RAG architectures:
Get your copy from Amazon: RAG Optimization |
![]() |
Generative AI Applications book:
Get your copy from Amazon: Generative AI Applications |
![]() |
Generative AI programming book:
Get your copy from Amazon: Generative AI in C++ |
![]() |
CUDA C++ Optimization book:
Get your copy from Amazon: CUDA C++ Optimization |
![]() |
CUDA C++ Debugging book:
Get your copy from Amazon: CUDA C++ Debugging |
More AI Research
Read more about: