Skip to content

Instantly share code, notes, and snippets.

View hungrypc's full-sized avatar
🦐
hehe

Phil Chan hungrypc

🦐
hehe
View GitHub Profile
@hungrypc
hungrypc / SKILL.md
Created January 28, 2026 19:28 — forked from kieranklaassen/SKILL.md
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name orchestrating-swarms
description Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-organizing task queues, or any task benefiting from divide-and-conquer patterns.

Claude Code Swarm Orchestration

Master multi-agent orchestration using Claude Code's TeammateTool and Task system.


class Node {
constructor(val) {
this.val = val
this.left = null
this.right = null
}
}
const array = [1, 3, 4, 6, 7, 8, 9, 11, 13, 15, 20, 27, 30, 38, 40]
def benchmark
# Your benchmarking code goes here.
end
# Be careful, pasting this into IRB will take a long time to print.
# It's a loooong string. :)
long_string = "apple"*100000000
running_time = benchmark { long_string.reverse }