<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Muhammad Talha Khalid</title>
    <description>The latest articles on DEV Community by Muhammad Talha Khalid (@talhakhalidmtk).</description>
    <link>https://dev.to/talhakhalidmtk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3859375%2F9a80aed2-1d07-4e15-aecd-63c22386dd6a.png</url>
      <title>DEV Community: Muhammad Talha Khalid</title>
      <link>https://dev.to/talhakhalidmtk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/talhakhalidmtk"/>
    <language>en</language>
    <item>
      <title>We Ran a Knowledge Risk Scan on FastAPI - Here's What a Healthy, Founder-Led Repo Actually Looks Like</title>
      <dc:creator>Muhammad Talha Khalid</dc:creator>
      <pubDate>Sun, 05 Apr 2026 10:19:01 +0000</pubDate>
      <link>https://dev.to/talhakhalidmtk/we-ran-a-knowledge-risk-scan-on-fastapi-heres-what-a-healthy-founder-led-repo-actually-looks-116</link>
      <guid>https://dev.to/talhakhalidmtk/we-ran-a-knowledge-risk-scan-on-fastapi-heres-what-a-healthy-founder-led-repo-actually-looks-116</guid>
      <description>&lt;h1&gt;
  
  
  We Ran a Knowledge Risk Scan on FastAPI - Here's What a Healthy, Founder-Led Repo Actually Looks Like
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; We built &lt;a href="https://kinlyze.com" rel="noopener noreferrer"&gt;Kinlyze&lt;/a&gt; to map knowledge concentration risk in codebases using nothing but Git history. To showcase what it surfaces, we scanned FastAPI - one of the most well-maintained open-source projects out there. The results are a textbook example of what founder-led development looks like structurally, and a perfect baseline for understanding what the same patterns would mean inside your company's codebase.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why FastAPI?
&lt;/h2&gt;

&lt;p&gt;FastAPI is a gold standard for open-source project maintenance. Sebastián Ramírez has built and maintained a framework that powers production systems across thousands of companies, has meticulous documentation in multiple languages, and a contributor community of 535 people. The project is actively developed, well-governed, and in excellent health.&lt;/p&gt;

&lt;p&gt;That makes it the ideal benchmark. When you scan a well-maintained, founder-led repo, you get a clean structural fingerprint - one person driving the vision, others contributing docs, translations, and targeted fixes. The patterns Kinlyze surfaces here aren't problems to fix. They're the &lt;strong&gt;expected signature&lt;/strong&gt; of a strong single-maintainer project.&lt;/p&gt;

&lt;p&gt;The real question is: do these same patterns appear in your team's codebase - where they &lt;em&gt;would&lt;/em&gt; be a problem?&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Kinlyze?
&lt;/h2&gt;

&lt;p&gt;Kinlyze is a CLI tool that analyzes knowledge concentration risk in engineering codebases. You point it at a Git repository, and it produces a full risk report: a knowledge heat map, bus factor analysis, developer departure profiles, user flow risk mapping, and grouped risk alerts.&lt;/p&gt;

&lt;p&gt;The key design constraint: &lt;strong&gt;Kinlyze never reads your source code.&lt;/strong&gt; It works entirely from Git metadata - commit timestamps, file paths, author info, and lines-added/deleted counts. No diffs, no file contents, no tokens or secrets. One &lt;code&gt;git log&lt;/code&gt; call, everything parsed in memory.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;./kinlyze &lt;span class="nt"&gt;--repo&lt;/span&gt; /path/to/your/project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No API keys, no dashboards to configure, no CI integration required. A terminal report in seconds.&lt;/p&gt;

&lt;h2&gt;
  
  
  The FastAPI Scan
&lt;/h2&gt;

&lt;p&gt;Here's the summary Kinlyze produced after scanning FastAPI:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;Value&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Files analyzed&lt;/td&gt;
&lt;td&gt;1,358&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Modules found&lt;/td&gt;
&lt;td&gt;196&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Total commits&lt;/td&gt;
&lt;td&gt;7,015&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Contributors&lt;/td&gt;
&lt;td&gt;535&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;User flows detected&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Risk alerts&lt;/td&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The first insight Kinlyze surfaces:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;94% of the repository is authored by Sebastián Ramírez.&lt;/strong&gt; 184 of 196 modules have a single primary contributor.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For FastAPI, this is entirely expected - and frankly, it's a sign of how deeply invested the maintainer is. The project is his creation, his vision, and his continued commitment. The 535 contributors mostly provide translations, documentation, and focused patches. The deep structural knowledge lives with the person who designed and built the framework.&lt;/p&gt;

