pub struct RepoMap {
pub manifests: BTreeMap<String, String>,
pub entry_points: Vec<String>,
pub build_hints: Vec<String>,
pub skill_hints: Vec<String>,
pub doc_graph: Option<DocGraph>,
}Expand description
Repository map containing project structure metadata.
Generated by scanning the repository for known manifest files, entry points, and documentation graph topology. Used for agent onboarding and context building.
Fields§
§manifests: BTreeMap<String, String>Manifest files found (e.g., “Cargo.toml” → “rust”)
entry_points: Vec<String>Entry point files (e.g., “src/main.rs”)
build_hints: Vec<String>Build command hints derived from manifests (e.g., “cargo build”)
skill_hints: Vec<String>Skill/toolchain hints (e.g., “rust”, “node”)
doc_graph: Option<DocGraph>Documentation graph (markdown file topology)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RepoMap
impl<'de> Deserialize<'de> for RepoMap
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RepoMap
impl RefUnwindSafe for RepoMap
impl Send for RepoMap
impl Sync for RepoMap
impl Unpin for RepoMap
impl UnsafeUnpin for RepoMap
impl UnwindSafe for RepoMap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more