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.
110+ CLI agents cataloged, VS Code handoffs explained, and a migration playbook worth stealing
1 min read
CLI Agent Directory
Someone mapped the entire CLI agent landscape so you don't have to.
The bradAGI awesome-cli-coding-agents repo now tracks 110+ terminal-native coding agents—Claude Code, Codex CLI, Aider, OpenCode, and dozens of community alternatives—plus the orchestration harnesses that run them in parallel [Source: GitHub]. You'll find context compression tools like Headroom claiming 15–20% token savings, persistent memory systems for session continuity, and the Wit tool that prevents merge conflicts between parallel agents via symbol-level locking. The directory also documents the "Ralph Loop" pattern for autonomous verification gates.
Bookmark this before your next multi-agent experiment.
VS Code Agent Handoffs
VS Code now has official docs on handing work between agents.
The new tutorial walks through three distinct harnesses: Local agents for interactive scaffolding, Plan agents for structured implementation strategies, and Copilot agents for autonomous background execution [Source: VS Code]. The pattern uses Git worktrees to prevent conflicts when running parallel tasks—the same isolation approach you've seen in the subagent context pattern from yesterday's issue. The todo app example shows streaming file generation with live preview updates.
Worth testing if you've been stitching together your own handoff workflow.
Agent Migration Case Study
Here's what a full production migration with agents actually looks like.
Andrea Bizzotto migrated 400+ pages from Publish to Astro using AI agents while maintaining 100% feature parity [Source: Code With Andrea]. The key technique: turning feature parity into testable migration contracts rather than relying on single LLM passes. He ran two agents in parallel using separate Git worktrees on a VPS with tmux, kept human oversight at critical review stages, and built a deterministic migration tool instead of trusting one-shot generation. The whole thing took two weeks part-time.
Steal this playbook for your next major refactor.
bradAGI/awesome-cli-coding-agents - GitHub21 hours ago ... Claude Engineer ⭐ 11.2k — Community-driven CLI for agentic Claude workflows with file management and iterative development. Kimi CLI ⭐ 11.2k [Moonshot AI] — ...github.com
CLI coding agents represent a significant shift in how developers interact with AI tools for software development. The content describes 110+ terminal-based AI coding agents that can autonomously read, write, and execute code directly in your repository — tools like Claude Code, Codex CLI, OpenCode, and many community-built alternatives. Key advanced techniques mentioned include efficient use of AGENTS.md files for durable agent instructions, skills systems for task specialization, MCP (Model Context Protocol) integration for extensibility, and orchestration patterns that run multiple agents in parallel git worktrees for complex workflows. For solo entrepreneurs building SaaS with Claude and Cursor, the ecosystem highlights several optimization strategies: context compression tools like Headroom (15–20% token savings), persistent memory systems (pi-mem, Vestige), and orchestrators that coordinate agent work across multiple specialized roles. Notable open-source options optimized for efficiency include Aider (git-aware pair programming), Plandex (plan-first approach with 2M token context), and jcode (optimized for low RAM/startup latency). The content also documents enterprise adoption patterns through tools like Omnigent (multi-agent orchestration with sandboxing and approval gates) and frameworks like great_cto (34 specialist agents covering the full SDLC with compliance gates for PCI-DSS, HIPAA, GDPR). For advanced "vibe coding" workflows, the resource emphasizes skill-first design (injecting only task-relevant context), autonomous loops with verification gates (the "Ralph Loop" pattern), and session management across multiple agents. Practical infrastructure includes BrowserSkill for headless browser control, AuthSome for credential injection, and Wit for preventing merge conflicts between parallel agents via symbol-level locking.
How I Used AI Agents to Migrate my Entire Site to Astro15 hours ago ... As for the workflow, I used the skills in my Agentic Coding Toolkit, plus ... Agentic Coding Toolkit. It won't replace your judgement, but it helps you ...codewithandrea.com

The author completed a full website migration from Publish (Swift) to Astro using AI agents while maintaining 100% feature parity across 400+ pages. Key techniques included turning feature parity into testable migration contracts, building a deterministic migration tool rather than relying on single LLM passes, splitting verification into fast focused checks plus curated visual fixtures to avoid slow feedback loops, and creating agent-sized work items with clear acceptance criteria. The workflow emphasized expert oversight at critical stages: initial braindump and AI-assisted documentation, content migration prototyping to de-risk architectural assumptions, explicit review of agent PRs and decisions, and human ownership of final production decisions. The author ran typically two agents in parallel using separate Git worktrees on a VPS with tmux, used GPT-5.6 Sol for most work, and completed the migration over two weeks part-time while on holiday.
Tutorial: Hand off work between agents in VS Code21 hours ago ... Visual Studio Code installed on your computer · AI features enabled in VS Code · A GitHub account (for cloud agent workflow). Step 1: Use a local agent to ...code.visualstudio.com

This tutorial demonstrates practical agent-based workflows in VS Code, directly addressing your interest in advanced agentic coding techniques. It covers three distinct agent harnesses: Local agents for interactive scaffolding and real-time iteration (ideal for rapid feature development), Plan agents for creating structured implementation strategies before handoff, and Copilot agents (both background and cloud-based) for autonomous task execution. The workflow showcases how to efficiently delegate work across different agent types, use Git worktrees to prevent conflicts during parallel tasks, and leverage GitHub for cloud-based collaboration—all key best practices for solo entrepreneurs building SaaS applications. The todo app example demonstrates concrete techniques like streaming file generation, live preview updates, and multi-session management that align with optimized agentic coding patterns.