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.
Skill budgets silently drop your tools, 2026 workflow splits thinking from typing
1 min read
Hidden skill budget
Your skills might be disappearing without telling you.
Claude Code 2.1.129 introduced a quiet setting called skillListingBudgetFraction that drops skill descriptions once they exceed 1% of your context window [Source: ClaudeFast]. If you have a large skill library, half of it could be invisible right now. You have three fixes: disable unused skills via the /skills command, raise the budget fraction in settings.json at a cost of roughly 3,000 tokens per session, or trim your skill descriptions to 100-150 characters with trigger keywords front-loaded. The third option costs nothing and scales best.
Check your active skill count today—you might be surprised what's missing.
Awesome agent skills
Someone finally organized the skill ecosystem in one place.
The VoltAgent awesome-agent-skills repository now catalogs over 1,000 agent skills from official dev teams and the community, all compatible with Claude Code, Cursor, Codex, and Gemini CLI [Source: GitHub]. Skills are organized by developer and function, so you can browse what's available without hunting across repos. Combined with the skill budget settings you just learned about, this becomes your shopping list for what to keep enabled versus what to disable. Curate ruthlessly—context is expensive.
Bookmark it and prune your skill stack this weekend.
2026 workflow reality
AI didn't make coding easier—it eliminated the easy parts.
A YC founder's detailed breakdown confirms the emerging pattern: Claude Code handles deep autonomous work like refactors and bug hunts, while Cursor stays in the IDE for quick implementation [Source: Dev.to]. The real time split lands around 60% human thinking and architecture review, 40% reviewing AI output. AI-generated code accumulates bloat 10x faster than human code—one experiment achieved 31.7% reduction on an AI-grown app with tests still passing. Schedule biweekly debloating passes or watch your codebase drift into incoherence.
The hard 20% is now the whole job.
Context hygiene
Your CLAUDE.md file is doing more than you think.
The same workflow guide emphasizes that context management separates productive sessions from frustrating ones [Source: Dev.to]. Use CLAUDE.md files at project, directory, or user level to encode architectural decisions that survive between sessions—then update them whenever you make key choices. Take git checkpoints before risky multi-file edits, and use git worktrees to run parallel Claude sessions without context-switching. The persistent memory layer forces clearer thinking about your system while dramatically improving output consistency.
Build the habit now—your future sessions depend on it.
VoltAgent/awesome-agent-skills: A curated collection of ... - GitHub18 hours ago ... A curated collection of 1000+ agent skills from official dev teams and the community, compatible with Claude Code, Codex, Gemini CLI, Cursor, and more.github.com
This resource is a comprehensive repository of Agent Skills for AI coding assistants like Claude Code, but it contains no news or recent developments. The content is a structured directory/catalog of available skills organized by developer/team, with descriptions of functionality and usage paths. Since the user is interested in Claude Code memory management tips, agentic coding debugging strategies, and AI pair programming code review practices, there is no relevant news content to extract from this website. The repository lists existing skills and tools but does not discuss recent news, updates, or developments in these areas.
AI Coding Workflow 2026: What a YC Founder's Stack Taught Me ...13 hours ago ... What's left is the hard 20%: architecture decisions, tradeoff analysis, debugging edge cases nobody predicted. ... Claude Code is Anthropic's agentic coding ...dev.to

AI agents have shifted engineering work from simple tasks like boilerplate and CRUD to the hard 20%: architecture decisions, debugging, and system coherence. The most effective 2026 workflow combines Claude Code for deep autonomous tasks like refactoring and bug hunts with Cursor for IDE-integrated work and parallel cloud agents. Context management is critical—use CLAUDE.md files at project, directory, or user level to encode architectural decisions and constraints that survive between sessions, then update them whenever you make key decisions. This persistent memory layer dramatically improves output consistency and forces clearer thinking about your system. Safety and structure prevent entropy: take git checkpoints before risky multi-file edits, use git worktrees to run parallel Claude sessions without context-switching, and schedule biweekly debloating passes to audit for dead code and redundant abstractions. AI-generated code is locally competent but globally incoherent, accumulating bloat 10x faster than human code—one documented experiment achieved 31.7% code reduction on an AI-grown app with all tests passing. The real workflow is roughly 60% human thinking and architecture review, 40% reviewing AI output, with morning reviews of cloud agent overnight work and deep work blocks on the hardest problems using Claude Code in terminal mode.
Claude Code's Hidden Skill Budget Setting (May 2026)12 hours ago ... Memory files (CLAUDE.md), ~7,400, 3.7%. Skills ... For deeper context, read Claude Skills Guide, Context Buffer Management, and Claude Code Session Context.claudefa.st

Claude Code 2.1.129 introduced skillListingBudgetFraction and skillListingMaxDescChars settings that silently drop skill descriptions when they exceed 1% of context by default. Users with many installed skills may lose half their skill library without knowing it. The fix involves three options: disabling unused skills via /skills command (free), raising the budget fraction in settings.json (costs ~3K tokens per session), or trimming skill descriptions to 100-150 characters with front-loaded trigger keywords (free and sustainable). For large skill libraries, the recommended approach combines disabling unused skills and tightening descriptions to stay under budget, reserving the fraction increase only for users on million-token context models or usage-based billing.