Du wirst angemeldet...

Bitte warte, während wir deine Anmeldung überprüfen

Artikel · Donnerstag, 11. Juni 2026

Agentic Coding

Top tech stories today across software, hardware, AI, and product launches. Senior engineer audience — skip rumour churn and pre-announcement leaks. Lead with shipping-now stories and what changed for builders.

Von Marius BongartsTech38 Ausgaben
← Zur aktuellen Ausgabe
Ausgaben10 / 38
Über Nacht von KI aus öffentlichen Quellen erstellt, täglich aktualisiert.
Agentic Coding
Donnerstag, 11. Juni 2026
AI Agents - Agentic Coding

Steer-or-dispatch mental model, OpenViking cuts token burn 63%, 83-tip pattern library lands

1 Min. Lesezeit

Steer vs dispatch agents

The tool you choose shapes the habit you build.

A new breakdown frames Claude Code and Codex as training opposite instincts—Claude teaches you to steer through iterative loops, Codex trains you to dispatch and demand proof [Source: Nate's Newsletter]. The real skill isn't getting output, it's knowing when that output is good enough to accept. The piece flags two failure modes to watch: theater (convincing conversation, no real understanding) and completion theater (runs that feel done but aren't). You get four reusable prompts including a steer-or-dispatch diagnostic and an "is it real?" audit.

Pick your habit deliberately—it'll follow you across every AI tool you touch.

OpenViking context database

Your scattered context files just got a unifying layer.

OpenViking is a new open-source context database that organizes agent memory, resources, and skills into a virtual filesystem with a viking:// protocol [Source: GitHub]. The system uses tiered loading—abstract, overview, details—to reduce what actually enters your context window. Benchmarks with Claude Code show 80% accuracy (up from 57%), 58% lower latency, and 63% fewer tokens burned. You also get visualized retrieval trajectories so you can debug what the agent actually grabbed.

If context rot has been your bottleneck, this is worth a weekend experiment.

83-tip best practices repo

Someone organized the full path from prompting to production patterns.

A new GitHub repository compiles 83 practical tips across prompting, planning, context management, and advanced workflows like command-agent-skill orchestration [Source: GitHub]. It covers the Research → Plan → Execute → Review → Ship workflow you've seen referenced in earlier updates, plus subagent isolation to prevent context pollution. The repo recommends keeping CLAUDE.md under 200 lines, using /compact mid-task, and running /rewind when attempts fail. Tips like /loop for recurring tasks and cross-model workflows for code review round it out.

Bookmark this one before your next refactor sprint.

AI-generated test review trap

Reviewing AI code is now harder than writing it yourself.

A six-month retrospective on Claude Code for testing reveals the real bottleneck: reconstructing mental models at the speed AI produces them [Source: Dev.to]. The author's pipeline has Claude draft test plans from Jira tickets, then convert them to Postman and Cypress—but only after manual validation catches plausible-but-wrong assertions. The insight: AI amplifies your existing engineering judgment. Without the skill to spot subtle bugs, high-volume output becomes dangerous.

Speed up your review muscle before you speed up generation.

Quellen
shanraisshan/claude-code-best-practice: from vibe coding to agentic ...
shanraisshan/claude-code-best-practice: from vibe coding to agentic ...
19 hours ago ... ... Workflows · Advanced · Git / PR · Debugging · Utilities · Daily. Community. □ Prompting (3). Tip, Source. challenge Claude — "grill me on these changes and don ...
github.com
KI-Zusammenfassung

This GitHub repository documents advanced Claude Code practices directly aligned with your interests in agentic coding, efficient AI agent workflows, and best practices for solo SaaS development. Key relevant sections include detailed guidance on using agents, commands, and skills for structured workflows—particularly the Command → Agent → Skill orchestration pattern shown in the weather-orchestrator example. The repository emphasizes memory management through CLAUDE.md files (recommended under 200 lines), .claude/rules/ for domain-specific instructions, and context management techniques like using subagents to isolate work and prevent context pollution. For debugging workflows, it recommends taking screenshots to share with Claude, using MCP for browser debugging, and running terminal logs as background tasks. The prompt chaining approach is demonstrated through the development workflow pattern (Research → Plan → Execute → Review → Ship) and the tips section covers session management strategies including /compact for mid-task context cleanup, /rewind to backtrack from failed attempts, and using subagents specifically for context management. The repository also features 83 practical tips covering prompting strategies, context optimization, and advanced workflows like using /loop for recurring tasks and cross-model workflows for enhanced code review.

