dev-browser

Automate browser tasks with persistent page state across script executions.

Updated Jan 11, 2026
One-click install
npx skills add https://github.com/ehoyos007/SKILL.md --skill dev-browser-ehoyos007
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-browser
Source: https://github.com/ehoyos007/SKILL.md/tree/main/dev-browser
Command: npx skills add https://github.com/ehoyos007/SKILL.md --skill dev-browser-ehoyos007

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Persistent browser state across script runs eliminates repeated login/setup and enables reliable automation of multi-step web tasks by preserving sessions, cookies, and localStorage between activations.

Core Features & Use Cases

  • Persistent page state across runs to preserve login sessions and localStorage.
  • Incremental scripts: write small, focused scripts to automate single actions and compose them into larger workflows.
  • Data extraction, visual verification, and testing: automate navigation, form filling, screenshots, and web app checks across multiple pages; also includes a reference guide for scraping and data workflows.

Quick Start

Provide a target URL and a sequence of actions to perform; Dev Browser will execute them and return the results.

Frequently Asked Questions about dev-browser

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate web tasks while keeping browser state like sessions and cookies across runs?

Persistent browser state preserves login sessions, cookies, and localStorage between script runs, eliminating repeated setup. You automate multi-step browser workflows by executing a sequence of actions on a target URL and returning the results incrementally.

What is the best way to structure scripts for incremental web automation?

Incremental web automation uses small, focused scripts in the scripts/ directory to automate single actions. You compose these deterministic scripts into larger workflows to progress browser tasks incrementally across sessions.

Can I use this for web testing and extracting data from multiple pages?

Yes, web testing and data extraction are supported by automating navigation, form filling, and taking screenshots across multiple pages. A reference guide is included specifically for scraping and data workflows.

Does browser automation require standalone mode for reliable script execution?

Yes, standalone mode is required for robust browser automation. This mode supports the execution of deterministic scripts that incrementally progress workflows across multiple script activations.

Why does my browser automation workflow require repeated logins every time I run a script?

Browser automation requires repeated logins when page state is not persisted between executions. Using a persistent browser state approach preserves sessions and localStorage, eliminating the need to repeat login and setup steps.