Expert skill for proxy server implementation, configuration, and traffic interception
Configures and manages proxy servers for traffic interception, debugging, and network analysis.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdExpert 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";
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.