HN user

argoeris

100 karma
Posts24
Comments25
View on HN
www.multiplayer.app 22d ago

Burn less, ship more: the case for token optimization

argoeris
2pts0
www.multiplayer.app 27d ago

How to curate observability data for AI agents

argoeris
2pts0
beyondruntime.substack.com 28d ago

From Tokenmaxxing to Token Minimalism

argoeris
3pts0
github.com 1mo ago

Show HN: Multiplayer – open-source local debugging agent, unsampled runtime data

argoeris
4pts0
leaddev.com 1mo ago

Observability tools weren't built for AI debugging

argoeris
2pts0
leaddev.com 1mo ago

PR reviews were broken. AI just made it worse

argoeris
2pts0
www.multiplayer.app 1mo ago

Show HN: Multiplayer, session-based runtime data collection for coding agents

argoeris
2pts0
www.multiplayer.app 5mo ago

Why AI can't debug your API integrations (yet)

argoeris
2pts1
www.anthropic.com 9mo ago

Workslop in Anthropic's own engineering article on Claude Agent SDK

argoeris
2pts1
leaddev.com 1y ago

The right way to make AI part of your tech strategy

argoeris
2pts0
leaddev.com 1y ago

Laws every engineering manager should know to build software

argoeris
1pts0
thenewstack.io 1y ago

Beyond monitoring: how Observability 2.0 will change DX

argoeris
2pts0
thenewstack.io 1y ago

Observability 2.0 will revolutionize DX

argoeris
2pts0
leaddev.com 1y ago

A plan is not a strategy: how to craft a realistic technology roadmap

argoeris
2pts0
dynomight.net 1y ago

Underrated Reasons to Be Thankful

argoeris
2pts0
rogermartin.medium.com 2y ago

The five deadliest strategy myths

argoeris
1pts0
sdtimes.com 2y ago

AI will transform system design beyond just diagrams

argoeris
5pts0
thenewstack.io 2y ago

Devs need system design tools, not diagramming tools

argoeris
215pts99
leaddev.com 2y ago

A minimum viable architecture is the backbone of a successful product

argoeris
2pts0
technically.substack.com 2y ago

The not-app-building parts of building an app

argoeris
2pts0
venturebeat.com 2y ago

Multiplayer raises $3M for AI-based distributed software development

argoeris
2pts0
www.multiplayer.app 2y ago

AI Will Transform System Architecture Design and Management

argoeris
3pts1
www.multiplayer.app 3y ago

‘Visual’ Is the New Global Development Language

argoeris
2pts1
www.multiplayer.app 3y ago

The Move from Single- to Multiplayer Tooling

argoeris
1pts1
[dead] 5 months ago

What exactly is the data correlation problem?

It’s when debugging (understanding what went wrong) takes longer than fixing because the information is in a bunch of different places: Sentry, Stripe, LogRocket and several APM tools.

So engineers spend hours playing detective: copying request IDs between tools, matching timestamps, manually piecing together what happened.

Most teams lose hundreds of engineering hours per month to correlation tax. Time that could be spent shipping features instead of hunting for information.

When you ask an AI assistant "why is my Stripe payment failing?", it responds with educated guesses based on common patterns.

But the AI doesn't know what actually happened in your specific case. It doesn't have access to:

- What payload did your frontend send to your backend? - What request did your backend construct and send to Stripe? - What response did Stripe return? - How did your backend process that response? - What error (if any) made it back to the user?

Without this runtime context, the AI is pattern-matching.

The irony is that the data AI needs often exists, it's just scattered and difficult to access.

Auto-correlation tools like Multiplayer automatically capture and link data across your entire stack: frontend interactions, backend traces and logs, and end-to-end request/response headers and content from internal service and external API calls. This data becomes the foundation for effective AI-assisted debugging.

The post reads "The Claude Agent SDK excels at code generation..." and then provides a snippet where variable names don’t match (isEmailUrgnet and then isUrgent), misspelling of urgent, and an unnecessary second check of isFromCustomer. I don't know if it would be worse if this were generated using Claude code or by a human.

I use http://multiplayer.app/

It connects to your system using OpenTelemetry and it lets you automatically document all the components, dependencies, APIs, etc. I prefer it to static, drag and drop whiteboards because I get immediate visibility without having to waste time moving boxes and arrows.

(Of course you can still create sketches if you want, but the real value is in getting the information you need immediately)

The problem with any of these tools is that they solve only one part of the puzzle. Take Structurizr for example, it doesn't automatically create the diagrams for you or notify you when it detects architectural drift (and automatically update the diagram).

Others miss other pieces of the puzzle, such as having a list all your APIs, all your system docs in a single place (ADRs, reqs, etc.), connecting to your repos, etc.

I recommend checking https://www.multiplayer.app/ as an alternative.

This is an excellent point. You need to pull all the information about a system in a single place so that then you can choose what level of abstraction or deep dive into the details you need.

Projects like Multiplayer.app are in their early days, but I can see the potential of focusing on concentrating this info and automating the maintenance of docs and diagrams.

The article does indeed argue that we need smarter ways to create diagrams - so that devs don't have to manually create / update them and other teams get the info that they need.

Saving time and effort for devs, while making dynamic visualizations with different levels of detail (i.e. more and less technical for different audiences) is possible.

I agree that many teams, in an effort to move away from waterfall development and Big Design Up Front, have gone the opposite way and completely skip system design. Which is a mistake, because you need some upfront design.

As Dave Thomas said: “big upfront design is dumb. No upfront design is dumber”.

[dead] 3 years ago

AI alone can't disrupt a business, the companies that survive and thrive are the ones that are using the technology to solve real problems.

I somehow cannot but be skeptical about the "correct" data shared by SO. I also don't think it's just a failing in not leveraging AI sooner themselves, but also in building trust and community (especially after how the strike was handled).

Also why is the data shared with the most active contributors inaccurate?

Overall= more questions and less trust.

[dead] 3 years ago

Performant teams are what often make or break a tech company: there is a wide gap between ‘elite’ teams and the bottom 50%.

[dead] 3 years ago

Even the most talented and experienced developers come across several challenges when designing a system architecture or managing a large distributed system. AI can help with that.

[dead] 3 years ago

Most modern software systems are distributed systems, but designing a distributed system isn’t easy. Here are six best practices to get you started.