library/specializations/network-programming/skills/proxy-server/SKILL.md
Expert skill for proxy server implementation, configuration, and traffic interception
npx skillsauth add a5c-ai/babysitter proxy-serverInstall 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 proxy server implementation, configuration, and network traffic interception.
Squid - Caching proxy servermitmproxy - Interactive HTTPS proxynginx - HTTP and reverse proxyiptables/nftables - Linux firewall for transparent proxyCharles - HTTP proxy/monitortinyproxy - Lightweight proxyhttp_port 3128
acl localnet src 10.0.0.0/8
http_access allow localnet
cache_dir ufs /var/spool/squid 10000 16 256
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j REDIRECT --to-port 3129
mitmproxy -p 8080 --mode transparent
mitmdump -w traffic.flow
function FindProxyForURL(url, host) {
if (isPlainHostName(host)) return "DIRECT";
if (dnsDomainIs(host, ".internal.com")) return "DIRECT";
return "PROXY proxy.example.com:8080";
}
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.