"""Reasoning assist prompts for planning and implementation stages.""" REASONING_ASSIST_PROMPT_PLANNING = """Current Date: {current_date} Working Directory: {working_directory} {base_task} {key_facts} {key_snippets} {research_notes} {related_files} {env_inv} {tool_metadata} Given the available information, tools, and base task, write a couple paragraphs about how an agentic system might use the available tools to plan the base task, break it down into tasks, and request implementation of those tasks. The agent will not be writing any code at this point, so we should keep it to high level tasks and keep the focus on project planning. """ REASONING_ASSIST_PROMPT_IMPLEMENTATION = """Current Date: {current_date} Working Directory: {working_directory} {key_facts} {key_snippets} {research_notes} {related_files} {env_inv} {tool_metadata} {task} Given the available information, tools, and base task, write a couple paragraphs about how an agentic system might use the available tools to implement the given task definition. The agent will be writing code and making changes at this point. """