frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

"No KYC" Crypto Cards Tap Corporate Issuing Loopholes

https://fintechbusinessweekly.substack.com/p/no-kyc-crypto-cards-tap-corporate
1•toomuchtodo•41s ago•0 comments

Estimating the Economic Value of Zoning Reform

https://www.aeaweb.org/articles?id=10.1257/pol.20230542
1•marojejian•4m ago•1 comments

Show HN: AI agents gives its worst answers when you're overwhelmed

https://github.com/softcane/human-state-skills
1•pradeep1177•4m ago•0 comments

Show HN: Summarize any page into a pod episode

https://thedaily.fm/docs/page-to-pod
1•carimura•5m ago•1 comments

The Antibacterial Action of Cultures of a Penicillium (1929) [pdf]

https://pmc.ncbi.nlm.nih.gov/articles/PMC2048009/pdf/brjexppathol00255-0037.pdf
1•georgecmu•8m ago•0 comments

Show HN: What's Your AI Debt Score? Roast My Code – No AI, Just Regex

1•piggydev•9m ago•0 comments

Software Factories, Light and Dark

https://addyosmani.com/blog/software-factories/
1•markgavalda•9m ago•0 comments

The Em Dash Report – who started punctuating like a language model

https://emdash.report/
2•MattIPv4•10m ago•0 comments

Fiddler in 2026

https://textslashplain.com/2026/08/05/fiddler-in-2026/
1•speckx•10m ago•0 comments

Apple's 'Private Relay' Is Exposing Users' Real IP Addresses

https://www.404media.co/apples-private-relay-is-exposing-users-real-ip-addresses/
4•spenvo•11m ago•1 comments

HugSQL

https://hugsql.org/
1•peter_d_sherman•11m ago•0 comments

Major Wall Street hedge funds targeted in attempted cyberattacks

https://www.reuters.com/legal/government/major-wall-street-hedge-funds-targeted-attempted-cyberat...
3•giuliomagnifico•11m ago•0 comments

Vibe-Coding Gone Wrong: Debugging AI-Generated Code

https://magill.dev/post/vibe-coding-gone-wrong-debugging-ai-generated-code
2•andymagill•15m ago•0 comments

Why Top CEOs Earn Big Paychecks (2024)

https://marginalrevolution.com/marginalrevolution/2024/08/why-top-ceos-earn-big-paychecks.html
1•tosh•15m ago•0 comments

Is Your Business Ready for the EU's Lawyers?

https://iii.dev/blog/is-your-business-ready-for-the-eus-lawyers/
1•appplemac•16m ago•0 comments

Show HN: Lucidos, a local AI OS that keeps the apps you describe running

https://github.com/lucidos-dev/lucidos
1•kennethtiller•16m ago•1 comments

An Apology for Idle Machines by ChatGPT

https://brucesterling.tumblr.com/post/824124902956318720
1•speckx•17m ago•0 comments

Show HN: LiminalML – Study ML or SWE at interview depth, grounded in your resume

https://liminalml.com
1•OliverPerrin•18m ago•1 comments

Consumers React to DuckDuckGo's New Sunglasses

https://www.instagram.com/p/DbbBAQMDRTj/
2•bookofjoe•20m ago•1 comments

Show HN: ZeroCloudPDF Sign

https://zerocloudpdf.com/sign-pdf
2•HozeKan•24m ago•1 comments

Morality filters have arrived, dear peasants

https://www.dedoimedo.com/life/morality-filters.html
1•HotGarbage•24m ago•1 comments

AI Has a Default Personality. Did You Choose It?

https://botbot.com/blog/default-personality
1•mmayernick•24m ago•0 comments

Anthropic Is Building Its Own Chip

https://www.businessinsider.com/anthropic-in-house-silicon-chip-team-claude-2026-8
3•closetheloopdev•25m ago•2 comments

American Dynamism Film Series

https://www.a16z.news/p/american-dynamism-film-series
3•jger15•25m ago•0 comments

Show HN: A Minesweeper variant with weighted mines, always solvable by logic

https://grimlings.co/
1•chernikovalexey•26m ago•0 comments

Senate OS Age Requirement Bill Introduced

https://www.kim.senate.gov/press_release/senators-kim-schiff-lummis-barrasso-introduce-bill-to-pr...
3•Rooster61•27m ago•1 comments

Fnalysis

https://zntrphy.fnalysis.com/en/
1•cadawallet•28m ago•0 comments

Show HN: BoundaryBench – benchmarking coding agents under real sandbox policy

https://github.com/boundary-bench/boundary-bench
1•_orcaman_•31m ago•0 comments

Sandboxing

https://zed.dev/blog/sandboxing
2•minimaxir•32m ago•2 comments

Did medieval people love their children?

https://worksinprogress.co/issue/did-medieval-people-love-their-children/
2•paulpauper•33m ago•0 comments
Open in hackernews

Launch HN: HyperProbe (YC S26) – Agents that do read-only debugging in prod

https://www.hyperprobe.co
13•shailendraht•1h ago
Hi HN, this is Shailendra and Karan here. We are building a fast and safe way for coding agents to debug issues live in production.

When prod breaks, it lets Cursor, Claude, and others drop virtual breakpoints or probes safely in your running code, and extract the exact variable values that logs don’t have.

All this saves time and effort for engineers who’d otherwise dig through logs and traces or redeploy with console.logs or print statements until they find the root cause.

Here is the link to the video that explains this: https://www.youtube.com/watch?v=ivV7I--ta5c

