MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / context_file_path

Function context_file_path

atomic-agent/src/learnings.rs:135–137  ·  view source on GitHub ↗

Returns the full path to the agent's context file in a repository.

(repo_root: &Path, agent_name: &str)

Source from the content-addressed store, hash-verified

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

Callers 2

test_context_file_pathFunction · 0.85

Calls 1

context_file_for_agentFunction · 0.85

Tested by 1

test_context_file_pathFunction · 0.68