frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I made a Fake MRR Maker in 5 minutes

https://mrrnow.lovable.app
1•LeoJB•17s ago•1 comments

KDE Connect of the Future

https://tintotint.eu/programming/kde-connect/
2•LorenDB•2m ago•0 comments

Show HN: A faster fuck (thefuck CLI rewritten in Rust)

https://github.com/dianyo/thefuck-rs
2•ddyo•3m ago•0 comments

Show HN: Tasuki – A Task Aggregator for Waybar

https://github.com/zachfleeman/tasuki
1•zfleeman•4m ago•0 comments

Mitigating Prompt Injection with Finite Automata over Agent Trajectories

https://dystopiabreaker.xyz/fsm-prompt-injection
2•skybrian•5m ago•0 comments

Show HN: Phi-Redactor – HIPAA Phi Redaction Proxy for OpenAI/Anthropic APIs

https://github.com/DilawarShafiq/phi-redactor
1•dilawargopang•6m ago•1 comments

Show HN: Free Snowflake Observability

1•karamazov•6m ago•0 comments

Shall We Play a Game? – Frontier Models in Simulated Nuclear Crises

https://www.kcl.ac.uk/shall-we-play-a-game
1•saboot•6m ago•0 comments

Testing "Raw" GPU Cache Latency

https://clamtech.org/?dest=gpudirectlatency
1•matt_d•7m ago•0 comments

Show HN: pg_stream – incremental view maintenance for PostgreSQL in Rust

https://github.com/grove/pg-stream
1•grove•8m ago•0 comments

Show HN: Zen Router – An opinionated HTTP router

https://zenrouter.liveblocks.io/docs
1•nvie81•9m ago•0 comments

U.S. Power-Plant Pollution Rose Sharply in 2025

https://www.wsj.com/us-news/climate-environment/u-s-power-plant-pollution-rose-sharply-in-2025-08...
2•impish9208•9m ago•1 comments

IHR data dumps (including IYP)

https://archive.ihr.live/ihr/
1•1vuio0pswjnm7•9m ago•0 comments

The More You Spend on a Wi-Fi Router, the Worse It Gets

https://www.criticaster.com/blog/wifi-routers-most-disappointing-category
1•gghootch•9m ago•0 comments

Show HN: GameScout AI – AI-powered game recommender

https://gamescout-ai.vercel.app
1•wasivis•10m ago•0 comments

Content Marketers: Quit Your Whining and Learn to Pitch

https://www.animalz.co/blog/creative-pitch
1•nathanowahl•10m ago•0 comments

Show HN: WebPrepImage – Local batch image resizer with file-size limits

https://github.com/arbopa/webprepimage
1•arbopa•10m ago•0 comments

Amateur tennis players love data as much as the pros

https://www.nytimes.com/athletic/7059579/2026/02/26/tennis-amateur-data-strava/
1•Austin_Conlon•10m ago•0 comments

Show HN: I stopped building apps for people. Now I make CLI tools for agents

https://github.com/Aayush9029/homebrew-tap
1•aayush9029•11m ago•0 comments

Show HN: I built the US version of "Are You Dead?", China's viral check-in app

https://imalivetoday.com
1•maxtermed•11m ago•0 comments

Tension Myositis Syndrome

https://en.wikipedia.org/wiki/Tension_myositis_syndrome
2•pinkmuffinere•13m ago•0 comments

The Custodial Republic

https://www.mwiya.com/the-custodial-republic/
1•exolymph•13m ago•0 comments

8B tokens a day forced AT&T to rethink AI orchestration, cutting costs by 90%

https://venturebeat.com/orchestration/8-billion-tokens-a-day-forced-at-and-t-to-rethink-ai-orches...
1•ryan_j_naughton•13m ago•0 comments

Show HN: Bingo Caller Pro – Offline 75/90 Ball Bingo Host

1•1derfool•13m ago•1 comments

The Kia PV5 electric van combines futuristic looks and thoughtful design