Quelle öffnen
Claude Code vs Codex: Steer or Dispatch Your AI Agents
Claude Code vs Codex: Steer or Dispatch Your AI Agents
16 hours ago ... Codex teaches you to dispatch them. That sounds like a workflow note. It is deeper than that. Use one long enough and it changes what you reach for when a ...
natesnewsletter.substack.com
KI-Zusammenfassung

Claude Code trains you to steer agents through iterative workflows, while Codex trains you to dispatch them, fundamentally shaping how you approach AI-assisted work. The real challenge isn't getting machines to produce work—it's deciding when that work is good enough to accept, a decision that hinges on understanding agent failure modes like "theater" (convincing conversation without real understanding) and "completion theater" (finished runs that feel more done than they are). The author provides a practical framework including five shapes agent runs take, six pre-launch questions, four reusable prompts (Run Spec, steer-or-dispatch diagnostic, "is it real?" audit, and cross-check), and emphasizes that managing AI labor through these tools is creating a new skill set applicable across knowledge work beyond just coding.

Quelle öffnen
OpenViking is an open-source context database designed ... - GitHub
OpenViking is an open-source context database designed ... - GitHub
17 hours ago ... OpenViking unifies the management of context (memory, resources, and skills) ... Claude Code auto-memory, 57.21%, 49.1s, 353,306,422. Claude Code + OpenViking ...
github.com
KI-Zusammenfassung

OpenViking is a context database designed for AI agents that addresses memory management challenges through a filesystem-based paradigm. It unifies fragmented memories, resources, and skills into a structured virtual filesystem (viking:// protocol), eliminating the need for scattered vector databases. The system implements tiered context loading (L0 abstract, L1 overview, L2 details) to reduce token consumption, and uses directory recursive retrieval combining vector search with hierarchical positioning to improve retrieval accuracy. OpenViking provides visualized retrieval trajectories so developers can observe and debug the context retrieval process, and features automatic session management that extracts and iterates agent task memories over time. Benchmarks show significant improvements: with Claude Code, OpenViking achieved 80.32% accuracy (up from 57.21%), reduced latency by 58.45%, and cut token usage by 63.2%, while on multi-hop RAG tasks reaching 91% accuracy with minimal retrieval latency.

Quelle öffnen
Six Months of AI Writing My Tests: What Got Better, What Got Worse
Six Months of AI Writing My Tests: What Got Better, What Got Worse
17 hours ago ... My testing workflow became a pipeline · Claude Code reads the Jira ticket and the actual application code, then drafts a manual testing plan in markdown. · From ...
dev.to
KI-Zusammenfassung

The author shares six months of practical experience using Claude Code for testing workflows. The testing pipeline has evolved into an automated chain where Claude reads Jira tickets and code to draft manual testing plans, then converts those into Postman collections and Cypress scenarios—but only after the author manually validates the plans against the actual application. This discipline of having AI draft and reality validate prevents plausible-but-wrong tests from entering the codebase. Beyond tests, the time freed up enabled building internal tools like a PostmanToCypressConverter CLI, a flakiness dashboard, and an internal Claude Code plugin marketplace with role-based naming conventions (qa-generate-tests, dev-review-pr, etc.). However, the major shift is that code review now dominates the workflow—reviewing AI-generated code is harder than writing it because you must reconstruct mental models at the speed AI produces them, catching subtle bugs like assertions that check the wrong thing while appearing correct. The author emphasizes that AI amplifies existing engineering judgment; without the skill to spot plausible-but-wrong code, the volume of generated code becomes dangerous rather than helpful.

Quelle öffnen
Über Nacht zusammengestellt von MorningMail.aiZugestellt um 04:55