SShortSingh.
Back to feed

HyperProbe Lets AI Coding Agents Debug Live Production Code Without Redeployment

0
·2 views

Y Combinator-backed startup HyperProbe, founded by Shailendra and Karan, has launched a tool that enables AI coding agents like Cursor and Claude to debug live production services without pausing or redeploying them. The system works by dropping read-only virtual probes on specific lines of running code, capturing local variable values across the full call stack the moment real traffic triggers them. It connects to coding agents via an MCP server, while an SDK embedded in the service handles instrumentation across Node, Python, and Java environments. The founders previously built HyperTest, a production traffic-based testing tool, where they developed core expertise in safely extracting runtime state from live services. HyperProbe aims to eliminate the slow log-and-redeploy debugging cycle and reduce the token-heavy guesswork that AI agents currently rely on when telemetry is insufficient.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Google Renames NotebookLM to Gemini Notebook, Adds Thinking Steps and Workspace Sync

Google has rebranded and expanded its notebook research tool as Gemini Notebook, integrating it more deeply with the Gemini app, Google Search, and Google Workspace. A key new feature allows eligible subscribers to view the model's thinking steps during chats and notebook operations, offering greater transparency into how responses are generated. Google has also added in-notebook code execution while retaining existing features like citation-backed responses, Audio Overviews, and Mind Maps. The rollout is phased, with initial access for Google AI Ultra and Workspace AI Ultra Access users, followed by broader availability for Pro subscribers on the web. Google cautions that the visible thinking steps are experimental and should be treated as an inspection aid rather than confirmation of output accuracy.

0
ProgrammingDEV Community ·

How to Measure True LAN Speed Between Devices Using iperf3

iperf3 is an open-source, client-server network testing tool maintained by ESnet that measures actual throughput between two devices on a local network, something internet speed tests cannot do. Unlike services such as Speedtest, iperf3 isolates a specific link — such as phone to NAS or mesh node to access point — by controlling both endpoints directly. One device runs as a server using 'iperf3 -s', while the client connects and pushes traffic for a set duration, reporting sustained throughput, retransmits, jitter, and packet loss. The tool is available via standard package managers on Linux and macOS, and native apps exist for iPhone, iPad, and Android to allow mobile testing across different rooms or locations. Walking through a building while running tests reveals real-world Wi-Fi performance gaps that signal-strength indicators alone cannot expose.

0
ProgrammingDEV Community ·

How Neural Networks Process Text: Tokenization, Matrix Math, and Deep Learning Explained

Natural language processing models cannot work with raw text directly, so words are first converted into numerical token IDs before being fed into a neural network. Each layer of the network takes an input vector, multiplies it by a matrix of learned weights, adds a bias, and passes the result through a non-linear activation function like ReLU. Stacking many such layers — the basis of deep learning — allows networks to build progressively richer representations of the original input. Recurrent neural networks extend this by combining the current input vector with a running hidden state at every timestep, though the fixed size of that state limits how much information can be retained over long sequences. This matrix-based structure is also why GPUs are central to deep learning, as they are purpose-built to execute large-scale matrix multiplications efficiently.

0
ProgrammingDEV Community ·

AbilityGuard v1.1 adds persistent logs, advanced filters, and watchlist alerts

The WordPress plugin AbilityGuard has released version 1.1, significantly expanding its monitoring capabilities for the WordPress Abilities API. The update replaces the previous rolling 100-entry log cap with configurable or unlimited log retention, ensuring audit history is no longer silently lost. Advanced filtering options — covering status, risk level, user ID, date range, and more — now work independently of each other, and users can save filter combinations for reuse. Filtered log views can be exported directly to CSV, making the data easier to use in compliance reports or security reviews. A new sensitive ability watchlist lets users flag specific high-risk abilities for closer attention, shifting the tool from a passive dashboard to an active monitoring system.