camoufox-cli
Installation
SKILL.md
Anti-Detect Browser Automation with camoufox-cli
Core Workflow
Every browser automation follows this pattern:
- Navigate:
camoufox-cli open <url> - Snapshot:
camoufox-cli snapshot -i(get element refs like@e1,@e2) - Interact: Use refs to click, fill, select
- Re-snapshot: After navigation or DOM changes, get fresh refs
- Close:
camoufox-cli closewhen the entire task is complete — with the same--tab/--sessionflags as your other commands. Keep it open if the user may have follow-up instructions.
camoufox-cli open https://example.com/form
camoufox-cli snapshot -i
# Output: - textbox "Email" [ref=e1]
# - textbox "Password" [ref=e2]
# - button "Submit" [ref=e3]