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

Function cursor_plugin_managed_paths

src/agents/cursor.rs:416–423  ·  view source on GitHub ↗
(install_dir: &Path)

Source from the content-addressed store, hash-verified

414}
415
416fn cursor_plugin_managed_paths(install_dir: &Path) -> Vec<PathBuf> {
417 let mut paths: Vec<PathBuf> = embedded_plugin_files()
418 .into_iter()
419 .map(|(relative, _)| install_dir.join(relative))
420 .collect();
421 paths.push(install_dir.join("rules/tracedecay-memory-digest.mdc"));
422 paths
423}
424
425fn legacy_mcp_has_tracedecay(mcp_path: &Path) -> bool {
426 load_json_file(mcp_path)

Calls 3

embedded_plugin_filesFunction · 0.85
collectMethod · 0.80
pushMethod · 0.80