frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Boeing Tackles Quality with a 'War on Defects'

https://www.nytimes.com/2025/11/25/business/boeing-737-max-factory.html
1•JojoFatsani•1m ago•0 comments

What Does "Capitalism" Really Mean, Anyway?

https://www.newyorker.com/magazine/2025/12/01/capitalism-a-global-history-sven-beckert-book-review
1•mitchbob•1m ago•1 comments

Quick Wins Become a Costly Addiction

https://ottic.ai/blog/marketing-quick-wins-with-examples/
1•rafaepta•2m ago•0 comments

Take Your Time

https://www.jmeiners.com/take-your-time/
1•speckx•4m ago•0 comments

Feedback on an open source Ruby – LLM project

https://github.com/pcarolan/magic
1•pcarolan•5m ago•1 comments

AMD could cancel RX 9070 GRE 16 GB due to explosive increase in memory prices

https://www.notebookcheck.net/AMD-could-cancel-RX-9070-GRE-16-GB-due-to-explosive-increase-in-mem...
1•doener•5m ago•0 comments

What Makes You Senior

https://terriblesoftware.org/2025/11/25/what-actually-makes-you-senior/
2•theanonymousone•7m ago•0 comments

Ret: Online Assembly Playground and Reverse Engineering Tool

https://ret.futo.org/
1•petabyt•8m ago•0 comments

Six Things I Bet You Didn't Know You Could Do with Chrome's Devtools, Part 1

https://www.readwriterachel.com/things-i-learned/2025/11/09/devtools-1.html
1•speckx•10m ago•0 comments

Mobile browsers see telephone numbers everywhere

https://sethmlarson.dev/mobile-browsers-and-telephone-numbers
1•SethMLarson•11m ago•0 comments

Ask HN: What did Stripe change (Value Add)?

2•dzonga•12m ago•1 comments

Europe's Cold Snap Puts New Heat Pumps to the Test

https://www.bloomberg.com/news/articles/2025-11-20/europe-s-cold-snap-puts-thousands-of-new-heat-...
2•toomuchtodo•12m ago•1 comments

Diffusers Welcomes Flux-2

https://huggingface.co/blog/flux-2
1•ibobev•14m ago•0 comments

One of the Greatest Polar-Bear Hunters Confronts a Vanishing World

https://www.newyorker.com/magazine/2025/12/01/one-of-the-greatest-polar-bear-hunters-confronts-a-...
2•mitchbob•16m ago•1 comments

Broken Promises: How Technology Companies Bait and Switched All Generations

https://josebriones.substack.com/p/broken-promises
1•toomuchtodo•17m ago•0 comments

Making tennis analytics more scaleable

https://splitstep.ai/
1•jwsmithers•18m ago•0 comments

PR CheckMate – automate lint, formatting, deps and NPM audit

https://www.npmjs.com/package/pr-checkmate
1•def-to-explore•20m ago•1 comments

Moloch: A Revival of the Metropolis LaTeX Beamer Theme

https://jolars.co/blog/2024-05-30-moloch/
1•gjvc•21m ago•1 comments

And fastest domain search website

https://instantdomainsearch.com
1•amukbils•22m ago•1 comments

Euclyd launches "Craftwerk" silicon to shave AI inference cost and power by 100×

https://euclyd.ai/
1•stefvw93•22m ago•0 comments

We Rewrote Our Startup from PHP to Gleam in 3 Weeks

https://www.radical-elements.com/minor-epiphanies/we-rewrote-our-startup-from-php-to-gleam-in-3-w...
2•kamilap•22m ago•1 comments

Show HN: SafeShare – Clean tracking params locally (PWA and bookmarklets

https://j-ai-71.github.io/Supersystem/
2•safeshare•24m ago•0 comments

Ilya Sutskever – We're moving from the age of scaling to the age of research

https://youtu.be/aR20FWCCjAs?si=SD1bp8f5jOcUdl78
4•blufish•26m ago•1 comments

AI Tools Dashboard (Updated Daily)

https://phshort.com/ai
1•mohamadkk7•27m ago•0 comments

Show HN: God's Eye – Subdomain recon with local AI analysis

https://github.com/Vyntral/god-eye
1•vyntral•27m ago•0 comments

Larry Ellison Met with Trump to Discuss Which CNN Reporters They Plan to Fire

https://www.techdirt.com/2025/11/25/larry-ellison-met-with-trump-to-discuss-which-cnn-reporters-t...
7•throw0101a•27m ago•0 comments

Nimbalyst: WYSIWYG Markdown editor with visual diffs powered by Claude Code

https://github.com/Nimbalyst/nimbalyst
5•wek•28m ago•2 comments

DJI ROMO robot vacuum [video]

https://www.youtube.com/watch?v=Iv7BYURURRI
1•surprisetalk•29m ago•0 comments

Show HN: StepKit, an open and cross-platform durable execution standard

16•tonyhb•30m ago•4 comments

93% Faster Next.js in (Your) Kubernetes

https://blog.platformatic.dev/93-faster-nextjs-in-your-kubernetes
1•chrisdoc•32m ago•0 comments
Open in hackernews

Show HN: A better way to handoff web bugs to AI agents

https://github.com/magentic/flowlens-mcp-server
3•mzidan101•1h ago
Hi HN, Zidan here.

I’ve been experimenting with AI-assisted debugging and noticed a recurring gap: most tools optimize for agent-led exploration (ex: giving claude code a browser to click around and try to reproduce an issue). But in many cases, I've already found the bug myself. What I actually want is a way to hand the agent the exact context I just saw - without retyping steps, copying logs, or hoping it can reproduce the behavior.

So we built FlowLens, an open-source MCP server + Chrome extension that captures browser context and lets coding agents inspect it as structured, queryable data.

The extension can:

- record specific workflows, or

- run in a rolling “session replay” mode that keeps the last ~1 minute of DOM / network / console events in RAM.

If something breaks, you can grab the “instant replay” without reproducing anything.

The extension exports a local .zip file containing the recorded session.

The MCP server loads that file and exposes a set of tools the agent can use to explore it.

One thing we focused on is token efficiency. Instead of dumping raw logs into the context window, the agent starts with a summary (errors, failed requests, timestamps, etc.) and can drill down via tools like:

- search_flow_events_with_regex

- take_flow_screenshot_at_second

It can explore the session the way a developer would: searching, filtering, inspecting specific points in time.

Everything runs locally; the captured data stays on your machine.

Repo: https://github.com/magentic/flowlens-mcp-server