team

Orchestrate isolated git worktrees for conflict-free multi-agent development tasks.

2|1|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/r3dlex/oh-my-auggie --skill team-r3dlex
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team
Source: https://github.com/r3dlex/oh-my-auggie/tree/main/plugins/oma/skills/team
Command: npx skills add https://github.com/r3dlex/oh-my-auggie --skill team-r3dlex

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

This Skill addresses the challenge of parallelizing complex development tasks by managing multiple autonomous agents operating in isolated git worktrees, preventing file conflicts.

Core Features & Use Cases

  • Shared Task Coordination: Enables multiple agents to work concurrently on parts of a shared project without interference.
  • Git Worktree Management: Creates, monitors, and cleans up dedicated worktrees and branches for each agent dynamically.
  • Use Case: Decompose a large refactoring task into 5 concurrent code modification agents, each working independently on different files or modules, then consolidate the results efficiently.

Quick Start

Spawn a team of 3 agents to collaboratively fix TypeScript errors across the project by creating dedicated worktrees for each agent and assigning specific subtasks.

Frequently Asked Questions about team

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

FAQPage Schema
How do I run parallel agents on a shared git repository without file conflicts?

Parallel agents on a shared git repository avoid file conflicts by using isolated git worktrees for each executor, ensuring conflict-free concurrent execution across the shared codebase.

What is the best way to coordinate multiple agents for a large codebase refactoring task?

The best way to coordinate multiple agents for large codebase refactoring is to decompose the task into concurrent subtasks, assigning each agent a dedicated worktree and branch to modify different files independently before consolidating results.

Do I need to initialize git before setting up worktrees for multi-agent collaboration?

Yes, you need to initialize git before setting up worktrees for multi-agent collaboration, as the system mandates git initialization to manage the dynamic worktree lifecycle and enforce strict file isolation.

How does git worktree management handle cleanup for autonomous development agents?

Git worktree management handles cleanup for autonomous development agents by dynamically creating, monitoring, and cleaning up dedicated worktrees and branches throughout the agent lifecycle to support complex multi-agent workflows.

Can I assign specific subtasks like TypeScript error fixing to different agents in parallel?

Yes, you can assign specific subtasks like TypeScript error fixing to different agents in parallel by spawning a team of agents, creating dedicated worktrees for each, and assigning targeted code modification tasks across the project.