Skip to content

v4.12.0 - Specialist Agents & Claude Code Parallel Fix

Latest

Choose a tag to compare

@korallis korallis released this 26 Nov 22:58
· 2 commits to main since this release

πŸŽ‰ New Features

6 New Specialist Agents

Now available for both Claude Code and Droid CLI:

Specialist Purpose
backend-specialist APIs, authentication, server-side logic, microservices
frontend-specialist React components, state management, styling, accessibility
database-specialist Schema design, migrations, query optimization, SQL/NoSQL
devops-specialist CI/CD pipelines, Docker, cloud infrastructure, monitoring
test-specialist Unit tests, integration tests, E2E tests, test strategies
full-stack-specialist End-to-end feature implementation across all layers

Use with /orchestrate-tasks to assign specialists to task groups for parallel execution.


πŸ”§ Critical Fix: Claude Code Parallel Execution

Before (Broken)

Claude Code /implement-tasks was incorrectly using droid exec (Factory CLI method).

After (Fixed)

  • Uses native Claude Code Task tool for parallel execution
  • Spawns assigned specialists from orchestration.yml
  • Falls back to implementer agent when specialists don't exist
  • Removed linear dependency blocker - proceeds with parallel execution

Platform Behavior

Platform Parallel Method Agents
Claude Code Task tool β†’ spawn specialists 6 new + existing
Droid CLI droid exec shell script 6 new + existing

Droid CLI Specialists Include:

  • βœ… Color field for CLI display
  • βœ… TodoWrite progress tracking
  • βœ… No tool restrictions (inherits all tools)

Usage

# Assign specialists to task groups
/orchestrate-tasks

# Run implementation with parallel execution (Option A)
/implement-tasks

The specialists will be automatically invoked based on orchestration.yml assignments.