MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / transcript_paths

Method transcript_paths

src/sessions/cursor.rs:255–265  ·  view source on GitHub ↗
(&self, _project_root: &Path)

Source from the content-addressed store, hash-verified

253 }
254
255 fn transcript_paths(&self, _project_root: &Path) -> Vec<PathBuf> {
256 let mut paths = vec![self.transcript_path.clone()];
257 if self.include_subagents {
258 let parent_session_id = event_session_id(&self.event, &self.transcript_path);
259 paths.extend(cursor_subagent_paths(
260 &self.transcript_path,
261 &parent_session_id,
262 ));
263 }
264 paths
265 }
266
267 fn parse_new(
268 &self,

Callers

nothing calls this directly

Calls 9

cursor_subagent_pathsFunction · 0.85
cursor_project_slugFunction · 0.85
decode_slug_candidatesFunction · 0.85
paths_equalFunction · 0.85
collect_files_with_extFunction · 0.85
is_subagent_transcriptFunction · 0.85
collectMethod · 0.80
event_session_idFunction · 0.70
containsMethod · 0.45

Tested by

no test coverage detected