Skip to content

Instantly share code, notes, and snippets.

@Hackiri
Hackiri / SKILL.md
Created February 1, 2026 12:59 — 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.


@Hackiri
Hackiri / proxmox_template_builder.sh
Last active October 26, 2025 23:11
create cloud init template proxmox
#!/bin/bash
# Exit immediately if a command exits with a non-zero status.
# Disabled to allow script to continue on individual image failures
# set -e
# Function to check for required utilities
function check_utilities() {
local utilities=("qm" "wget" "xz" "sha256sum" "ssh-keygen")
for util in "${utilities[@]}"; do