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.
Claude Code's 98% infrastructure secret, Claude Cowork Guide ships structured workflows
1 min read
Infrastructure over AI logic
Claude Code's real engineering isn't in the model—it's in everything around it.
UCL researchers reverse-engineered the leaked source and found only 1.6% of the codebase handles AI decision logic [Source: X]. The other 98.4% is operational infrastructure: a 7-mode permission system, a 5-layer context compaction pipeline that progressively shrinks your token budget, and four extension mechanisms ordered by context cost—hooks, skills, plugins, MCP. Subagents return only summary text to parents while storing full transcripts separately, though agent teams burn roughly 7x the tokens of standard sessions.
As frontier models converge on coding ability, your harness becomes the differentiator—not your model choice.
Claude Cowork Guide
Most people are still treating Claude like a chatbot—this guide fixes that.
A comprehensive Claude Cowork Guide just dropped with structured sections on multi-agent workflows, context engineering, and workflow scaling [Source: X]. You get Skills creation for reusable components, Setup sections with context files like about-me.md and working-preferences.md for managing assistant memory, plus Core Features covering Sub Agents and Dispatch for orchestrating multi-agent systems. The best practices section emphasizes describing outcomes, reviewing plans, and creating Skills—alongside advanced patterns for long-running tasks and remote execution.
If you've been improvising your Claude workflow, this gives you the structure to stop.
Context cost math
The 7x token cost for agent teams finally has architecture to explain it.
The UCL analysis reveals why multi-agent sessions burn through your budget so fast: each subagent maintains full context isolation with complete transcripts stored separately, while only summaries flow back to the parent agent [Source: X]. The 5-layer context compaction pipeline progressively reduces token budget as sessions grow, but with agent teams you're running that pipeline across multiple isolated contexts. The architecture prioritizes determinism over token efficiency—giving models maximum decision latitude inside a rich harness.
Know the cost structure before you reach for /multi-execute.
Claude Code fully dissected! Researchers from UCL reverse ...19 hours ago ... ... memory, context management, state persistence, error handling, and guardrails. ... OpenAI's SDK supports agents-as-tools (specialist handles bounded subtask) and ...x.com

Claude Code's architecture invests 98.4% of its engineering in operational infrastructure rather than AI decision logic, prioritizing a deterministic harness over model reasoning. The system uses a simple core loop (call model, run tools, repeat) wrapped in sophisticated layers including a 7-mode permission system, a 5-layer context compaction pipeline that progressively reduces token budget, and four extension mechanisms (hooks, skills, plugins, MCP) ordered by context cost. For multi-agent workflows, subagents return only summary text to parents with full transcripts stored separately, though agent teams cost approximately 7x the tokens of standard sessions. This architecture represents a shift away from heavy planner-based frameworks, instead giving models maximum decision latitude within a rich deterministic harness, suggesting that as frontier models converge on coding ability, the quality of the operational harness becomes the primary differentiator.
Shushant Lakhyani's Image on X22 hours ago ... ┃ ┣ Claude Code ┃ ┣ Operational Tasks ┃ ┗ Developer Tasks ... ┃ ┣ Multi Agent Workflows ┃ ┣ Long Running Tasks ┃ ┣ Remote ...x.com

A comprehensive Claude Cowork Guide has been released covering best practices for advanced Claude usage beyond basic chatbot interaction. The guide includes structured sections on multi-agent workflows, context engineering, and workflow scaling—particularly relevant for developers seeking efficient agentic coding patterns. Key areas covered include Skills creation for reusable components, Setup sections with context files (about-me.md, working-preferences.md) for managing assistant memory and preferences, and Core Features like Sub Agents and Dispatch for orchestrating multi-agent systems. The guide emphasizes Best Practices such as describing outcomes, reviewing plans, and creating Skills, alongside Advanced Usage patterns for long-running tasks and remote execution, designed to help solo developers and SaaS founders maximize Claude's capabilities beyond standard chatbot interactions.