claude-worker — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited claude-worker (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.
Send a prompt to Claude.ai via browser and return the response.
browser-start.js, browser-nav.js, browser-eval.js, browser-screenshot.jsprompt: string # The text to send to Claude
task_type: string # qa | summary | translation | rewrite | extraction | comparison | brainstorming | analysisAlways output this JSON block first:
{
"site": "claude",
"task_type": "<task_type>",
"status": "success | partial | error",
"answer": "<extracted response text>",
"retry_count": 0,
"elapsed_ms": 0,
"error_reason": null
}Then follow with a short human-readable summary (2–3 sentences max).
node ~/.pi/agent/skills/local-browser-tools/browser-start.jsExpected: ✓ Chrome already running on :9222 or ✓ Chrome started on :9222
If fails: return error status, stop.
node ~/.pi/agent/skills/local-browser-tools/browser-nav.js https://claude.aiTake a screenshot and verify:
If login page appears with no input box: return error_reason: "login_required", stop.
Claude uses a div[contenteditable] with role="textbox" and aria-label="Write your prompt to Claude".
Check:
!!document.querySelector('[aria-label="Write your prompt to Claude"]')Fallback selectors in order:
[aria-label="Write your prompt to Claude"][contenteditable="true"][role="textbox"]div[contenteditable]If no selector works after 3 attempts: trigger retry.
Claude uses a contenteditable div. Use execCommand to insert text — do NOT set textContent directly as it bypasses the editor state:
(function() {
const input = document.querySelector('[aria-label="Write your prompt to Claude"]')
|| document.querySelector('[contenteditable="true"][role="textbox"]')
|| document.querySelector('div[contenteditable]');
if (!input) return "NOT_FOUND";
input.focus();
input.innerHTML = "";
input.dispatchEvent(new Event("input", { bubbles: true }));
const sel = window.getSelection();
const range = document.createRange();
range.selectNodeContents(input);
sel.removeAllRanges();
sel.addRange(range);
document.execCommand("insertText", false, PROMPT_TEXT);
return input.textContent;
})()Verify returned value matches the intended prompt. If mismatch: retry.
Take a screenshot to confirm text appears in the input box.
Claude's send button uses data-testid:
(document.querySelector('button[data-testid*="send"]')
|| document.querySelector('button[aria-label*="Send"]'))
?.click()After clicking, take a screenshot to confirm the message bubble appears in the chat.
Poll every 3 seconds, maximum 120 seconds total. Do NOT use fixed sleep.
Use response length stability as the primary completion signal:
Response extraction for polling:
(function() {
const msgs = document.querySelectorAll('div.font-claude-response');
if (msgs.length > 0) return msgs[msgs.length - 1].innerText?.trim()?.length || 0;
return 0;
})()If 120 seconds pass with no stable response: trigger retry.
(function() {
const responses = document.querySelectorAll('div.font-claude-response');
if (responses.length > 0) {
return responses[responses.length - 1].innerText?.trim();
}
return "EXTRACTION_FAILED";
})()Validate the result:
If validation fails: trigger retry.
https://claude.ai before retryingstatus: "error" with error_reason explaining which step failedIf a selector stops working:
browser-eval.js to list all [contenteditable] and button[data-testid] elementsaria-label, role, or data-testid{
"site": "claude",
"task_type": "qa",
"status": "success",
"answer": "TEST-OK",
"retry_count": 0,
"elapsed_ms": 15000,
"error_reason": null
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.