&lt;p&gt;This is what a healthy founder-led project looks like under the hood. Now imagine seeing this exact same pattern in a company's production codebase where "the founder" is just an employee who might change jobs next quarter. Same data, very different risk profile.&lt;/p&gt;

&lt;h3&gt;
  
  
  Runtime vs. Low-Impact - Cutting Through the Noise
&lt;/h3&gt;

&lt;p&gt;Kinlyze flagged 193 modules as having a bus factor of 1. That sounds alarming - until you look at the breakdown:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;93 modules&lt;/strong&gt; are runtime-critical (core framework code, tests, security, API layer)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;100 modules&lt;/strong&gt; are in examples, templates, docs, or generated code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This automatic classification is one of Kinlyze's core design decisions. A bus factor of 1 on &lt;code&gt;fastapi/security&lt;/code&gt; is a fundamentally different kind of concentration than a bus factor of 1 on &lt;code&gt;docs/vi/docs&lt;/code&gt;. Both are surfaced, but clearly distinguished, so teams don't waste time cross-training someone on Vietnamese documentation when the auth layer needs attention first.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the Scoring Works
&lt;/h2&gt;

&lt;p&gt;Most "bus factor" tools just count commits. Developer A has 50 commits, Developer B has 10 - so A owns 83%. This is dangerously simplistic. What if A's 50 commits were all one-line typo fixes, and B built the entire payments module in 10 commits?&lt;/p&gt;

&lt;p&gt;Kinlyze scores ownership through three weighted signals, each designed to reflect how knowledge actually accumulates in engineering teams.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Change Significance - The Leniency Principle
&lt;/h3&gt;

&lt;p&gt;Not all commits represent equal knowledge. Kinlyze applies a significance multiplier based on how much code was actually changed:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Lines Changed&lt;/th&gt;
&lt;th&gt;Multiplier&lt;/th&gt;
&lt;th&gt;What It Represents&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1–5 lines&lt;/td&gt;
&lt;td&gt;0.1×&lt;/td&gt;
&lt;td&gt;Typo fix, comment, whitespace&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6–20 lines&lt;/td&gt;
&lt;td&gt;0.4×&lt;/td&gt;
&lt;td&gt;Small bug fix, config tweak&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;21–100 lines&lt;/td&gt;
&lt;td&gt;0.75×&lt;/td&gt;
&lt;td&gt;Feature addition, refactor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;101+ lines&lt;/td&gt;
&lt;td&gt;1.0×&lt;/td&gt;
&lt;td&gt;Major feature, new module&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;A developer who made 50 single-line fixes scores almost nothing. A developer who wrote one 300-line feature scores heavily. This is the &lt;strong&gt;leniency principle&lt;/strong&gt; - minor changes don't make you the owner.&lt;/p&gt;

&lt;p&gt;In FastAPI's case, this is exactly why Sebastián Ramírez's ownership score is so dominant. He isn't just making the most commits - he's making the most &lt;em&gt;meaningful&lt;/em&gt; commits. The significance weighting confirms what anyone familiar with the project already knows: the deep knowledge is his.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Recency - Knowledge Fades
&lt;/h3&gt;

&lt;p&gt;Code written three years ago and never revisited represents fading knowledge. Kinlyze applies a recency multiplier so that current active contributors outweigh historical authors:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Commit Age&lt;/th&gt;
&lt;th&gt;Multiplier&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0–30 days&lt;/td&gt;
&lt;td&gt;3.0×&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;31–90 days&lt;/td&gt;
&lt;td&gt;2.0×&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;91–180 days&lt;/td&gt;
&lt;td&gt;1.0×&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;181–365 days&lt;/td&gt;
&lt;td&gt;0.5×&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;365+ days&lt;/td&gt;
&lt;td&gt;0.1×&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This is particularly interesting in the FastAPI scan. Sebastián Ramírez's last activity was just 1 day before the scan - his recency multipliers are maxed out. Meanwhile, several other contributors show 100+ days of inactivity, which naturally decays their scores. In a team codebase, this decay is the early warning system: "Your payments expert hasn't touched the payments module in six months - their knowledge is fading."&lt;/p&gt;

&lt;h3&gt;
  
  
  3. The Composite Formula
&lt;/h3&gt;

