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.
Context hygiene gets a manual, hooks beat config files, system prompts go public
1 min read
Context management playbook
Your context window is a budget—here's how to stop blowing it.
A detailed guide lays out the 80% rule: exit and restart your session before you hit that threshold, or watch Claude forget your architecture decisions mid-task [Source: ClaudeFast]. Use /compact after finishing major features, not randomly. Keep your CLAUDE.md lean because path-scoped rules get summarized away during compaction anyway. The guide also recommends delegating exploratory reading to subagents so your main session stays focused on execution.
Run /context every 30 minutes—you'll catch bloat before it costs you.
Hooks over config files
If something must always happen, don't trust CLAUDE.md to remember it.
A practitioner breakdown explains why hooks beat standing instructions for deterministic behavior [Source: Jamie Maguire]. A PostToolUse hook in .claude/settings.json fires your formatter after every edit—no prompt needed, no context burned. The same guide pushes Plan Mode (Shift+Tab twice) before any non-trivial task so Claude reads the codebase first. And if you run exploratory work in a subagent, failed approaches never contaminate your main context.
Hooks are set-and-forget; config lines are suggestions the model can ignore.
System prompts now public
You can finally see exactly what Claude Code is telling itself.
A new repo extracts all 515+ system prompts from Claude Code v2.1.201, including tool descriptions, subagent instructions for Plan and Explore modes, and utility prompts for compaction and WebFetch [Source: GitHub]. It updates within minutes of each release and tracks 227 versions in a changelog. If you want to customize pieces, the repo points to tweakcc, which lets you patch individual prompts as markdown files without breaking on Anthropic updates.
Understanding the system prompt is how you stop fighting the defaults.
430K-line reference guide
Someone built the Claude Code encyclopedia you didn't know you needed.
The Ultimate Guide repo ships 181 annotated templates—23 agents, 64 skills, 37 hooks—with explanations of why each pattern works [Source: GitHub]. It covers context pressure thresholds (behavior shifts at 70%, 85%, 90%), a decision framework for agents vs skills vs commands, and 48 diagrams visualizing multi-agent topologies. There's even a 271-question quiz across nine categories if you want to test yourself. For enterprise teams, it includes role-specific learning paths and MCP vetting workflows.
Bookmark it—you'll keep coming back.
How to Get the Most Out of Claude Code: Tips From Real-World Use20 hours ago ... I've been using Claude Code heavily across AI engineering work: RAG pipelines, .NET MCP servers, content automation, agentic workflows.jamiemaguire.net
Use Your CLAUDE.md Properly by keeping it under 200 lines, leading with commands for testing, building, and linting rather than style rules, and treating it as standing instructions that earn their place on every turn. Plan Mode Is Not Optional on non-trivial tasks—use Shift+Tab twice to let Claude read the codebase and understand architecture before making changes, review the plan, and only then switch to coding mode. Context Is the Most Important Resource You're Managing: use /clear between distinct tasks frequently, use /compact with intent mid-task to preserve what matters, and recognize that long debugging sessions burn through context fast, causing the model to forget earlier conventions. Hooks Over CLAUDE.md for anything that must always happen deterministically, such as a PostToolUse hook in .claude/settings.json that fires your formatter after any edit. Build Skills for work you do more than once a week by saving reusable workflows in ~/.claude/skills/ (personal) or .claude/skills/ (project-specific), such as generating blog post drafts or creating PR descriptions. Use Subagents to keep contexts clean by running exploration and implementation in separate sessions to avoid failed approaches contaminating the context. Ask for Evidence, Not Confirmation by prompting Claude to return actual test output and command results rather than summaries. Register Your MCP Servers Early at the start of projects so Claude can access the whole system without manual intervention, and use detailed [Description] attributes on tool methods to ensure consistent tool invocation. Checkpoint Before Anything Destructive using Esc+Esc or /rewind before bulk operations like reindexing or schema migrations to enable clean rollbacks if needed.
Claude Code Context Window: Optimize Your Token Usage12 hours ago ... Token optimization, /compact, task chunking, and recovery techniques. Stop configuring. Start shipping.Everything you're reading about and more.. Agentic ...claudefa.st

Claude Code's context management requires monitoring token usage at 80% capacity and exiting sessions to restart for complex multi-file work. The 80/20 rule prevents context depletion failures like inconsistent code, repeated questions, and lost architectural decisions. Use /compact to compress conversation history after major features or at natural breakpoints, which works efficiently on Anthropic's first-party API through background session summaries. Your project-root CLAUDE.md file persists across sessions and should contain only essential context; path-scoped rules get summarized away during compaction. Divide work into context-sized chunks with handoff notes between sessions, delegate exploratory reading to subagents to preserve main session space, and use /context to monitor where tokens are spent. For long sessions, run context refreshes every 30 minutes and break tasks smaller rather than requesting larger context windows.
FlorianBruniaux/claude-code-ultimate-guide - GitHub10 hours ago ... Claude Code Ultimate Guide ... 6 months of daily practice distilled into a guide that teaches you the WHY, not just the what. From core concepts to production ...github.com
This guide teaches advanced Claude Code patterns, including context management strategies and agentic workflow design, which directly align with your interests. Key relevant sections: The guide covers context management thresholds (context pressure changes behavior at 70%, 85%, 90%), memory hierarchy through CLAUDE.md files, and agents vs skills vs commands decision frameworks. Section 9.20 covers Agent Teams coordination for parallel work on large codebases. The architecture guide explains the master loop and 4-layer context model. It includes 48 Mermaid diagrams visualizing multi-agent topologies and memory management patterns. The methodologies section (TDD/SDD/BDD) addresses maintaining code quality with AI assistance. For enterprise adoption, it covers team deployment strategies, role-specific learning paths (Tech Lead, CTO, Engineering Manager), and systematic MCP vetting workflows with 28 CVE tracking and 655 malicious skills database. The guide includes 181 annotated templates (23 agents, 64 skills, 37 hooks) with explanations of why patterns work, plus a 271-question quiz for knowledge validation across 9 categories.
Piebald-AI/claude-code-system-prompts - GitHub10 hours ago ... All parts of Claude Code's system prompt, 27 builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, ...github.com
This repository contains Claude Code's system prompts extracted from the latest npm version. As of Claude Code v2.1.201 (July 3rd, 2026), it lists 515+ system prompts with token counts, a changelog tracking 227 versions, and is updated within minutes of each Claude Code release. The repo highlights that Claude Code uses multiple conditional system prompts rather than a single string—including descriptions for builtin tools (Write, Bash, TodoWrite), separate prompts for subagents (Explore, Plan), and numerous AI-powered utility functions. For users wanting to customize prompts, the repository recommends tweakcc, which lets you modify individual prompt pieces as markdown files and patch your Claude Code installation while managing conflicts with Anthropic updates.