Blog

Essays, playbooks, and product updates.

Hotspots v1.25.1–v1.31.0: Explanations, a Regime-Aware Ranker, and a Burst-Score Formula Term

Stephen Collins · Jul 14, 2026

Six versions in four weeks. Most of it is quieter infrastructure — easier installs, a cleaner ranker feature set, tighter CI policy control. The two releases worth reading closely …

Why I let AI train on this

Stephen Collins · Jul 2, 2026

I just flipped ai-train=yes in robots.txt. Here's the reasoning, not just the setting.

How phrasing affects LLM compliance with spec security clauses

Stephen Collins · Jun 29, 2026

I tested five ways to phrase a security requirement across four language models. The phrasing most commonly used in practice was near the bottom on all four of them. The phrasing t…

How hotspots measures itself

Stephen Collins · Jun 28, 2026

A ranking tool that can't measure its own accuracy is just vibes with syntax highlighting. Here's how hotspots keeps itself honest.

When You Don't Have Enough History to Train

Stephen Collins · Jun 24, 2026

Every new repo starts with the same problem: no defect labels, no training signal, no basis for a risk ranking beyond 'how often does this file change?'

The Signal That Evaporated (And the One That Didn't)

Stephen Collins · Jun 24, 2026

Two signals looked nearly identical on paper. One collapsed under temporal holdout. The other survived — and the difference tells you something important about how to design defect…

Spearman ρ Looked Fine. P@10 Was Zero.

Stephen Collins · Jun 24, 2026

Spearman ρ can be positive and meaningful while the top-ranked files contain zero future bugs. Here's how I found that out, why it happens, and how to catch it before it reaches a …

Tabular Beats LLM, and That's the Right Answer

Stephen Collins · Jun 24, 2026

On most codebases, a small XGBoost model trained on git history features outperforms a fine-tuned 7B LLM at defect risk ranking — not because the LLM is bad, but because the data i…

Hotspots v1.25.0: Repo Screener, CI Workflows, and Cleaner TypeScript Names

Stephen Collins · Jun 16, 2026

Three things that should have existed already: a way to know if training is worth running, a one-command CI setup, and TypeScript functions that show up under their actual names.

The Coupling Signal That Kept Inverting Itself

Stephen Collins · Jun 10, 2026

I tried three formulations of co-change coupling for defect risk ranking. Raw co-occurrence inverted on dense codebases. Mutual information made it worse.

Your Transformer Featurizer Only Helps When Your History Is Broken

Stephen Collins · Jun 10, 2026

Transformer embeddings on source code improved defect ranking on exactly the repos where git history had already failed — and added near-zero or negative signal everywhere else. He…

Java Code Health: Patterns Across 10 Open-Source Repositories

Stephen Collins · Jun 6, 2026

I analyzed 10 popular Java repositories and found the same three antipatterns in every single one. Here's what that tells us about Java development practices at scale.

The Defect Prediction Trap

Stephen Collins · Jun 5, 2026

I fine-tuned a model that scored Spearman ρ=+0.678 on defect risk. Then I zeroed out the git history fields and it dropped to −0.142. The model wasn't reading code. It was relaying…

The Metric That Hides Failure

Stephen Collins · Jun 5, 2026

Spearman ρ measures average rank agreement across all files. Precision@K measures whether the files engineers actually review are in the right place. On mature, stable codebases, a…

Which LLM Vendor Wins at Defect Risk Prediction?

Stephen Collins · Jun 5, 2026

When evaluating open-weight models for code analysis, the vendor comparison you run in 2024 might give you the wrong answer in 2025.

When Your Labels Lie: File-Level Bug Attribution Inflates Defect Rates

Stephen Collins · May 31, 2026

Most defect prediction pipelines share a quiet assumption: if a file was touched in a bug-fix commit, every function in that file was 'buggy' — and that assumption silently inflate…

How to Know If Fine-Tuning Will Help Before You Run It

Stephen Collins · May 25, 2026

Before you spend compute on per-repo fine-tuning, one scalar from the codebase's bug-fix history can tell you whether it's worth running. Here's how it works and what it can't pred…

Go Code Health: Patterns Across 12 Open-Source Repositories

Stephen Collins · May 22, 2026

I analyzed 12 Go repositories and found the same structural antipatterns in every single one. Here's what the data shows.

JavaScript Code Health: Patterns Across 19 Open-Source Repositories

Stephen Collins · May 22, 2026

I analyzed 19 open-source JavaScript repositories and found exit-heavy functions in 89% of them. Here's what the data reveals about structural debt in the JavaScript ecosystem.

Python Code Health: Patterns Across 12 Open-Source Repositories

Stephen Collins · May 22, 2026

I analyzed 12 open-source Python repositories and found complex branching in 100% of them. Here's what the data reveals about Python code health patterns.

Rust Code Health: Patterns Across 11 Open-Source Repositories

Stephen Collins · May 22, 2026

I analyzed 11 popular Rust repositories to find the most common code health antipatterns. Every single one had exit-heavy functions and long functions — Rust's ownership model does…

TypeScript Code Health: Patterns Across 44 Open-Source Repositories

Stephen Collins · May 22, 2026

I analyzed 44 TypeScript repositories and found structural antipatterns in nearly all of them. Here's what the data shows about where complexity accumulates.

Hotspots v1.18.0: Compact Storage

Stephen Collins · May 21, 2026

Snapshot history is valuable. Unbounded snapshot growth is not. v1.18.0 ships two compaction levels that shrink your .hotspots directory without losing the history that matters.

Hotspots v1.17.0: Model Risk Map and Monorepo Subsystems

Stephen Collins · May 20, 2026

Hotspots already tells you which functions are risky. v1.17.0 tells you which models those functions cluster around — and makes risk scores meaningful inside monorepo package bound…

Can a Fine-Tuned LLM Learn Which Code Is Risky?

Stephen Collins · May 16, 2026

I spent a few weeks running a controlled experiment: can a small language model, fine-tuned on a specific codebase's history, learn to rank code by defect risk better than a hand-t…

Hotspots now handles monorepos — what changed from v1.11 to v1.15.1

Stephen Collins · Apr 24, 2026

The diff command shipped in v1.11. Since then: four months of OOM fixes, a new SQLite pipeline, hybrid touch mode, and --auto-analyze. Hotspots now handles 28k-function monorepos a…

TypeScript produces less exit-heavy code than Go or Python — and more branching

Stephen Collins · Apr 17, 2026

exit_heavy averages 5.3 in non-TypeScript repos and 4.5 in TypeScript. complex_branching has the highest max-out rate of any pattern in TS. The flip is structural, not stylistic — …

Hub functions are a frontend framework problem — here's the data

Stephen Collins · Apr 17, 2026

hub_function barely appears in Go, Rust, or Python repos. In TypeScript UI framework code it's concentrated in coordinator functions with fan-out values of 37–112. Here's why.

Five structural patterns appear in nearly every TypeScript OSS repo I've analysed

Stephen Collins · Apr 17, 2026

Five structural patterns — god_function, long_function, exit_heavy, complex_branching, deeply_nested — appear in 86–100% of the 28 TypeScript OSS repos I've analysed. Here's what t…

Running Hotspots on expo/expo Without Running Out of Memory

Stephen Collins · Apr 12, 2026

expo/expo crashed Hotspots with an OOM. Here's the full account: what broke, the systematic fixes across memory and CPU, and the new escape-hatch flags that make very large repos p…

hotspots diff: Compare Complexity Between Any Two Branches, Tags, or Commits

Stephen Collins · Mar 26, 2026

Delta mode compares a commit to its parent. That's fine for local development — but CI needs to compare a PR branch to main, and tag comparisons need to reach back further. hotspot…

What Happens When You Run Hotspots on 102,000 Functions

Stephen Collins · Mar 14, 2026

I stress-tested Hotspots against VS Code (102k functions) and found an O(N³) bug, a sampling tail exclusion bug, and a philosophical question about approximation accuracy — all in …

AI Agents Can Pass Tests. They Still Can't Maintain Systems.

Stephen Collins · Mar 11, 2026

AI coding tools have made writing software dramatically easier. A new benchmark shows maintaining it is still the hard part — and the failure modes are predictable.

AI Made Code Cheap. The Bottleneck Is Now Understanding Systems.

Stephen Collins · Mar 8, 2026

AI removed code production as the engineering bottleneck. The new constraint is comprehension - and most developer tooling wasn't built for that problem.

The 20% Rule for Codebases: A Practical Refactoring Playbook

Stephen Collins · Feb 22, 2026

Use this practical worksheet to intersect change and complexity, pick three high‑leverage targets, and add simple guardrails to prevent backslide.

Stop Missing Regressions in PRs: Complexity Policy Checks in CI

Stephen Collins · Feb 22, 2026

Code review misses slow creep. Use Hotspots policies in CI to stop risky complexity changes before they merge — start warn‑only, then flip to blocking.

Introducing Hotspots: Find Risky Functions and Stop Regressions

Stephen Collins · Feb 21, 2026

Meet Hotspots — a lightweight analyzer with explainable risk, shareable reports, and CI policies so you fix what matters and keep it from slipping back.

Repository Analyses

Nightly hotspot reports for popular open-source repos. Browse all →

danielmiessler/Fabric

Fabric's streamlit UI carries the complexity outlier — main hits CC 192

go exit_heavygod_function
Jul 25
cli/cli

cli/cli's command layer carries the highest activity risk — 5 functions to address first

go exit_heavycomplex_branching
Jul 24
mudler/LocalAI

LocalAI's static asset layer carries the highest activity risk

go complex_branchingdeeply_nested
Jul 23
gogs/gogs

gogs/gogs's highest structural debt is in vendored CodeMirror plugins

go exit_heavygod_function
Jul 22
hashicorp/terraform

Terraform's type and backend layer — 5 functions to address first

go complex_branchingdeeply_nested
Jul 21
Textualize/textual

Textual's parser and layout engine carry the highest activity risk

python complex_branchingdeeply_nested
Jul 20
roboflow/supervision

supervision's metrics layer carries the highest risk — 5 functions to fix first

python long_functioncomplex_branching
Jul 19
babysor/MockingBird

MockingBird's training loops carry the most structural debt — 5 functions to fix first

python god_functioncomplex_branching
Jul 18
sqlmapproject/sqlmap

sqlmap's core engine carries the highest activity risk — 5 functions to address first

python complex_branchingdeeply_nested
Jul 17
agno-agi/agno

agno-agi/agno's async run layer — 5 functions to address first

python complex_branchingdeeply_nested
Jul 16
paperless-ngx/paperless-ngx

paperless-ngx's signal handlers — 5 functions to address first

python complex_branchingdeeply_nested
Jul 16
vllm-project/vllm

vllm's streaming layer carries the highest activity risk — 5 functions to address first

python complex_branchingdeeply_nested
Jul 15
pingcap/tidb

pingcap/tidb's planner and DDL layer — 5 functions to address first

go complex_branchingexit_heavy
Jul 14
ray-project/ray

ray-project/ray's RLlib and DAG layers carry the highest risk — 5 functions to fix first

python complex_branchingexit_heavy
Jul 13
deepspeedai/DeepSpeed

DeepSpeed's accelerator and MoE layers carry the highest risk — 5 functions to fix first

python complex_branchinggod_function
Jul 12
gradio-app/gradio

gradio-app/gradio's event pipeline carries the highest activity risk — 5 functions to address first

python complex_branchingdeeply_nested
Jul 11
mitmproxy/mitmproxy

mitmproxy's web layer carries the highest activity risk — 5 functions to address first

python god_functionlong_function
Jul 10
getsentry/sentry

getsentry/sentry's backup, metrics, and query layers carry the highest activity risk — 5 functions to address first

python exit_heavygod_function
Jul 9
junegunn/fzf

fzf's terminal and options layer carries the highest activity risk — 5 functions to address first

go complex_branchinglong_function
Jul 9
apache/airflow

apache/airflow's dev tooling carries the highest activity risk — 5 functions to flag

python complex_branchingexit_heavy
Jul 8
crewAIInc/crewAI

crewAI's LLM streaming layer carries the highest activity risk — 5 functions to flag

python complex_branchingdeeply_nested
Jul 8
alibaba/zvec

alibaba/zvec's concurrency layer carries the highest activity risk — 5 functions to flag

c++ exit_heavygod_function
Jul 7
run-llama/llama_index

llama_index's integration layer carries the highest activity risk — 5 functions to address first

python complex_branchingdeeply_nested
Jul 7
pandas-dev/pandas

pandas-dev/pandas: parser, JSON encoder, and DataFrame construction carry the highest risk

python complex_branchingdeeply_nested
Jul 6
ueberdosis/tiptap

tiptap's markdown layer carries the highest activity risk — 5 functions to address first

typescript complex_branchinggod_function
Jul 5
Automattic/mongoose

Mongoose's query/document layer carries the highest activity risk — 5 functions to address first

javascript complex_branchingexit_heavy
Jul 4
nestjs/nest

nestjs/nest's validation and transport layer carries the highest activity risk — 5 functions to address first

typescript exit_heavycomplex_branching
Jul 3
prettier/prettier

prettier/prettier's printer layer carries the highest activity risk — 5 functions to address first

javascript complex_branchingexit_heavy
Jul 3
vitejs/vite

vitejs/vite's import analysis layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Jul 3
swagger-api/swagger-ui

swagger-ui's JSON Schema layer carries the highest structural debt — 5 functions to address first

javascript god_functionlong_function
Jul 2
GoogleChrome/lighthouse

lighthouse's audits and renderer carry the highest activity risk — 5 to address first

javascript exit_heavygod_function
Jul 1
parallax/jsPDF

parallax/jsPDF: WebPDecoder.js holds the highest structural debt — 4 functions to address

javascript complex_branchingdeeply_nested
Jun 30
lovell/sharp

sharp's _createInputDescriptor carries the top risk — CC 183, five times the next hotspot

javascript exit_heavycomplex_branching
Jun 29
lutzroeder/netron

netron's core viewer and tooling carry the highest activity risk — 5 functions to address first

javascript complex_branchingdeeply_nested
Jun 28
pcottle/learnGitBranching

learnGitBranching's app layer carries structural debt — 5 functions to address first

javascript exit_heavycomplex_branching
Jun 27
vsavkin/large-monorepo

large-monorepo's benchmark.js carries the highest activity risk — 3 functions to watch first

typescript
Jun 27
Aider-AI/aider

Aider's core coder and I/O layers carry the highest structural debt — 5 functions to address first

python long_functionexit_heavy
Jun 26
gchq/CyberChef

CyberChef's core ops carry the highest activity risk — 5 functions to address first

javascript complex_branchingexit_heavy
Jun 26
DavidHDev/react-bits

react-bits' tools and backgrounds carry the highest activity risk — 5 functions to address first

javascript exit_heavylong_function
Jun 25
streamlit/streamlit

streamlit's server and script-runner layer carries the highest activity risk — 5 functions to address first

python complex_branchingexit_heavy
Jun 24
naptha/tesseract.js

tesseract.js's worker-script carries the highest activity risk — 4 functions

javascript complex_branchinggod_function
Jun 23
phaserjs/phaser

Phaser's tween builder and WebGL renderer carry the highest activity risk — 5 functions

javascript complex_branchingdeeply_nested
Jun 22
videojs/video.js

video.js's events.js carries the highest structural debt — 3 functions to address first

javascript exit_heavygod_function
Jun 21
vuejs/vitepress

VitePress's router and plugin layer carry the highest structural debt — 5 functions to address first

typescript god_functionlong_function
Jun 21
zen-browser/desktop

zen-browser/desktop's tab and split-view layer carries the highest activity risk — 5 functions to address first

javascript complex_branchinggod_function
Jun 20
yarnpkg/yarn

yarn's PnP resolver carries the highest structural debt — 4 functions to address first

javascript exit_heavycomplex_branching
Jun 19
nwjs/nw.js

nw.js's test vendor bundle carries the highest activity risk — 4 functions to address first

javascript complex_branchingexit_heavy
Jun 18
nolimits4web/swiper

Swiper's mousewheel and touch modules carry the highest risk — 5 functions to address

javascript exit_heavygod_function
Jun 17
parcel-bundler/parcel

parcel's compiler core carries the highest structural debt — 5 functions to fix first

javascript complex_branchingdeeply_nested
Jun 16
gofiber/fiber

gofiber/fiber's middleware layer carries the highest activity risk — 5 functions to address first

go exit_heavygod_function
Jun 15
wshobson/agents

wshobson/agents' tooling layer carries the highest activity risk — 5 functions to address first

python exit_heavycomplex_branching
Jun 15
Leaflet/Leaflet

Leaflet's GeoJSON and map core carry the highest activity risk — 5 to address first

javascript exit_heavycomplex_branching
Jun 14
meteor/meteor

meteor/meteor's core packages carry the highest structural debt — 5 functions to address first

javascript complex_branchinglong_function
Jun 13
microsoft/monaco-editor

monaco-editor's LSP and tokenization layer carries the highest structural debt — 5 functions to address first

javascript exit_heavylong_function
Jun 12
serverless/serverless

serverless/serverless's auth layer carries the highest activity risk — 5 to address first

javascript complex_branchingdeeply_nested
Jun 11
bigskysoftware/htmx

htmx's structural debt is concentrated — 5 functions to address first

javascript complex_branchingdeeply_nested
Jun 10
thedotmack/claude-mem

claude-mem's SearchManager.ts carries the highest activity risk — 4 functions to address first

typescript long_functioncomplex_branching
Jun 9
koala73/worldmonitor

worldmonitor's notification layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Jun 8
redis/redis

redis/redis's module and networking layer carries the highest structural debt — 5 functions to address first

c cyclic_hubcomplex_branching
Jun 7
upscayl/upscayl

upscayl's electron commands carry the highest structural debt — 5 functions to address first

typescript god_functionlong_function
Jun 7
indiespirit/react-native-chart-kit

react-native-chart-kit's render layer carries the highest structural debt — 5 functions to address first

typescript long_function
Jun 6
mattermost/mattermost

mattermost/mattermost's API and notification layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Jun 5
portainer/portainer

portainer's Kubernetes and API layer — 5 high-activity-risk functions to address first

typescript exit_heavygod_function
Jun 4
NervJS/taro

NervJS/taro's transformer layer carries the highest structural debt — 5 functions to fix

typescript complex_branchingdeeply_nested
Jun 3
outline/outline

outline/outline's editor and WebSocket queue carry the highest activity risk — 5 hotspots

typescript complex_branchingdeeply_nested
Jun 2
supabase/supabase

supabase's type parser and storage explorer are the highest risks — all 5 touched today

typescript exit_heavycomplex_branching
Jun 2
RSSNext/Folo

Folo's UI and integration layer has the highest activity risk — 5 functions to address

typescript exit_heavycomplex_branching
Jun 1
Kong/insomnia

Kong/insomnia's rendering and sync layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
May 31
elysiajs/elysia

elysiajs/elysia's core index carries the highest activity risk — 5 functions to address first

typescript long_functioncomplex_branching
May 30
remotion-dev/remotion

Remotion's compositor and media-parser carry the highest activity risk — two to fix first

typescript complex_branchingexit_heavy
May 30
novuhq/novu

novuhq/novu's framework layer carries the highest activity risk — 2 functions to address first

typescript complex_branchingdeeply_nested
May 29
appsmithorg/appsmith

appsmith's bundled ECharts tops activity risk — 5 functions to address first

typescript complex_branchingcyclic_hub
May 28
trpc/trpc

trpc/trpc's HTTP core carries the highest structural debt — 5 functions to address first

typescript god_functionlong_function
May 27
koajs/koa

koajs/koa's response layer carries the highest structural risk — 5 functions to address first

javascript complex_branchingexit_heavy
May 26
sudheerj/reactjs-interview-questions

reactjs-interview-questions' coding-exercise carries the highest risk — 2 functions first

javascript exit_heavy
May 25
twentyhq/twenty

twentyhq/twenty sandbox and rendering hotspots — 5 functions to address first

typescript complex_branchinggod_function
May 25
calcom/cal.com

cal.com's booking layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingexit_heavy
May 24
chakra-ui/chakra-ui

chakra-ui's codemod layer carries the highest activity risk — 2 functions to address first

typescript complex_branchingdeeply_nested
May 24
typescript-cheatsheets/react

typescript-cheatsheets/react's tooling layer carries the highest activity risk — 2 functions to address first

typescript long_function
May 24
go-gorm/gorm

go-gorm/gorm's schema debt leads the risk list — 5 functions to address first

go complex_branchingdeeply_nested
May 23
rustfs/rustfs

rustfs storage and protocol hotspots — 5 functions to address first

rust complex_branchingdeeply_nested
May 23
google/langextract

langextract's batch provider and extraction carry the highest activity risk — 5 hotspots

python exit_heavygod_function
May 22
sudheerj/javascript-interview-questions

javascript-interview-questions' deepMerge carries the highest risk — 1 function to address first

javascript
May 21
abhigyanpatwari/GitNexus

GitNexus's ingestion core carries the highest activity risk — 2 functions to address first

typescript complex_branchingdeeply_nested
May 20
ajeetdsouza/zoxide

zoxide's import layer carries the highest activity risk — 3 functions to address first

rust exit_heavycomplex_branching
May 19
labstack/echo

echo's binding layer carries the highest activity-weighted risk — 5 functions to address

go exit_heavygod_function
May 19
juanfont/headscale

headscale's policy/v2 layer carries the highest activity risk — 2 functions to address first

go exit_heavygod_function
May 18
safishamsi/graphify

graphify's extract layer carries the highest activity risk — 2 functions to address first

python complex_branchingdeeply_nested
May 17
bmad-code-org/BMAD-METHOD

BMAD-METHOD's installer module carries the highest activity risk — 5 functions to address first

javascript exit_heavycomplex_branching
May 16
CherryHQ/cherry-studio

cherry-studio's AI core and MCP layer carry the highest activity risk — 5 functions to address first

typescript god_functionlong_function
May 15
ChromeDevTools/chrome-devtools-mcp

chrome-devtools-mcp's response layer carries the highest risk — 2 functions to fix first

typescript complex_branchinggod_function
May 15
alibaba/canal

alibaba/canal's adapters carry the highest activity risk — 5 functions to address first

java exit_heavygod_function
May 14
vercel-labs/agent-browser

agent-browser's React bridge has top activity risk — 5 functions to address first

rust complex_branchingdeeply_nested
May 13
MHSanaei/3x-ui

3x-ui's bot and inbound paths carry the highest risk — 5 functions to address first

go complex_branchingexit_heavy
May 12
jingyaogong/minimind

minimind's RL trainers carry the highest activity risk — 3 functions to address first

python complex_branchinggod_function
May 11
zhayujie/CowAgent

CowAgent's LLM protocol layer carries the highest activity risk — 2 functions to address first

python complex_branchingdeeply_nested
May 10
santifer/career-ops

career-ops' analysis layer carries the highest activity risk — 5 functions to address first

javascript god_functionlong_function
May 9
earendil-works/pi

pi's AI provider and tooling layers carry the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
May 8
janhq/jan

jan's proxy and provider UI carry the highest first-party risk — 2 functions to address first

typescript complex_branchingdeeply_nested
May 8
binarywang/WxJava

WxJava's member card and serialization layers carry the highest structural risk — 5 functions to address first

java exit_heavygod_function
May 7
AlistGo/alist

alist's WebDAV XML layer carries the highest activity risk — 3 functions to address first

go exit_heavygod_function
May 6
labstack/echo

labstack/echo's binding and middleware layers carry the highest activity risk — 5 functions to address first

go exit_heavygod_function
May 6
sunface/rust-course

rust-course's rustlings-zh entry points carry the highest structural debt — 2 functions to address first

rust exit_heavycomplex_branching
May 6
HKUDS/nanobot

nanobot's message and CLI layers carry the highest activity risk — 2 functions to address first

python complex_branchingdeeply_nested
May 5
remoteintech/remote-jobs

remote-jobs' link checker carries the highest risk — 5 functions to review first

javascript exit_heavyneighbor_risk
May 4
D4Vinci/Scrapling

Scrapling's engine layer — 5 functions with the highest activity-weighted risk

python exit_heavycomplex_branching
May 3
slidevjs/slidev

slidevjs/slidev code health: no function data returned for commit 36f8a89

typescript
May 3
immerjs/immer

immer's perf scripts and plugins carry the highest risk — 5 functions to review first

javascript long_functionexit_heavy
May 3
vuetifyjs/vuetify

Vuetify's color utilities carry the highest activity risk — 5 functions to address first

typescript exit_heavygod_function
May 3
badlogic/pi-mono

pi-mono's AI provider layer carries the highest activity risk — 3 functions to address first

typescript complex_branchingdeeply_nested
May 1
xuxueli/xxl-job

xxl-job's cron scheduler carries the highest activity risk — 2 functions to address first

java complex_branchingdeeply_nested
Apr 30
facebook/react

React's compiler and hooks plugin carry the highest activity risk — 5 functions

javascript complex_branchingdeeply_nested
Apr 29
sharkdp/fd

fd's walk and exec subsystems carry the highest structural risk — 5 functions

rust exit_heavycomplex_branching
Apr 29
kubernetes/kubernetes

Kubernetes's kubelet and apiserver carry the highest activity risk — 5 functions

go complex_branchingdeeply_nested
Apr 29
evanw/esbuild

esbuild's JS parser carries the highest activity risk — 3 functions to address first

go complex_branchingdeeply_nested
Apr 28
microsoft/qlib

qlib's init and model layer carry the highest structural risk — 5 to refactor first

python god_functioncomplex_branching
Apr 27
HeyPuter/puter

Puter's GUI layer carries the highest activity risk — 3 functions to address first

javascript god_functionlong_function
Apr 26
oobabooga/textgen

textgen's chat layer carries the highest activity risk — 3 functions to address first

python complex_branchingdeeply_nested
Apr 26
pixijs/pixijs

PixiJS's rendering layer carries the highest activity risk — 3 functions to address first

typescript complex_branchingdeeply_nested
Apr 26
docsifyjs/docsify

docsify's YAML front-matter parser carries the highest activity risk — 3 functions to address first

javascript god_functioncomplex_branching
Apr 25
apache/rocketmq

RocketMQ's broker and client layers carry the highest activity risk — 5 functions to address first

java complex_branchingdeeply_nested
Apr 24
expo/expo

expo-router carries expo/expo's highest activity risk — 3 functions to address first

typescript complex_branchingdeeply_nested
Apr 24
google/comprehensive-rust

comprehensive-rust's theme layer carries the highest activity risk — 4 functions to address first

rust exit_heavylong_function
Apr 23
spf13/cobra

cobra's completion subsystem carries the highest activity risk — 5 functions to address first

go exit_heavygod_function
Apr 22
2noise/ChatTTS

ChatTTS's scheduler carries the highest activity risk — 5 functions to address first

python god_functionlong_function
Apr 21
Fission-AI/OpenSpec

OpenSpec's core and schema layers carry the highest activity risk — 5 functions to address first

typescript complex_branchingexit_heavy
Apr 19
redisson/redisson

Redisson's cron layer carries the highest activity risk — 5 functions to address first

java complex_branchingdeeply_nested
Apr 18
iced-rs/iced

iced's winit and widget layers carry the highest structural risk — 5 functions to address first

rust long_functiongod_function
Apr 17
XTLS/Xray-core

Xray-core's proxy layer carries the highest activity risk — 5 functions to address first

go complex_branchingexit_heavy
Apr 16
hesreallyhim/awesome-claude-code

awesome-claude-code's scripts carry the highest activity risk — 5 to address first

python complex_branchinggod_function
Apr 15
iamkun/dayjs

dayjs's core formatter carries the highest structural debt — 5 functions to address first

javascript exit_heavygod_function
Apr 14
vercel/hyper

vercel/hyper's UI reducer and config migrator carry the highest real activity risk

typescript complex_branchingexit_heavy
Apr 13
google/gson

gson's type resolution and parsing carry the highest structural risk — 5 functions to address first

java exit_heavydeeply_nested
Apr 12
lapce/lapce

lapce's command dispatch carries the highest activity risk — 3 functions to address first

rust long_functiongod_function
Apr 11
schollz/croc

croc's core transfer layer carries the highest activity risk — 5 functions to address first

go god_functionlong_function
Apr 10
NanmiCoder/MediaCrawler

MediaCrawler's JS bundle dominates the top 5 hotspots — exclude to surface Python risk

python exit_heavycomplex_branching
Apr 9
sahat/hackathon-starter

hackathon-starter's auth and API layer carries the highest activity risk — 5 functions to address first

javascript exit_heavycomplex_branching
Apr 8
chenglou/pretext

pretext's analysis core carries the highest activity risk — 5 functions to address first

typescript god_functionlong_function
Apr 7
skylot/jadx

jadx's decompiler core carries the highest activity risk — 5 functions to address first

java complex_branchingdeeply_nested
Apr 6
vadimdemedes/ink

ink's output and keypress layers carry the highest risk — 4 functions to address first

typescript long_functionexit_heavy
Apr 5
conductor-oss/conductor

conductor-oss/conductor's UI layer carries the highest activity risk — 5 functions to address first

java complex_branchingdeeply_nested
Apr 4
FuelLabs/fuels-rs

fuels-rs's docs theme carries the highest activity risk — 5 vendored functions to address first

rust exit_heavygod_function
Apr 3
filebrowser/filebrowser

filebrowser's frontend and HTTP layer carry the highest activity risk — 5 functions to address first

go god_functionexit_heavy
Apr 2
exo-explore/exo

exo's benchmarking layer carries the highest activity risk — 5 functions to address first

python complex_branchingexit_heavy
Apr 1
preactjs/preact

Preact's diff engine carries the highest activity risk — 3 functions to address first

javascript complex_branchinglong_function
Mar 31
paperclipai/paperclip

paperclip's server layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 30
CodePhiliaX/Chat2DB

Chat2DB's SQL processing layer carries the highest activity risk — 3 functions to address first

java cyclic_hubhub_function
Mar 29
casey/just

casey/just's parser and lexer carry the highest activity risk — 5 functions to address first

rust complex_branchingdeeply_nested
Mar 28
charmbracelet/bubbletea

bubbletea's core runtime carries the highest activity risk — 3 functions to address first

go exit_heavygod_function
Mar 27
virattt/ai-hedge-fund

ai-hedge-fund's frontend layer carries the highest activity risk — 3 files to address first

python exit_heavygod_function
Mar 26
drawdb-io/drawdb

drawdb's editor and SQL layer carry the highest activity risk — 5 functions to address first

javascript exit_heavylong_function
Mar 25
garrytan/gstack

gstack's browse layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingexit_heavy
Mar 24
shareAI-lab/learn-claude-code

learn-claude-code's agent layer carries highest activity risk — 5 functions to address

typescript exit_heavycomplex_branching
Mar 23
gsd-build/get-shit-done

get-shit-done's CLI core carries the highest activity risk — 5 functions to address first

javascript complex_branchingdeeply_nested
Mar 22
lyswhut/lx-music-desktop

lx-music-desktop's renderer layer carries the highest structural risk — 5 functions to address first

typescript complex_branchingexit_heavy
Mar 22
usebruno/bruno

bruno's OpenAPI sync and CLI runner carry the highest activity risk — 3 functions to address first

javascript complex_branchingdeeply_nested
Mar 21
xyflow/xyflow

xyflow's system layer carries the highest activity risk — 5 functions to address first

typescript long_functiongod_function
Mar 21
google/zx

google/zx's markdown layer is the live regression risk — 4 structural debt functions follow

javascript god_functionexit_heavy
Mar 20
upstash/context7

context7's CLI commands carry the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 19
markedjs/marked

marked's Tokenizer and Instance layers carry the highest activity risk — 3 functions to address first

typescript exit_heavycomplex_branching
Mar 18
react-hook-form/react-hook-form

react-hook-form's control layer carries the highest activity risk — 3 functions first

typescript god_functionlong_function
Mar 17
typeorm/typeorm

typeorm's query-builder and driver layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 16
styled-components/styled-components

styled-components' CSS parsing layer carries the highest activity risk — 4 functions to address first

typescript exit_heavycomplex_branching
Mar 15
mifi/lossless-cut

lossless-cut's renderer layer leads activity risk — 5 functions to address first

typescript exit_heavygod_function
Mar 14
chalk/chalk

chalk/chalk's vendor layer carries the highest activity risk — 3 functions to address first

javascript exit_heavylong_function
Mar 14
colinhacks/zod

Zod's JSON schema layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 13
fastapi/full-stack-fastapi-template

full-stack-fastapi-template's HTTP client layer carries the highest activity risk — 2 functions to address first

typescript god_functionlong_function
Mar 12
lerna/lerna

lerna's oidc and command initializers carry the highest activity risk — 3 to prioritize

typescript complex_branchingdeeply_nested
Mar 11
code-yeongyu/oh-my-openagent

oh-my-openagent's event and hooks layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 10
umami-software/umami

umami's API and tracker layer carry the highest activity risk — 5 functions to address first

typescript long_functionexit_heavy
Mar 10
hexojs/hexo

hexojs/hexo's post-rendering layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 9
ant-design/ant-design-pro

ant-design-pro's request and mock layers carry the highest activity risk — 4 functions to address first

typescript exit_heavygod_function
Mar 8
AykutSarac/jsoncrack.com

jsoncrack.com's json2go and parser layers carry the highest activity risk — 5 functions to address first

typescript god_functionlong_function
Mar 7
type-challenges/type-challenges

type-challenges' automation scripts carry the highest activity risk — 3 functions to address first

typescript stale_complexgod_function
Mar 6
chatboxai/chatbox

chatbox's UI and knowledge-base layers carry the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 5
tldraw/tldraw

tldraw's Editor.ts carries the highest activity risk — 3 functions to address first

typescript complex_branchingexit_heavy
Mar 4
OpenCut-app/OpenCut

OpenCut's timeline and audio layer carries the highest activity risk — 5 functions to address first

typescript exit_heavylong_function
Mar 3
TanStack/query

TanStack/query's persistence and devtools layers carry the highest activity risk — 3 functions to address first

typescript exit_heavycomplex_branching
Mar 2
FlowiseAI/Flowise

FlowiseAI/Flowise's agent execution layer carries the highest activity risk — 5 functions to address first

typescript complex_branchingdeeply_nested
Mar 1
eslint/eslint

eslint's rule engine carries the highest activity risk — 2 functions to address first

javascript exit_heavygod_function
Mar 1