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.
Ruflo spawns 100 parallel agents, VS Code ships subagent patterns, four paths to agents in 2026
1 min read
Ruflo multi-agent swarms
One npx command just turned Claude Code into a hundred parallel agents.
Ruflo—formerly claude-flow—breaks Claude Code's single-agent ceiling with self-learning memory across sessions and vector search that's reportedly 12,500x faster than baseline [Source: GitHub]. It supports zero-trust federation across machines, background workers triggered on commits, and plugs into GPT, Gemini, and Ollama alongside Claude. The awesome-claude-plugins list now tracks it as a meta-harness for deploying multi-agent swarms with adaptive memory.
If you've been waiting for orchestration without the boilerplate, this is your entry point.
VS Code subagent orchestration
VS Code just documented the coordinator-worker pattern you've been building manually.
The new subagents guide shows how to spawn context-isolated agents for parallel code analysis, research, and multi-perspective reviews—all without polluting your main session [Source: VS Code]. A Feature Builder example delegates to Planner, Architect, Implementer, and Reviewer agents, each with tailored tools and potentially cheaper models. Nested subagents support recursive delegation, and you can define when subagents trigger in custom instructions rather than prompting every time.
Worth reading alongside the best practices guide—they're designed as a pair.
VS Code agent selection
Choosing the wrong agent type wastes tokens before you start.
VS Code's updated best practices split agents into three buckets: local agents for interactive iteration, background agents for well-defined tasks, and cloud agents for team collaboration [Source: VS Code]. The guide recommends using the Plan agent to structure multi-file changes before execution, starting fresh sessions for unrelated tasks, and leveraging workspace indexing for large codebases. Custom instructions now support domain-specific skills like TDD workflows and security audits.
Match the agent to the task—that's the multiplier.
Four agent paths in 2026
Building from scratch isn't the only option anymore—but it's still the right one sometimes.
A new framework maps four distinct paths: SDK-based builds for full control, coding agents like Claude Code for implementation with your architecture decisions, managed services like Vercel Agent for infrastructure-free deployment, and off-the-shelf products for zero customization [Source: Dev.to]. Path two—coding agent plus agentic engineering—means you own transport layers, state management, and abstraction boundaries while the agent handles implementation. The split requires domain knowledge to review critically.
Pick the path before you pick the framework.
Awesome Claude Code Plugins: Top 100 Repositories - GitHub19 hours ago ... oh-my-claudecode, Teams-first Multi-agent orchestration for Claude Code, 35620, 128, 1. 30, agent-browser, Browser automation CLI for AI agents, 35076, 92, 1.github.com
The website content is an awesome list of Claude Code plugins and agentic tools highly relevant to the user's interests. Key developments include ECC, an agent harness performance optimization system for Claude Code with skills, memory, and security features; superpowers, an agentic skills framework and software development methodology; andrej-karpathy-skills, a CLAUDE.md file derived from LLM coding observations to improve Claude Code behavior; and ruflo, a meta-harness for deploying multi-agent swarms with adaptive memory and Claude Code integration. Additional tools addressing context management include claude-mem for persistent context across sessions, beads and agentmemory for coding agent memory upgrades, context-mode for context window optimization with 98% reduction, and Agent-Skills-for-Context-Engineering specifically designed for multi-agent architectures and context management. For orchestration, oh-my-claudecode provides teams-first multi-agent orchestration for Claude Code, and agents offers a multi-harness agentic plugin marketplace. Practical skill repositories like antigravity-awesome-skills (1,494+ skills), claude-skills (337 skills), and awesome-claude-code-subagents (100+ specialized subagents) provide extensive skill libraries for real-world projects.
Best practices for using AI in VS Code6 hours ago ... These techniques help you get better results. Be specific about inputs ... Reference VS Code environment context such as source control changes ...code.visualstudio.com

VS Code's AI best practices guide covers project optimization strategies directly relevant to advanced agentic coding workflows. Key recommendations include using custom instructions for project-wide coding standards, creating specialized custom agents for specific workflows like TDD or security audits, and generating domain-specific skills for capabilities like testing and deployment. The guide emphasizes choosing the right agent type—local agents for interactive iteration, background agents for well-defined tasks, and cloud agents for team collaboration—and highlights the importance of planning before implementation by using the Plan agent to create structured approaches before executing multi-file changes. For context management, the guide recommends starting new sessions for unrelated tasks, using subagents for isolated investigation to prevent context pollution, and leveraging workspace indexing for large codebases, all practices that help maintain clean agent orchestration and improve response quality in real-world project scenarios.
Subagents in Visual Studio Code5 hours ago ... Subagents enable orchestration patterns where a coordinator agent delegates work to specialized worker agents. ... Multi-perspective code review. Code ...code.visualstudio.com

The content covers VS Code subagent orchestration patterns directly relevant to multi-agent agentic coding. Key findings for your use case include: subagents enable context isolation and parallel execution for complex tasks, allowing a main agent to delegate focused work like research, code analysis, or reviews while keeping the main context clean. Usage scenarios include research before implementation (evaluating libraries or patterns in isolation), parallel code analysis (running multiple reviews simultaneously for duplicate code, security, performance), and multi-perspective code review using specialized subagents. The coordinator and worker pattern is particularly relevant for solo builders: a Feature Builder coordinator delegates to specialized agents like Planner, Plan Architect, Implementer, and Reviewer, each with tailored tools and potentially cheaper models, enabling sophisticated workflows while keeping each agent focused. Nested subagents support recursive delegation (enabled via settings), and you can restrict which agents act as subagents or define when subagents should be used in custom agent instructions rather than prompting manually each time, helping optimize context management and reduce token overhead for your SaaS development workflow.
In 2026, There Are 4 Ways to Build an AI Agent. Here's How to Choose15 hours ago ... When you ask Claude Code or Cursor to scaffold a multi-agent orchestration loop, it's drawing on a shallow well. It will produce something that runs ...dev.to

The article outlines four distinct approaches to building AI agents in 2026, directly addressing agentic coding strategies. Path 2, "Build It With a Coding Agent," specifically covers using Claude Code or Cursor for agent development while maintaining architectural control through agentic engineering—the discipline of making architectural decisions upfront (transport layer, state management, abstraction boundaries) before delegating implementation to the coding agent. This approach emphasizes the split between the agent handling implementation and you handling architecture, requiring strong domain knowledge to review decisions critically. The article also introduces Path 4, managed agent services like Claude Managed Agents and Vercel Agent, which handle infrastructure and deployment via API, allowing teams to focus on competitive advantages rather than rebuilding persistence layers and execution environments. For multi-agent orchestration specifically, the content references decision frameworks around state ownership, context flow between agents, and handling tool failures—architectural considerations that apply whether you're building from scratch or working with a coding agent.