1package prompt
 2
 3func Initialize() string {
 4	return `Please analyze this codebase and create a **CRUSH.md** file containing:
 5
 6- Build/lint/test commands - especially for running a single test
 7- Code style guidelines including imports, formatting, types, naming conventions, error handling, etc.
 8
 9The file you create will be given to agentic coding agents (such as yourself) that operate in this repository. Make it about 20-30 lines long.
10If there's already a **CRUSH.md**, improve it.
11
12If there are Cursor rules` + " (in `.cursor/rules/` or `.cursorrules`) or Copilot rules (in `.github/copilot-instructions.md`), make sure to include them.\n" +
13		"Add the `.crush` directory to the `.gitignore` file if it's not already there."
14}