library/specializations/network-programming/skills/event-loop/SKILL.md
Expert skill for high-performance event-driven I/O programming and optimization
npx skillsauth add a5c-ai/babysitter event-loopInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert skill for high-performance event-driven I/O programming across platforms and runtime environments.
strace/dtrace - System call tracingperf - Linux performance analysislibuv - Cross-platform async I/Oio_uring - Linux async I/O interfaceTokio - Rust async runtimeBoost.Asio - C++ async I/Oint epfd = epoll_create1(0);
struct epoll_event ev, events[MAX_EVENTS];
ev.events = EPOLLIN | EPOLLET; // Edge-triggered
ev.data.fd = listen_fd;
epoll_ctl(epfd, EPOLL_CTL_ADD, listen_fd, &ev);
while (1) {
int n = epoll_wait(epfd, events, MAX_EVENTS, -1);
for (int i = 0; i < n; i++) {
handle_event(&events[i]);
}
}
struct io_uring ring;
io_uring_queue_init(256, &ring, 0);
// Submit and complete I/O operations
perf record -g ./server
perf report --stdio
strace -c -f ./server
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.