What problem does it solve? Security teams often lack visibility into who actually maintains sensitive code (auth, crypto, secrets), which files have dangerously low bus factor, and where CODEOWNERS files have drifted from reality. This Skill mines git history to answer those questions with concrete data. ## Core Features & Use Cases - Ownership Graph Construction: Builds a bipartite people-to-files graph from git log, with recency weighting, timezone detection, and bot exclusion. - Security Risk Summaries: Flags orphaned sensitive code, hidden owners controlling large shares of auth/crypto code, and low bus-factor hotspots. - Co-Change Clustering: Computes file-to-file Jaccard similarity edges and community detection (via networkx) to reveal ownership clusters, ignoring noisy lockfile and CI commits. - Use Case: Run the build script against your repository, then query summary.json for orphaned sensitive code and compare the results against your CODEOWNERS file to find ownership drift before an audit. ## Quick Start Ask the agent to build a security ownership map for this repository and identify bus-factor risks in sensitive code.