network-debug — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited network-debug (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.
Investigate network activity on $ARGUMENTS using the Argus MCP tools.
browser_launch
tab_open { url: "$ARGUMENTS" }
network_start_recording { targetId }
console_start { targetId } tab_navigate { targetId, url: "$ARGUMENTS" }
page_evaluate { targetId, expression: "window.scrollTo(0, document.body.scrollHeight)" } network_get_requests { targetId } network_get_requests { targetId, hasError: true } ← failed/cancelled
network_get_requests { targetId, status: 404 } ← not found
network_get_requests { targetId, status: 500 } ← server errors
network_get_requests { targetId, url: "/api/orders" } ← specific endpoint
network_get_requests { targetId, method: "POST" } ← mutations network_add_mock {
targetId,
urlPattern: "https://api.example.com/**",
responseCode: 200,
responseBody: '{"mocked": true}'
}
network_list_mocks { targetId }
page_reload { targetId }
network_get_requests { targetId, url: "api.example.com" } network_clear_mocks { targetId }
network_clear_requests { targetId }
page_reload { targetId }
network_get_requests { targetId }duration values)| Field | Description |
|---|---|
url | Full request URL |
method | HTTP method |
status | HTTP status code |
mimeType | Response MIME type |
responseBody | Response body string |
duration | Request duration in ms |
error | Error text if request failed |
type | Resource type (XHR, Fetch, Script, etc.) |
network_start_recording was called before the request. Reload after starting recording if needed.page_evaluate to trigger specific API calls without a full page reload: page_evaluate { targetId, expression: "fetch('/api/data').then(r => r.json())" }~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.