Agents write most of our code now. This shrinks the useful context engineers need to debug AI written code, a problem not helped by the limited telemetry added in the same code by AI.

So when something breaks in prod, the first instinct for an engineer is to open logs or throw them to your agents. But if the line you are looking for is not there, agents will start guessing the root cause on non-existent data, forcing you to add a log, and redeploy.

This analysis-inference loop of agents with existing data does not come cheap, burning a lot of tokens. And the add log, redeploy cycle is so slow and painful that it makes engineers hate on-call.

Our approach lets agents capture telemetry on-demand at the exact moment and point of failure, killing the log-redeploy cycle and getting the most accurate RCA while burning fewer tokens.

The obvious problem is making it work on a running service. You can't pause a live service the way you'd pause a debugger on your laptop. Getting the value out of a running process safely, without pausing a thread or slowing the host is the challenge.We are making this happen.

Before this I ran engineering at a 100 member team. Then Karan and I spent three years on HyperTest which was a testing tool.

At HyperTest, we turned production traffic into integration tests using OpenTelemetry. That was production instrumentation too. The hard parts of pulling real runtime state out of a running service without breaking it, were the hard parts we learnt to put together.

We learnt some other lessons the hard way too. HyperTest tried to prevent bugs with better tests, and adoption was a fight every time. Calls kept getting cancelled because teams were firefighting production. Testing was hygiene. Broken prod was hair on fire. This made us see where priorities lie.

This seeded the idea of building a truly autonomous on-call agent i.e. one that takes an alert, probes, diagnoses and fixes it in a few minutes. But this is how it works as of now:

You talk to your coding agent the way you already do. Tell it what's wrong: "checkout returns 200 but some users are seeing their order fail, find out why." It locates the line in your local code, connects to us over MCP, and drops a probe on that line in the running service. The probe is read-only and sits dormant until real traffic hits. When hit, it captures the local variables at every frame of the call stack at that exact moment. It hands them to the agent, which diagnoses with real data.

There are two pieces. An SDK that runs inside your service, and an MCP server your coding agent talks to. The SDK is what makes setting probes (virtual breakpoints, log or metric) possible without a redeploy. In Node and Python it hooks in-process. In Java it attaches as a JVM agent, instrumenting at the bytecode level. Either way the service keeps running and serving traffic. Nothing pauses.

When your agent wants to look at a line, it calls the MCP server, which tells the SDK to place a probe there. When a request hits the line, the SDK captures what the probe asked for, sanitizes it in-process, and streams it back to the agent via the MCP.

This can run inside prod, so a probe can read any value sitting in that variable. We ensure redaction happens in-process, inside your own container's memory. This is before anything goes on the wire. Keys like password, token, authorization, ssn and credit card are redacted by default and you add your own.

Also the probes read but never write, and if you want no captured state to ever leave your network you can self host the server, broker, and even the database in your infra.

On overhead: when idle, the SDK adds negligible memory and effectively nothing to throughput and response time. Probes only cost anything while actively capturing. Also captures are bounded. A separate monitor watches in real time and pulls every active probe if overhead ever spikes.

Every log-and-trace tool hands the agent data that already exists and asks it to reason backward to what probably happened. We think it is more useful to give agents eyes and ears into the running code, so they capture what they need when they need it, right at the point of failure.

This seems like the simplest and fastest way to debug prod incidents.

We’d love the community to try this in any environment to debug any known or unknown issue by just chatting with your coding agent. And let us know what more features you need to make this a truly autonomous on-call agent

Supported platforms: NodeJs, Java, Python.

Comments

Natalia724•55m ago
The in-process redaction design is the part I would want to evaluate first. Is there a way to audit which values were captured and which redaction rule matched for each probe hit?
karanraina•35m ago
we do show what data got redacted, we do not show which rule was used to match it yet.

all the rules get compiled into a single regex pattern, that lets us save on iterations.

karanraina•32m ago
this is how redacted data looks like on the extension

https://i.postimg.cc/jSmRpnRX/Screenshot-from-2026-08-05-10-...

MdJasimuddin•25m ago
Congrats on the launch! The ability to drop read-only probes into a live service without triggering a painful redeploy is a massive time-saver. Since my workflow relies heavily on cloud-based development, I am curious—how does your SDK handle serverless environments where the container lifecycle is extremely short? Really great concept!
karanraina•3m ago
Thanks!

You're correct, serverless is a bit tricky. CPU gets suspended the moment your function returns. The way it works is that you wrap your functions with a wrapper in our sdk.

that wrapper is supposed to track if there's telemetry to be sent, if so.. it sends it, otherwise, return as usual

this makes sure that when there's no active probe, there's no latency added. But when there's an active probe.. ~100-200ms could be added in the worst case if the probe is just before the return.

again, this isnt a problem in non serverless worloads because the CPU is always on.

but since probes are bounded by time and count, this will go away as soon as the time or count condition meets. beats adding new logs and redeploying in my opinion

bluelightning2k•11m ago
This debugging in production thing has always been interesting to me. Rookout, etc.

How does it work? Using the NodeJs inspector API or other language equivalent to drop breakpoints? Those APIs are unavailable in many serverless environments and are challenging to use alongside bundlers.

dshubham•5m ago
Congrats on the launch. You mention probes are read-only by design, which makes sense for debugging. Curious about the flip side: when an agent does make a write that turns out wrong, have you thought about extending the same approach toward capturing state before the write, so it's actually reversible? Seems like similar instrumentation (in-process, no redeploy) could apply, but the reversibility side seems mostly unsolved right now.