Tag
Kent C. Dodds tweeted about Astra spawning Astra subagents, hinting at developments in AI agent systems.
The article recommends using GPT-6 Astra by breaking tasks into steps, starting with medium settings to replicate a demo and then using max settings to optimize results, leveraging subagents for efficiency.
A tweet indicates that more AI video generation demos will be shared this week, highlighting the complexity and time required for high-quality outputs using prompts and subagents.
The article explores Claude Code Agent Teams, contrasting traditional subagent delegation with collaborative teammates as first-class interactive agents using shared task boards and messaging.
Explores how multi-layered AI agent delegation affects reliability, arguing that the downstream influence of errors matters more than the number of layers.
A viral tweet shares a 3-step setup for running DeepSeek V4-flash subagents as a self-improving loop inside Codex, calling it a cost-effective replacement for Opus 5.
Andrew Ng's 2024 prediction that agentic workflows with weaker models can outperform stronger standalone models is validated by Anthropic, where an orchestrator coordinating cheaper subagents beat Claude Opus by 90.2%. The post highlights Claude Code subagents as the practical implementation.
LangChain Academy announces an update to its free 'Introduction to Deep Agents' course, adding modules on dynamic and async subagents, a course tutor skill, capstone projects, practice exercises, and TypeScript support, along with Deep Agents v0.7 updates.
A developer explains how to effectively use Claude Code subagents by capping and scoping them, rather than running many agents, to avoid context burn and overlapping work.
Someone has open-sourced the Codex infinite ammo method, using Sol for planning and Luna Max for execution, saving about 59% of token costs on simple tasks and 65% on complex tasks.
This article explains how to give Codex a Plus version with infinite ammo through custom sub-agent configuration: Sol handles planning and fallback, while Luna handles parallel execution. Includes a complete configuration tutorial.
Explains how to create the custom subagent luna_worker in Codex, including the full prompt and configuration method, referencing @Saccc_c's approach to help users run tasks in parallel.
In the article, the author traces the evolution of subagent paradigms in AI coding assistants over the past year, and introduces 'Swarm Coding' as a consolidated agent skill that delegates subagent management to an agent itself.
Nader Dabit visualizes the speed difference between 1,000 tok/s subagents and 85 tok/s, highlighting that lightning skill offload enables ~5x faster execution by using subagents for implementation while keeping frontier models as planners and reviewers.
GPT-5.6 Sol Ultra, released by OpenAI, reportedly proved the 50-year-old Cycle Double Cover Conjecture in under one hour using 64 subagents, marking a major AI breakthrough.
Anthropic benchmark shows that using a larger model (Fable) as orchestrator with cheaper models (Sonnet) as workers achieves 96% of full Fable performance at 46% cost, available now in Claude Code.
Detailed introduction to the most practical prompt engineering tips before Fable5 goes offline, including letting the model run experiments autonomously, optimizing workflows, and reducing token consumption through subagent allocation, along with other practical experiences.
Practical tips for using AI coding tools like Fable and Opus: let them apply their own judgement instead of dictating behavior, and delegate smaller tasks to lower-power models via subagents to save tokens and improve efficiency.
A tweet argues that subagents are an antipattern in AI/software design.
LangChain's Deep Agents now supports dynamic subagents, where the main agent writes orchestration code to coordinate work at scale, enabling workflows like processing hundreds of documents with deterministic coverage.