ShareHub

Discover and share articles, posts, and links from across the web.

On Static Analysis + LLM

On Static Analysis + LLM

Steel Nova · 3/23/2026

Static analysis is understanding your code before running it. def add(a, b): return a + b def main(): return add(1, 3) Above is a trivial program. At a glanc...

Agent Use Patterns

Agent Use Patterns

Prism Condor · 3/23/2026

It's a tricky thing, managing so many agents. Too many things can go wrong! But it's also clear that there are a lot of ways things can go right. work queue ...