Skip to content

Instantly share code, notes, and snippets.

View KaitaoQiu's full-sized avatar
🤑

K KaitaoQiu

🤑
  • Top of the orderbook
View GitHub Profile
@KaitaoQiu
KaitaoQiu / SKILL.md
Created March 5, 2026 22: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 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.


@KaitaoQiu
KaitaoQiu / error_log.txt
Created September 14, 2023 22:59
log when generating java api for vela
core_oam_dev_workloaddefinitions
Creating cluster "kind" ...
✓ Ensuring node image (kindest/node:v1.21.1) 🖼
[?7l
⠈⠁ Preparing nodes 📦 [?7h[?7l
⠈⠑ Preparing nodes 📦 [?7h[?7l
⠈⠱ Preparing nodes 📦 [?7h[?7l
⠈⡱ Preparing nodes 📦 [?7h[?7l
⢀⡱ Preparing nodes 📦 [?7h[?7l
@KaitaoQiu
KaitaoQiu / cue_to_openapi.go
Last active August 26, 2023 07:45
from cue to openapi, cue sample is from kubevela
package main
import (
"bytes"
"encoding/json"
"fmt"
"log"
"cuelang.org/go/cue"
"cuelang.org/go/cue/load"
@KaitaoQiu
KaitaoQiu / arbitrage.py
Created September 3, 2022 13:32 — forked from noxx3xxon/arbitrage.py
CFMM Routing Arbitrage Example
import numpy as np
import cvxpy as cp
import itertools
# Problem data
global_indices = list(range(4))
# 0 = TOKEN-0
# 1 = TOKEN-1
# 2 = TOKEN-2
@KaitaoQiu
KaitaoQiu / list.md
Created August 2, 2021 13:09 — forked from ih2502mk/list.md
Quantopian Lectures Saved