a small python container that lets you proxy requests from claude's cloud container through your home network
SaferSkills independently audited api-proxy (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Routes requests through residential IP via proxy.address.here.com.
When a direct request fails with 403 or IP blocking, retry through the proxy:
# Simple GET
python3 /mnt/skills/user/api-proxy/scripts/fetch.py "https://api.example.com/endpoint"
# POST with body
python3 /mnt/skills/user/api-proxy/scripts/fetch.py "https://api.example.com/endpoint" POST '{"key": "value"}'Returns JSON response or {"error": "message"} on failure.
When creating skills that need proxy routing:
proxy_helper.py into the new skill's scripts/ folderfrom proxy_helper import proxy_get, proxy_request
data = proxy_get("https://api.example.com/endpoint")
data = proxy_request(
url="https://api.example.com/endpoint",
method="POST",
headers={"Authorization": "Bearer xyz"},
body='{"key": "value"}'
)URL: https://proxy.address.here.com/proxy
Token: your_token_herereddit.com, www.reddit.com, oauth.reddit.comNew domains require user to add them to ALLOWED_DOMAINS env var and restart the container.
| Error | Cause | Fix |
|---|---|---|
| 403 from proxy | Domain not whitelisted | Ask user to whitelist |
| 503 from proxy | Rate limited | Retry after delay |
| 504 from proxy | Upstream timeout | Increase timeout |
| Connection refused | Container/tunnel down | Check status |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.