agents-global/browser-download/SKILL.md
Download files from authenticated web sessions. Use when the browser tool cannot directly download files (attachments, exports) and you need to use cookies with curl.
npx skillsauth add devattom/.claude browser-downloadInstall 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.
The browser tool doesn't support direct file downloads. Use this workaround to download files from authenticated sessions.
// In browser act → evaluate
document.cookie
curl -L -b "cookie1=value1; cookie2=value2" -o /path/to/output.file "https://url/to/download"
# 1. Get cookies from Gmail session
# browser act → evaluate → document.cookie
# 2. Download attachment
curl -L \
-b "GMAIL_AT=xxx; SID=yyy; HSID=zzz" \
-o ~/Downloads/attachment.pdf \
"https://mail.google.com/mail/u/0?ui=2&ik=xxx&attid=0.1&disp=safe&realattid=xxx&zw"
curl -L \
-b "SID=xxx; HSID=yyy" \
-o ~/Downloads/file.pdf \
"https://drive.google.com/uc?export=download&id=FILE_ID"
-L to follow redirects-o to specify output filename-H "User-Agent: Mozilla/5.0..."--progress-bar to see download progressFor documents that can't be downloaded:
browser screenshot --fullPage to capturebrowser pdf to save as PDF (if supported)development
Use when you want to audit a project wiki for quality issues — stale version claims, contradictions between pages, orphan pages, broken wiki links, missing cross-references, or misalignment between wiki content and the actual codebase state.
development
Systematic error debugging with analysis, solution discovery, and verification
development
Structured adversarial debate between AI councillors using Agent Teams to evaluate ideas, plans, or decisions. ALWAYS use when the user says "council", "debate this", "evaluate this idea", "challenge my plan", "stress-test", "devil's advocate", "multiple perspectives", "évaluer cette idée", "débattre", "challenger mon plan", "tester cette décision", or when the user wants rigorous multi-perspective analysis of a proposal, architecture decision, or strategic choice. Each councillor (visionary, critic, pragmatist, innovator, ethicist, domain expert) represents a distinct perspective and they challenge each other through cross-examination and peer exchange, producing a nuanced verdict (PROCEED / PROCEED WITH CONDITIONS / RECONSIDER / DO NOT PROCEED). Do NOT use for divergent brainstorming or idea generation — use workflow-brainstorm instead.
testing
Automated CI/CD pipeline fixer - watches CI, fixes errors locally, commits, and loops until green. Use when CI is failing and you want to automatically fix and verify changes.