subagent-tasks

Dispatch subagents for parallel tasks with two-stage compliance and quality reviews.

Updated Mar 12, 2026
One-click install
npx skills add https://github.com/arvidfcjarfalla-prog/atlas --skill subagent-tasks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: subagent-tasks
Source: https://github.com/arvidfcjarfalla-prog/atlas/tree/main/.claude/skills/subagent-tasks
Command: npx skills add https://github.com/arvidfcjarfalla-prog/atlas --skill subagent-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Complex plans with multiple independent tasks are prone to delays and quality gaps; subagents enable parallel execution and a structured two-stage review to improve outcomes.

Core Features & Use Cases

  • Dispatch one subagent per task and apply two-stage reviews (compliance plus code quality).
  • Determine task independence and parallelize where possible; enforce sequential execution for tasks touching the same files.
  • Assemble per-task context bundles that include project rules and relevant files.

Quick Start

Create a plan that assigns one subagent per task and apply two-stage review for each task.

Frequently Asked Questions about subagent-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute independent coding tasks in parallel without losing code quality?

Parallel execution of independent coding tasks is achieved by dispatching one subagent per task and applying a two-stage review for compliance and code quality. This ensures fast parallel task processing while preserving correctness across different files.

What is a two-stage review in software engineering task dispatch?

A two-stage review in task dispatch is a post-implementation process that checks both plan compliance and code quality. It ensures each subagent's output meets project rules and quality standards after parallel execution.

When should I use subagent task dispatch for my development plan?

Subagent task dispatch is used for plans with three or more independent tasks that touch different files. It enables parallel execution for independent tasks while enforcing sequential execution for tasks that modify the same files.

How do I set up context bundling for parallel subagent task execution?

Context bundling for parallel execution is set up by assembling per-task context bundles that include project rules and relevant files. This provides each dispatched subagent with the specific context needed to complete its assigned task correctly.

Can I parallelize tasks that modify the same project files?

Tasks that modify the same project files cannot be parallelized. The subagent task dispatch mechanism enforces sequential execution for tasks touching the same files to prevent conflicts, while only parallelizing genuinely independent tasks.

What is the best way to manage complex plans with multiple independent coding tasks?

The best way to manage complex plans with multiple independent coding tasks is to parse the plan, dispatch one subagent per independent task for parallel execution, and enforce a two-stage review to prevent quality gaps and delays.