https://arstechnica.com/cars/2026/02/the-kia-pv5-electric-van-combines-futuristic-looks-and-thoug...
1•PaulHoule•14m ago•0 comments

Omarchy 3.4.0

https://github.com/basecamp/omarchy/releases/tag/v3.4.0
1•earcar•15m ago•0 comments

The Buses Should Be Free

https://nicholasdecker.substack.com/p/the-buses-really-should-be-free
1•exceptione•15m ago•0 comments

RCade: Building a Community Arcade Cabinet

https://www.frankchiarulli.com/blog/building-the-rcade/
1•evakhoury•16m ago•0 comments

Show HN: TechGrill – AI Interview Practice

https://techgrill.vercel.app
1•wasivis•17m ago•0 comments

TikTok Influencer Accused of Swaying Romanian Presidential Election

https://www.bloomberg.com/news/features/2026-02-26/tiktok-influencer-accused-of-swaying-romanian-...
2•epistasis•18m ago•0 comments
Open in hackernews

Show HN: Depwire – Dependency graph and MCP tools so AI stops refactoring blind

https://github.com/depwire/depwire
3•atefataya•1h ago
Hey HN,

If you use AI coding tools, you've hit this: you start a new chat, ask Claude or Cursor to refactor something, and it hallucinates an import. Or renames a function but misses 3 call sites. Or suggests moving a file with no idea what depends on it.

The problem is simple — AI tools have no map of your codebase. Every new chat starts from zero. They burn tokens scanning files they already saw, guess at dependencies, and give you confident answers based on incomplete context. Lost context = wasted tokens + broken code + time spent fixing what AI was supposed to fix.

I built Depwire to solve this. It parses your codebase with tree-sitter, builds a complete dependency graph, and serves it to AI tools via MCP (Model Context Protocol). The graph persists across sessions — your AI never forgets the architecture.

Now when I ask "what breaks if I rename Router?", I get the exact blast radius: 5 implementing classes, 2 core framework files, 14 downstream consumers, ~25 files total. Not a guess — a deterministic answer from the actual dependency graph.

What it does: - Parses TypeScript, JavaScript, Python, and Go (tree-sitter, deterministic) - 10 MCP tools: impact analysis, dependency tracing, architecture summaries, symbol search, and more - Interactive arc diagram visualization in the browser - File watcher keeps the graph current as you edit - Zero config: npm install -g depwire-cli. No databases, no cloud, no Docker - Everything local. No data leaves your machine. - Full repository context, not just single file.

Tested on real projects — Hono (305 files, 5,636 symbols, 2.3s), Excalidraw (320 files), FastAPI, Express, Cobra. Zero parse errors.

Install: npm install -g depwire-cli GitHub: https://github.com/depwire/depwire Site: https://depwire.dev

Solo founder, scratching my own itch. BSL 1.1 (converts to Apache 2.0 in 2029). Happy to answer questions.

Comments

george_ciobanu•1h ago
Haha we literally posted at the same time - very cool, also check out mine in the same vein: getpando.ai
atefataya•1h ago
Ha, great timing! Just checked out pando, interesting approach with CAD for code. Good luck with the launch!
Nick2080•17m ago
Hi, What makes it different from other AI tools? Thank you!
atefataya•10m ago
Most AI coding tools only see the files you paste into the chat. They have no idea how your codebase is connected, what depends on what, what breaks if you change something.

Depwire gives them the full picture. It parses your entire repo, builds a dependency graph, and serves it to Claude Desktop, Cursor, or VS Code through MCP. So instead of guessing at imports or missing call sites, the AI knows the actual architecture.

Practical difference: I ask "what breaks if I rename Router?" and get the exact answer: 25 files, broken down by direct dependencies and downstream consumers. Without Depwire, the AI would guess and probably miss half of them.

It also saves tokens. Instead of the AI scanning random files trying to understand your project, it queries the graph directly. Faster responses, lower cost, better code.

To sumup: it gives AI tools full repository context, not just a single file, a complete dependency map of your codebase, so they write better code, faster, with fewer tokens, and stop breaking things they can't see.