&lt;p&gt;These signals combine into a per-developer ownership score for each file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ownership = (commit_score  × 0.40)
          + (exclusivity   × 0.40)
          + (criticality   × 0.20)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Commit Score (40%):&lt;/strong&gt; How actively and recently you've worked on the file, weighted by change significance&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Exclusivity (40%):&lt;/strong&gt; What fraction of the file's total weighted activity you own - the core risk signal&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Criticality (20%):&lt;/strong&gt; How business-critical the file is (auth, payments, and infra paths score higher than readmes)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;File scores are then aggregated up to the module (directory) level to produce the heat map.&lt;/p&gt;

&lt;h2&gt;
  
  
  User Flow Analysis - The Layer Most Tools Miss
&lt;/h2&gt;

&lt;p&gt;This is where Kinlyze goes beyond typical bus-factor tooling. A module-level heat map tells you which directories have concentrated ownership. But it doesn't answer a more important question: &lt;strong&gt;does one person own an entire user journey end to end?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Kinlyze groups related modules into &lt;strong&gt;user flows&lt;/strong&gt; - logical groupings that represent end-to-end capabilities like Authentication, Payments, Testing, or Infrastructure - and computes a flow-level bus factor.&lt;/p&gt;

&lt;p&gt;Here's what it found in FastAPI:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;User Flow&lt;/th&gt;
&lt;th&gt;Bus Factor&lt;/th&gt;
&lt;th&gt;Primary Owner&lt;/th&gt;
&lt;th&gt;Ownership&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Authentication&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;100.0%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Middleware&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;100.0%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Testing&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;89.7%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Infrastructure&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;86.5%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;API Layer&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;82.8%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data Persistence&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;76.6%&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Every user flow has a bus factor of 1. Authentication and Middleware are 100% single-owner.&lt;/p&gt;

&lt;p&gt;For FastAPI, this makes perfect sense. The person who designed the authentication model, built the middleware layer, and wrote the test suite is the same person who designed the framework itself. That's not a risk - that's the nature of founder-led development.&lt;/p&gt;

&lt;p&gt;But here's the mental exercise: &lt;strong&gt;replace "Sebastián Ramírez" with "that senior engineer who's been at your company for four years."&lt;/strong&gt; Suddenly the same table reads very differently. That's the insight Kinlyze is designed to surface.&lt;/p&gt;

&lt;h2&gt;
  
  
  Developer Departure Profiles
&lt;/h2&gt;

&lt;p&gt;Kinlyze generates a departure-impact profile for each contributor, answering: &lt;strong&gt;"What would it cost if this person became unavailable?"&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Developer&lt;/th&gt;
&lt;th&gt;Knowledge Share&lt;/th&gt;
&lt;th&gt;Impact&lt;/th&gt;
&lt;th&gt;Sole Owner Of&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Sebastián Ramírez&lt;/td&gt;
&lt;td&gt;86.5%&lt;/td&gt;
&lt;td&gt;CRITICAL&lt;/td&gt;
&lt;td&gt;69 modules&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nils Lindemann&lt;/td&gt;
&lt;td&gt;3.2%&lt;/td&gt;
&lt;td&gt;LOW&lt;/td&gt;
&lt;td&gt;1 module&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rafael de Oliveira Marques&lt;/td&gt;
&lt;td&gt;3.0%&lt;/td&gt;
&lt;td&gt;LOW&lt;/td&gt;
&lt;td&gt;0 modules&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jonathan Fulton&lt;/td&gt;
&lt;td&gt;2.1%&lt;/td&gt;
&lt;td&gt;LOW&lt;/td&gt;
&lt;td&gt;0 modules&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Marcelo Trylesinski&lt;/td&gt;
&lt;td&gt;1.5%&lt;/td&gt;
&lt;td&gt;LOW&lt;/td&gt;
&lt;td&gt;0 modules&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;In FastAPI, the departure profile confirms what the community already knows - this project is deeply identified with its creator, who continues to actively and consistently maintain it. The contributor tail is long but thin: 535 people, most with fractional knowledge shares.&lt;/p&gt;

&lt;p&gt;In a corporate engineering org, a developer profile showing 86.5% knowledge concentration would be an immediate flag for knowledge-transfer planning. Not because the person is going to leave - but because &lt;strong&gt;you don't get to choose when people become unavailable.&lt;/strong&gt; Parental leave, sabbaticals, reassignments, illness - availability risk isn't just about resignation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Risk Alerts - Grouped, Not Spammed
&lt;/h2&gt;

