Agentic Coding

COMPLETED April 14, 2026
Summary

Briefing: Agentic Coding For the software engineer building with AI coding agents daily

Key Insights

Emerging Patterns

Dissenting Views

  • Multi-agent swarms vs. single focused agents: a direct contradiction on whether more agents help. The prevailing view from the Mythos breakdown is that multi-agent orchestration is essential and single agents unsupervised are a failure mode—cost concerns are "misplaced priorities." The dissent comes from a practitioner who built and ran multi-agent swarms for three months: "more agents didn't make me faster... when 10 of them finished simultaneously, I had 10 results to evaluate without enough context to know which ones I could trust." The resolution appears to be that orchestration complexity should match project complexity—start with an Evaluator, grow only when needed—and that the human manager's review bandwidth, not agent speed, is the actual bottleneck. This is a difference in emphasis: both sides agree multi-agent has value, but they disagree sharply on when to reach for it.
  • The First UNSHIPPED Model: Claude MYTHOS (Senior Engineer Breakdown)
  • The Folder Is the Agent
  • Claude Codeのサブエージェントを使い倒す ── Anthropic公式「計画・生成・評価」3分離パターンの実践

  • Memory ownership: open vs. proprietary is a real lock-in vector, not a theoretical concern. LangChain argues that using closed harnesses behind proprietary APIs yields control of agent memory to third parties, creating "incredible lock-in"—and that memory, not the model, is the true sticky differentiator. Claude Code's leaked source reveals the opposite investment thesis: deep proprietary memory architecture with anti-distillation mechanisms, suggesting Anthropic views memory as a competitive moat to protect. If you're building products on top of agents, this tension directly affects your architecture decisions. This is a direct contradiction on strategy, not just emphasis.

  • Your harness, your memory
  • Claude Codeソースコード流出から学ぶハーネスパターン10選 ── 50万行のTypeScriptが明かした設計思想

Read & Act

What to read:

What to do:

  • Reformat one data source your agent reads and measure the difference. The Turborepo case proved that switching profiling output from JSON to Markdown—same model, same data—produced "radically better" suggestions. Pick your most-used agent workflow, identify the ugliest input it processes, and make it human-readable. If it's hard for you to scan, it's hard for the agent. Run the same task before and after and compare output quality.

  • Add an Evaluator sub-agent to your highest-traffic workflow this week. Define it as a separate Markdown file in .claude/agents/ with binary pass/fail criteria focused on observable facts (does the function handle errors? does the test cover the edge case?), not subjective quality. Use JSON for inter-agent communication to prevent rewrite accidents. This is the lowest-cost entry point to multi-agent patterns and delivers immediate review quality gains.

  • Audit your CLAUDE.md and memory files against the 200-line/25KB budget. Strip vague instructions ("write clean code") and replace with verifiable rules ("functions under 50 lines," "always read the file before writing"). Move domain knowledge into .claude/rules/ with path-specific frontmatter so it loads only when relevant. Implement session clearing at logical breaks. Track which rules the agent actually follows—if it routinely ignores one, the rule is either too vague or too buried.

Source Articles

← More from Agentic Coding