Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Sichere ProgrammierungBreeze TTS 2 vs ElevenLabs: Open Source TTS Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungAgentic AI vs Generative AI: The 2026 Verdict(23.09.2026 um 05:44 Uhr)
Sichere ProgrammierungI made my agent prove every quote against the source document(23.09.2026 um 05:45 Uhr)
Sichere Programmierung8mb.video Alternative: Skip the Line, Skip the Upsell(23.09.2026 um 05:47 Uhr)
Sichere ProgrammierungBuilding a GTA 6 JSON API for entities and current status(23.09.2026 um 05:52 Uhr)
Sichere ProgrammierungEvery filter needs a documented exception(23.09.2026 um 06:01 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

The hard part of AI agents is not building one. It is operating five.

Most AI agent demos optimize for the first successful run. Production teams care about the tenth failed run. Once you have more than one agent, the hard questions change: Which agent touched this file? Which tool call created this…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Most AI agent demos optimize for the first successful run.



Production teams care about the tenth failed run.



Once you have more than one agent, the hard questions change:




  • Which agent touched this file?

  • Which tool call created this artifact?

  • Which MCP server was available at the time?

  • Which model and prompt version produced the decision?

  • Did a human approve the action, or was it auto-allowed?

  • What changed between the last good run and this bad one?

  • Can we pause, replay, repair, or roll back the run?



That is why I think every serious agent system needs an agent run record.






What is an agent run record?



It is a compact, inspectable record of what happened during an agent run.



Not a giant log dump. Not only traces. Not a chat transcript.



A useful run record should answer:




Given this result, what exactly happened, under which configuration, with which tools, and what evidence do we have?




For a coding, browser, or MCP-backed agent, I would want at least:





  • runId: the full agent or workflow run


  • turnId: the user turn that triggered work


  • agentId: the agent or sub-agent responsible


  • model: provider, model id, and configuration


  • promptVersion: template or instruction hash


  • toolRegistry: which tools or MCP servers were available


  • toolCallId: a stable id for every tool invocation


  • sideEffect: read, write, exec, network, deploy, payment, etc.


  • approvalState: not required, requested, approved, denied, expired


  • inputRefs: references to inputs without storing sensitive payloads forever


  • outputRefs: artifacts, files, PRs, browser actions, or generated data


  • retryState: retries, timeouts, fallback model routes


  • finalStatus: succeeded, failed, paused, escalated, rolled back



This sounds boring until an agent does something surprising.



Then it becomes the only thing anyone wants.






Traces are not enough



OpenTelemetry-style traces are useful. They help with latency, errors, retries, and service boundaries.



But an agent operator often needs a different object.



A trace can tell you which span was slow.



A run record should tell you:




  • what the agent believed it was doing

  • which tools it was allowed to use

  • which actions had side effects

  • which policy or approval state applied

  • which artifact resulted

  • whether this run differs from a known-good run



In other words:



Traces explain execution.



Run records explain responsibility.



You need both.






MCP makes this more important



MCP is great because it gives agents a common way to access tools and context.



It also means agents can suddenly interact with many more systems:




  • databases

  • browsers

  • repos

  • cloud APIs

  • internal tools

  • local files

  • long-running services



That makes the tool boundary the operational boundary.



If a model calls an MCP tool, I want to know:




  • which host/client initiated the call

  • which MCP server executed it

  • which exact tool schema was active

  • which arguments were passed

  • whether the call was read-only or had side effects

  • whether approval was required

  • what the tool returned



Without that, debugging becomes archaeology.






The multi-agent version is harder



Single-agent runs are already tricky.



Multi-agent runs add handoffs.



Now you also need:




  • parent and child run ids

  • supervisor/sub-agent relationships

  • shared state versions

  • artifacts passed between agents

  • cost attribution per agent

  • escalation and retry ownership



If Agent A delegates to Agent B, which calls Tool C, which writes File D, the run record should preserve that chain.



Otherwise your cost dashboard says "agent run cost $8" and your logs say "tool call succeeded," but nobody can explain why the final output is wrong.






What I would build first



If you are building agents today, I would start with a small run-record schema before adding more autonomy.



The first version can be simple:




{
"runId": "run_123",
"turnId": "turn_456",
"agentId": "research-agent",
"model": "provider/model",
"toolsAvailable": ["web.search", "github.read", "mcp.filesystem.write"],
"toolCalls": [
{
"toolCallId": "call_001",
"tool": "github.read",
"sideEffect": "read",
"status": "success"
},
{
"toolCallId": "call_002",
"tool": "mcp.filesystem.write",
"sideEffect": "write",
"approvalState": "approved",
"status": "success"
}
],
"artifacts": ["notes.md"],
"finalStatus": "succeeded"
}






Then make it easy to ask:




  • show me all runs that wrote files

  • show me all runs with denied approvals

  • show me all runs that used this MCP server

  • compare this failed run to the last successful one

  • show me every artifact created by this user turn



That is when agents start to feel operable.






Where Armorer fits



This is the direction we are building toward with Armorer.



Armorer is a local control plane for AI agents. The goal is to make agent runs, tools, approvals, sandboxes, audit trails, and artifacts inspectable on your own machine instead of treating every agent as an opaque chat window.



Repo: https://github.com/ArmorerLabs/Armorer



The bet is simple:



As agents get more capable, the bottleneck moves from "can it do the task?" to "can I understand, govern, and repair what it did?"



That layer is still early.



But I think it is where a lot of practical agent engineering is heading.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten The hard part of AI agents is not building one. It is operating five.

Thematisch verwandte Begriffe: hard, part, agents, building · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-17636 | IBM Financial Transaction Manager (FTM) for RedHat OpenShift could allow…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick