惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
hosted coding agents make observability a product feature
Paulo Victor Leite Lima Gomes · 2026-06-15 · via DEV Community

The laptop was never the interesting part of coding agents.

It was just the first convenient runtime.

Your laptop has the repository, the shell, the secrets, the package cache, the local database, the half-working dev server, and whatever credentials you forgot were still loaded in the background. So the early version of agentic coding naturally ran there. It was close to the work. It had all the messy context. It was also a very strange place to run something that might edit code for an hour while calling tools, installing dependencies, and touching private systems.

AWS published a Bedrock AgentCore post this month with a very good hook: you should be able to close your laptop while the coding agent keeps working.

That is the demo-friendly version.

The more important version is this: once the agent leaves the laptop, "what happened?" becomes a production question.

And that is where observability stops being a nice enterprise add-on and becomes part of the product.

show me the trace

remote is not the same as trustworthy

Moving a coding agent to a hosted runtime solves some obvious problems.

The agent can keep running after your machine sleeps. Multiple agents can run in parallel without fighting over the same local Postgres port. The filesystem can persist between sessions. The environment can be isolated in a microVM or container instead of sharing your real shell with everything else you do all day.

Good.

But remote execution also removes a useful kind of accidental visibility. When the agent is on your laptop, you can at least see the terminal, notice the fan spin up, watch the test output, and feel the blast radius because it is your machine.

In a hosted runtime, that little bit of intuition disappears. The agent is now somewhere else, with its own filesystem, network path, credentials, tools, retry behavior, and bill.

So the platform has to replace intuition with evidence.

Not a transcript pasted into a PR.

Actual operational evidence: traces, logs, metrics, command history, tool calls, token usage, latency, failures, retries, identity, and cost.

Without that, a hosted agent is just a remote terminal with better branding.

the trace is the review artifact

We still talk about coding agents as if the pull request is the main artifact.

That is too small.

The PR tells you what changed. It does not tell you enough about how the change was produced. For simple work, that may be fine. For production agent workflows, the process matters.

I want to know:

  • who or what started the session
  • which repository and branch were checked out
  • which identity was used for tools
  • which files were inside the allowed scope
  • which commands ran
  • which external tools were called
  • which tests failed before they passed
  • how much time and token budget the task consumed
  • what the agent tried before it settled on the final diff
  • where a human approved or stopped something

Some of that belongs in the PR description. Some belongs in the platform that launched the task. Some belongs in traces and logs. The important bit is that the information exists in a place the team can query later.

Six months from now, someone will ask why an agent changed an auth middleware, why it contacted a particular internal service, or why a migration took five attempts. "The bot said it was done" will not be a satisfying answer.

The trace becomes part of the review artifact because the diff is no longer enough.

observability is also a permission model

People often separate observability and security too cleanly.

For agents, they are tangled together.

If an agent can call GitHub, Jira, Slack, a database console, an internal admin API, and a package registry, you need to know more than whether the final tests passed. You need to know which capabilities it actually used.

This is why the AWS AgentCore framing around Identity, Gateway, CloudTrail, CloudWatch, and OpenTelemetry is interesting. The details matter less than the shape of the product: the agent runtime is not only where code executes. It is also where identity, tool access, traces, metrics, and audit records become one control surface.

That is the correct direction.

A platform team should be able to answer boring questions without spelunking through chat history:

  • Did the agent act as a human, a bot, or a GitHub App?
  • Which downstream credential was attached to a tool call?
  • Did it use the approved MCP gateway or bypass it with a raw network call?
  • Did it read memory it should not have read?
  • Did it push to a remote that was not in policy?
  • Did it spend $3 or $300 on model calls?

These are observability questions. They are also governance questions.

The dashboard is not decoration. It is how the organization decides whether the agent is allowed to keep doing this kind of work.

cost needs to be visible

Hosted coding agents will make cost stories weird.

A human running tests locally usually does not think about the marginal cost of each command. A hosted agent does. There is compute. There is storage. There are model tokens. There may be tool calls, network egress, hosted observability, and retries.

If coding agents are going to be part of the development platform, cost has to be attached to the unit of work. Not only per team or per account, but per session, per task template, per repository, and ideally per outcome.

How much did the dependency upgrade cost when it passed the first time? How much when tests failed twice? How much when the agent got stuck reading irrelevant files? Which task templates are cheap and boring enough to run automatically? Which ones should require approval because the variance is too high?

This is product feedback, not finance theater. Good agent platforms will make cost visible early enough that teams can improve the workflow instead of merely scolding people after the invoice arrives.

evals tell you if it worked once

Evaluation matters, but evals and tests are still mostly release-time confidence. They tell you whether the agent, tool, prompt, or workflow performed well against a known scenario.

Production has a different personality.

Production asks why the same workflow got slower this week. Why one repository has a higher failure rate. Why a certain tool call started timing out. Why token usage jumped after a prompt change. Why humans keep rejecting PRs from one task template. Why an agent that passed evals is still annoying reviewers.

That is observability work.

AWS's AgentOps guidance puts governance, build and operations, evaluation, and observability next to each other. That is the right grouping because agents do not fail in one clean layer. They fail across model behavior, tool behavior, runtime behavior, memory, permissions, prompts, data, networks, and human expectations.

The eval suite catches some of that. The production trace catches the rest.

what i would build first

If I were moving coding agents off laptops and into a hosted runtime, I would start with one narrow workflow.

Not "let agents work on anything."

Something boring and bounded, like dependency upgrades for low-risk services, small lint migrations, or service-template updates.

Then I would make observability part of the definition of done:

  • every session gets a stable ID
  • every task links to the issue, branch, PR, logs, and trace
  • every tool call records the caller, target, and credential class
  • every deterministic command is captured separately from model reasoning
  • every task reports duration, token use, retry count, and compute cost
  • every PR says what was attempted, what failed, and what was left for humans
  • every task template has a basic success and rejection rate

That sounds like a lot until you compare it with the alternative: remote agents doing semi-autonomous work in private repos while the team judges them from a final diff and a cheerful summary.

No thanks.

I want the boring trail.

the punchline

Hosted coding agents are coming because the laptop is a bad long-running agent host. It is too personal, too shared, too fragile, and too invisible to the rest of the organization.

But the real product is not simply "run the agent somewhere else."

The real product is a runtime where agent work is observable enough to trust, limit, debug, price, and improve.

That is why CloudTrail, CloudWatch, OpenTelemetry, token metrics, trace IDs, session records, and gateway logs are not enterprise garnish. They are the difference between a demo and an operational system.

The next useful coding-agent platform will not win only because the model is smarter or the sandbox is cleaner.

It will win because when someone asks "what happened?", the answer is not a vibe, a transcript, or a shrug.

It is a trace.

references

To test my projects, I use Railway. If you want $20 USD to get started, use this link.