Skip to content

Instantly share code, notes, and snippets.

View omarluq's full-sized avatar
:shipit:

Omar Alani omarluq

:shipit:
View GitHub Profile
@omarluq
omarluq / SKILL.md
Created January 28, 2026 03:17 — forked from kieranklaassen/SKILL.md
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
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.


@omarluq
omarluq / SKILL.md
Created January 28, 2026 03:17 — forked from kieranklaassen/SKILL.md
Claude Code Swarm Orchestration Skill - Complete guide to multi-agent coordination with TeammateTool, Task system, and all patterns
name description
orchestrating-swarms
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.


function colNameToNum(col) {
let result = 0;
let colName = col.toUpperCase();
for (let i = 0; i < colName.length; i++) {
// A=1, B=2, ... Z=26
const charValue = colName.charCodeAt(i) - "A".charCodeAt(0) + 1;
// Base-26 conversion
result = result * 26 + charValue;
}
// Convert to 0-indexed