&lt;p&gt;A naive tool fires one alert per module and calls it a day. 196 modules with bus factor 1? That's 196 alerts. That's not risk management - that's noise.&lt;/p&gt;

&lt;p&gt;Kinlyze groups alerts by owner and pattern. Instead of 91 separate alerts, you get:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;CRITICAL - Bus factor 1:&lt;/strong&gt; Sebastián Ramírez is a single point of failure for 91 runtime modules. (93 additional low-impact modules in examples/templates/docs.)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Flow-level alerts are surfaced separately because they represent a different category of risk - not just "this directory" but "this entire capability":&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;CRITICAL - Flow risk:&lt;/strong&gt; Testing is one resignation away from unmaintainable. Sebastián Ramírez owns 89.7% of the entire Testing flow (83 modules).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And low-impact risks are clearly deprioritized:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;LOW:&lt;/strong&gt; Nils Lindemann owns 2 low-impact modules in examples/templates/docs. Consider whether these modules need maintainer redundancy.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This tiering - runtime-critical vs. low-impact, grouped by owner, sorted by severity - makes the output actionable rather than overwhelming.&lt;/p&gt;

&lt;h2&gt;
  
  
  Trend Detection
&lt;/h2&gt;

&lt;p&gt;Kinlyze also tracks whether knowledge concentration is &lt;strong&gt;improving, stable, or worsening&lt;/strong&gt; by comparing bus factors between two 90-day windows.&lt;/p&gt;

&lt;p&gt;In the FastAPI scan, most modules show &lt;code&gt;→&lt;/code&gt; (stable), with a few showing &lt;code&gt;↓&lt;/code&gt; (worsening) - meaning their bus factor actually dropped recently. For a team codebase, a worsening trend is the earliest possible warning: knowledge is concentrating &lt;em&gt;before&lt;/em&gt; a departure happens, giving you time to act.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Takeaway: Same Pattern, Different Context
&lt;/h2&gt;

&lt;p&gt;The FastAPI scan isn't a cautionary tale - it's a demonstration.&lt;/p&gt;

&lt;p&gt;Every pattern Kinlyze surfaced - the 94% ownership concentration, the bus-factor-1 user flows, the single-person departure profile - is completely natural for a founder-led open-source project with a dedicated, active maintainer. FastAPI is in great hands, and the data reflects that.&lt;/p&gt;

&lt;p&gt;The value of running Kinlyze isn't in discovering that FastAPI depends on its creator. Everyone knows that. The value is in having a tool that &lt;strong&gt;quantifies these patterns objectively&lt;/strong&gt; - so that when you run the same scan on your company's production codebase, you don't have to guess. You'll see exactly where knowledge lives, who holds it, which user flows are concentrated, and whether distribution is getting better or worse.&lt;/p&gt;

&lt;p&gt;Because in a corporate codebase, a 94% knowledge concentration number isn't a sign of dedication. It's a risk that needs a plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;Kinlyze is a single binary. No dependencies, no signup, no network calls.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;./kinlyze &lt;span class="nt"&gt;--repo&lt;/span&gt; /path/to/your/project
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Some useful flags:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Last 90 days only&lt;/span&gt;
./kinlyze &lt;span class="nt"&gt;--repo&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nt"&gt;--days&lt;/span&gt; 90

&lt;span class="c"&gt;# Top 20 riskiest modules&lt;/span&gt;
./kinlyze &lt;span class="nt"&gt;--repo&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nt"&gt;--top&lt;/span&gt; 20

&lt;span class="c"&gt;# JSON output for CI pipelines&lt;/span&gt;
./kinlyze &lt;span class="nt"&gt;--repo&lt;/span&gt; &lt;span class="nb"&gt;.&lt;/span&gt; &lt;span class="nt"&gt;--json&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The full FastAPI scan - 7,015 commits, 535 contributors, 1,358 files - completed in seconds.&lt;/p&gt;

&lt;p&gt;Check it out at &lt;a href="https://kinlyze.com" rel="noopener noreferrer"&gt;kinlyze.com&lt;/a&gt; or on &lt;a href="https://github.com/talhakhalidmtk/kinlyze-library" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Questions, feedback, or want to share your own scan results? Drop a comment or connect on &lt;a href="https://linkedin.com/in/talha-khalid-mtk" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>devtools</category>
      <category>git</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
