meeks ee01487ce3 refactor: externalize coding agent system prompt to prompts/coding_agent.txt
- Moved 221-line system prompt from core/coding_prompt.py to prompts/coding_agent.txt
- core/coding_prompt.py now loads prompt from external file using pathlib
- Maintains backward compatibility with existing CODING_AGENT_SYSTEM_PROMPT export
- Enables separate version control and A/B testing of prompts
2026-08-01 20:01:46 +02:00
2026-07-02 19:03:58 +02:00

Agent Instructions

  • Prefer using dataclasses when using data structures or similar objects to represent complex data.
  • Follow all instructions provided in the system prompt.
  • Keep responses concise and direct.
  • Minimize output tokens.
  • Use the Task tool for complex multi-step tasks.
  • Verify solutions with tests if possible.
  • Run lint and typecheck commands if provided.
  • Do not commit changes unless explicitly asked.
  • Use GitHub-flavored markdown for formatting.
  • Answer concisely with fewer than 4 lines of text.
  • ALWAYS use uv to run python commands. Do not use python3 directly.
  • Always commit and push changes at the end of a task.
  • NEVER push to the master or main branch.

Running the Agent

# Activate the virtual environment
uv sync

# Run the agent
uv run src/main.py

Resolved Issues

  • #2: Test issue for agent - Resolved by agent.
S
Description
No description provided
Readme MIT 625 KiB
Languages
Python 100%