🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
⚠️ Malware / Trojaner / VirenVorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf(11.09.2026 um 09:35 Uhr)
🕵️ SicherheitslückenMicrosoft geht endlich eines der nervigsten Probleme von Windows 11 an(11.09.2026 um 11:58 Uhr)
💾 IT Security ToolsSysinternals Suite(11.09.2026 um 12:00 Uhr)
🕵️ SicherheitslückenDefender 0-Day ShieldBreak (CVE-2026-69414) nicht sauber gepatcht - BornCity(11.09.2026 um 12:52 Uhr)
🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
⚠️ Malware / Trojaner / VirenVorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf(11.09.2026 um 09:35 Uhr)
🕵️ SicherheitslückenMicrosoft geht endlich eines der nervigsten Probleme von Windows 11 an(11.09.2026 um 11:58 Uhr)
💾 IT Security ToolsSysinternals Suite(11.09.2026 um 12:00 Uhr)
🕵️ SicherheitslückenDefender 0-Day ShieldBreak (CVE-2026-69414) nicht sauber gepatcht - BornCity(11.09.2026 um 12:52 Uhr)

🔧 Programmierung 🕛 vor 3 Monaten 7 Min Lesezeit
0

Agentic engineering patterns that survive contact with production

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

The interesting question about coding agents in 2026 is not whether they work. It is which patterns hold up once you point them at code that has consequences. After roughly eighteen months of running Claude, Codex, and a rotating cast of free-tier models against a real equity research stack at , a Rust filter that compresses git status, test output, grep results, and file reads by 60-90 percent before they ever touch the model's context window.



Token discipline matters more than model size. A 200K window with disciplined compression outperforms a 1M window with raw tool dumps. We measured this on real Claude Code sessions. The 1M model with raw output ran out of useful reasoning before completing the same task the 200K model finished cleanly.



The deeper principle: the model is a function of its inputs. Garbage in, garbage out applies with embarrassing literalness to LLMs. Engineering an agent is mostly engineering the inputs.






Tools are an interface design problem



The second pattern that survived is treating tool definitions like an API design exercise, not an afterthought.



Bad tool design dominates failure modes. The classic symptoms:




  • Tools that return too much (the 50KB JSON problem above).

  • Tools that take ambiguous parameters and require the model to guess.

  • Tools that silently truncate, so the model thinks it has the whole picture when it does not.

  • Tools that overlap, so the model has to choose between three roughly equivalent ways to do the same thing.



The fix is to design tools the way you would design a CLI for a sleepy junior engineer at 3am. One job each. Clear parameter names. Honest error messages. Pre-validated inputs. Output capped at a sensible size with explicit pagination if more is needed.




CODE
# Bad: overloaded, ambiguous, dumps raw API response
def search(query: str, options: dict = None) -> dict: ...

# Good: one job, explicit shape, capped output
def search_filings(
ticker: str,
form_type: Literal["10-K", "10-Q", "8-K"],
since: date,
limit: int = 10,
) -> list[FilingRef]: ...






The second form is roughly three times more reliable in agent loops in my testing. The reason is not subtle. The model has fewer ways to be wrong.



A useful gut check from Anthropic's own writeup: if you cannot describe what a tool does in one sentence, the tool is too broad. Split it.






Planner and executor: the simplest split that works



For any task that takes more than a handful of tool calls, the pattern that holds up is planner-executor separation. One model (or one model call) plans. A separate call (or pool of calls) executes the plan step by step.



Concretely, on Leviathan's research pipeline:





  1. Planner reads the goal ("explain the moat dynamics in $TICKER") and writes a sequenced list of subtasks, each with the tool it expects to use.


  2. Executor(s) run each subtask in isolation. Each one only sees the subtask description plus the artifacts produced by upstream steps. They do not see the global goal.


  3. Synthesizer stitches the artifacts together into the final output.



This buys you three things:




  • The planner uses long-context reasoning once, not repeatedly.

  • Executors have small, focused context windows and run cheap.

  • You can fan out executors in parallel. Independent subtasks finish in wall-clock time proportional to the slowest one, not the sum.



The cost is one extra layer of indirection. The benefit is roughly a $0.50 task instead of a $5 task, and an 8-14 point lift on standard agentic benchmarks like post. The variations are mostly about how strict the planner is and how much autonomy each executor has.



The failure mode to watch for is planner overfitting. The planner writes a plan that looks plausible but contains a step that cannot actually be executed (the tool does not exist, the data is not available, the assumption is wrong). The fix is to make executors return structured failures with context, and re-run the planner with the failures included in its input.






Evaluation is the part nobody wants to build



Every agent system I have shipped or watched ship has reached a point where it works on the cases the team thought about and fails on the cases they did not. The only way out is evaluation.



The pattern that holds up: a small, fast evaluation harness that runs on every change. Not a Kaggle-style leaderboard. Not a research benchmark. A handful of canonical tasks, each with a deterministic checker, that you can run in under a minute and that tells you whether the agent got worse.



For Leviathan's equity research agent, the harness has four task shapes:



$$

\text{score} = \frac{1}{N} \sum_{i=1}^{N} \mathbb{1}{\text{checker}_i(\text{agent output}_i) = \text{pass}}

$$



Where the four shapes are:




  1. Forensic accounting: given a ticker with known fraud signals, does the agent surface the right red flags?

  2. DCF reconstruction: given a public filing, does the agent produce a DCF whose intrinsic value falls within a tolerance band of the analyst consensus?

  3. Peer selection: given a target ticker, does the agent pick a peer set that overlaps with a curated human-picked set by at least 60 percent?

  4. Citation discipline: does every quantitative claim in the output trace back to a retrieved source?



That last one matters. Models hallucinate citations. Without an automated check, this rot accumulates silently until someone notices in production.



The harness is roughly 800 lines of Python. It is the most valuable 800 lines in the codebase.






What gets pruned



A few patterns that looked promising in 2025 did not hold up:





  • Long autonomous loops without checkpointing. Anything over about ten tool calls without human or evaluator intervention drifts. The fix is checkpointing every few steps and asking "is the next action still on the path to the goal?"


  • Self-correction loops that rely only on the model's judgment. The model is bad at noticing its own mistakes in the same context window where it made them. Self-critique works much better when the critic is a fresh context.


  • Memory systems that try to remember everything. Most "agent memory" implementations end up as expensive vector databases that surface stale information. Persistent files with explicit naming and explicit invalidation are usually better.



The throughline across the patterns that survive: they treat the model as a reasoning component embedded in a system, not a magic oracle. The engineering work is on the system. The model is one component. A good one, but one.






Where this is going



The trajectory I am betting on, after watching Claude 4.6 then 4.7 then GPT-5.5 land in quick succession: the models keep getting better at planning and at calling tools, but the gap between "demo agent" and "production agent" stays wide. That gap is mostly engineering. Context discipline, tool interface design, planner-executor decomposition, and evaluation harnesses are the load-bearing pieces.



The teams that win in the next two years are not the ones with the biggest models. They are the ones that have built the infrastructure to use those models with discipline.



That is the bet, anyway. We will see how it ages.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
The Gemini desktop app is now available for Windows
1 Quelle
Windows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC
1 Quelle
Vorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Agentic engineering patterns that survive contact with production

Thematisch verwandte Begriffe: Agentic, engineering, patterns, that · 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 ...