mirror of
https://github.com/asgeirtj/system_prompts_leaks.git
synced 2026-02-12 17:22:59 +00:00
2.5 KiB
2.5 KiB
WARP.md
This file provides guidance to WARP (warp.dev) when working with code in this repository.
Repository Overview
This is a community-maintained collection of system prompts, system messages, and developer messages from various AI systems. It's a documentation-only repository with no build system, tests, or dependencies.
Directory Structure
Organized by company/provider:
- Anthropic/ - Claude system prompts, tool definitions, and feature-specific prompts
- Google/ - Gemini system prompts (webapp, CLI, guided learning modes)
- OpenAI/ - ChatGPT/GPT system prompts
- OpenAI/API/ - API-specific system messages and configuration docs
- OpenAI/Old/ - Archived/historical prompts
- Perplexity/ - Perplexity AI system prompts
- Proton/ - Luma AI system prompts
- xAI/ - Grok system prompts and persona definitions
- Misc/ - Other AI systems (Warp, Kagi, Raycast, Le Chat, Sesame AI, Fellou)
File Naming Conventions
When adding new system prompts, follow these patterns:
- Model version:
claude-4.5-sonnet.md,gpt-5-thinking.md,grok-4.md - Feature/mode specific:
claude-code-plan-mode.md,gemini-2.5-pro-guided-learning.md - Tool definitions:
tool-file_search.md,tool-python.md,tool-deep-research.md - Use descriptive names that make the content immediately clear
File Formats
- Primary format: Markdown (
.md) - Alternative formats:
.txt,.xml,.jsfor structured data - Some prompts include JSON/XML artifacts when that's how they're transmitted
Contributing
This repository welcomes pull requests. When adding new prompts:
- Place in appropriate company/provider directory (or
Misc/if unclear) - Use descriptive filenames following existing conventions
- Include metadata context where helpful (date extracted, model version, access method)
- No special formatting or linting requirements
Important Notes
- No build/test commands - this is pure documentation
- Check
Anthropic/readme.mdfor details on character encoding in Claude prompts - Check
OpenAI/API/readme.mdfor API-specific system message details - The repository includes Warp's own agent prompt in
Misc/Warp-2.0-agent.md
Common Tasks
View all files in a directory:
ls Anthropic/
Find prompts matching a pattern:
fd -e md -e txt "claude-code" Anthropic/
Search for specific content:
rg "artifacts" Anthropic/
Check recent additions:
git --no-pager log --oneline -10