Agentic Coding

COMPLETED February 27, 2026
Summary

Briefing: Generative AI Insights Purpose: I'm a software engineer who's looking to stay up to date with developments in the generative AI (gen AI) space. As an early-stage startup developer, my primary focus is building on top of an LLM based system. Some topics I'm interested include: Context Engineering, Coding Agents, Startup Macro trends, Translation/Accuracy, Application Memory, and LLM Evals.

Key Insights

  • Agent architecture is shifting from pure probability to "Blueprints" and "Intent." To mitigate hallucinations and improve reliability, successful agent implementations are moving toward "Blueprints"—workflow charts written in code where deterministic logic handles predictable tasks and LLMs are reserved only for ambiguous nodes. This correlates with a rise in "Intent Engineering," a discipline focused on encoding organizational trade-offs and decision boundaries into machine-readable parameters, ensuring agents optimize for strategic goals rather than just measurable metrics like speed.
  • Is AI Doing Less & Less?
  • Prompt Engineering Is Dead. Context Engineering Is Dying. What Comes Next Changes Everything.

  • The "Factory Model" creates a new paradigm for coding agents. The mental model for engineering is evolving from writing code to building the "factory" (fleets of agents) that produces the software. In this model, the specification becomes the actual product, and "verification" replaces "generation" as the primary bottleneck. Engineers must shift focus to defining outcomes, orchestration, and rigorous architectural judgment, as ambiguous specs now multiply errors across autonomous runs.

  • The Factory Model: How Coding Agents Changed Software Engineering

  • Model provenance dictates capability: Distilled vs. Frontier models. There is a critical divergence in model capabilities that standard evaluations miss: "Distilled" models (trained on frontier model outputs) perform well on narrow benchmarks but fail at "off-manifold" tasks requiring representational depth and error recovery. For startups, this implies a strategic routing necessity: use cheap, distilled models for well-defined tasks, but strictly reserve expensive frontier models for long-running, open-ended agentic loops to avoid brittleness.

  • Three Labs Just Stole Claude's Brain. Here's What It Broke (And Why You Should Care)

  • File-based systems are emerging as a practical "Application Memory" standard. Real-world implementations of agent memory are coalescing around simple, persistent file structures (like coaching_state.md or memory.md) rather than complex vector databases for all use cases. These files track user progress, patterns, and "earned secrets" across sessions, allowing the agent to "calibrate" its feedback based on historical interactions. This lightweight approach enables consistent progress tracking without the overhead of massive retrieval systems.

  • How to use AI for your next job interview
  • Claude Code Memory is here

  • The "Capability Dissipation Gap" offers a temporary arbitrage window for startups. A significant economic opportunity exists in the gap between rapid AI capability growth and slow societal/organizational integration ("social inertia"). While large enterprises struggle with "intent failure" and governance, small teams and individuals can collapse integration timelines to capture value. This suggests that the primary advantage for an early-stage startup is not just the technology itself, but the speed of integrating it into specific workflows before large incumbents can adapt.

  • Don't Fall For the Stock Market Hype. The $7,000 Raise AI Is Giving You (That Nobody Mentions)
  • Prompt Engineering Is Dead. Context Engineering Is Dying. What Comes Next Changes Everything.

Emerging Patterns

Verification as the New "Generation" Multiple sources identify verification as the primary engineering hurdle. As agents become capable of generating vast amounts of code or content, the human ability to review it cannot keep up. Solutions include automated "QA gates" for design, relying on trusted external data (like government MCP servers) for grounding, and Test-Driven Development (TDD) becoming mandatory to validate agent outputs automatically. - The Factory Model: How Coding Agents Changed Software Engineering - France has just deployed an MCP server hosting all government data. - How Do You Create UI Designs That Don’t Look AI-Generated?

Hybrid Determinism There is a convergence toward mixing deterministic systems with probabilistic LLMs to fix reliability issues. Whether through "Blueprints" that use code for logic and LLMs for ambiguity, or "Intent Engineering" that creates strict machine-readable boundaries, the consensus is moving away from "pure" end-to-end AI agents toward systems with hard-coded guardrails and clearly defined state machines. - Is AI Doing Less & Less? - All the people that were claiming AI was a "scam" and that it would never move past basic word prediction are awfulllyyy quiet now

Dissenting Views

Consensus: Agents are rapidly improving, becoming proactive, and are ready for complex, autonomous tasks ("The Factory Model"). Dissent: Some practitioners argue that "sustained agentic work" is still highly fragile, particularly with distilled models that look good on benchmarks but fail in production. Furthermore, skepticism remains regarding the financial viability of the companies building these models, with predictions that high development costs and lack of returns could lead to a bubble burst, leaving startups building on top of them vulnerable. - New banger from Andrej Karpathy about how rapidly agents are improving - All the people that were claiming AI was a "scam" and that it would never move past basic word prediction are awfulllyyy quiet now - Three Labs Just Stole Claude's Brain. Here's What It Broke (And Why You Should Care)

Read & Act

What to read

What to do

  • Implement "Off-Manifold" Probes: When evaluating LLMs for your product, do not rely on standard benchmarks. Create a complex, domain-specific task, run it, and then slightly change one constraint (e.g., a rule, a tool definition) to see if the model adapts or breaks. This tests for true reasoning versus memorized patterns.
  • Architect with "Blueprints": Audit your current agent workflows. Identify steps that are deterministic (e.g., data formatting, simple math) and move them out of the LLM prompt into hard-coded logic. Structure your agent as a state machine where the LLM is only invoked for transitions requiring ambiguity resolution.
  • Define "Machine-Readable Intent": If you are building autonomous agents, explicitly code the "trade-offs" (e.g., "Prioritize speed over politeness" or "Never hallucinate data; ask for clarification instead"). Treat these as configuration parameters passed to the agent, ensuring it aligns with the business logic and user profile constraints.

← More from Agentic Coding