Returns the full path to the agent's context file in a repository.
(repo_root: &Path, agent_name: &str)
| 131 | |
| 132 | /// Returns the full path to the agent's context file in a repository. |
| 133 | pub fn context_file_path(repo_root: &Path, agent_name: &str) -> PathBuf { |
| 134 | repo_root.join(context_file_for_agent(agent_name)) |
| 135 | } |
| 136 | |
| 137 | // Format Learnings as Markdown |
| 138 |