Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
hexbee avatar

Doko Page Reader

  • 14 installs
  • 1 repo stars
  • Updated July 31, 2026
  • hexbee/hello-skills

Reads and extracts content from JavaScript-rendered or logged-in web pages through a locally connected Chrome browser using the Dokobot bridge.

About

Uses the Dokobot local bridge and the user's Chrome session to read pages that block headless scrapers or require authentication. A developer uses it when an agent needs content from JS-rendered or logged-in pages via a real browser.

  • Reads pages in local mode via dokobot read --local with session continuation for long pages
  • Handles slow pages and scrolling through --screens and --timeout options

Doko Page Reader by the numbers

  • 14 all-time installs (skills.sh)
  • Ranked #1,417 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hexbee/hello-skills --skill doko-page-reader

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs14
repo stars1
Last updatedJuly 31, 2026
Repositoryhexbee/hello-skills

What it does

Reads and extracts content from JavaScript-rendered or logged-in web pages through a locally connected Chrome browser using the Dokobot bridge.

Files

SKILL.mdMarkdownGitHub ↗

Dokobot Local

Use Dokobot only through the local bridge and the user's Chrome session.

Prerequisites

  • Ensure dokobot CLI is installed.
  • Ensure Chrome is open with the Dokobot extension enabled.
  • Ensure the local bridge is installed with dokobot install-bridge.
  • Prefer local browser reading when the page needs JavaScript, an authenticated browser session, or a real browser to bypass bot friction.

Core workflow

1. Read the page in local mode:

dokobot read '<URL>' --local

2. If the read fails because no local browser is available, tell the user to open Chrome, enable the Dokobot extension, and verify the local bridge is installed.

3. For long pages, collect more screens or extend timeout:

dokobot read '<URL>' --local --screens 5 --timeout 120

4. When the response includes a sessionId and more scrolling is needed, continue the same session:

dokobot read '<URL>' --local --session-id <SESSION_ID> --screens 5

5. Close the session when finished:

dokobot doko close <SESSION_ID> --local

Commands

Read a page

Use:

dokobot read '<URL>' --local [--screens N] [--timeout S] [--format text|chunks] [--reuse-tab]

Notes:

  • Always include --local.
  • Use --screens N to scroll and capture more content.
  • Use --timeout S for slow pages.
  • Use --format chunks only when segmented content is needed.
  • Use --reuse-tab to avoid opening a new tab for the same URL.

Default text response shape:

{
  text?: string
  sessionId: string
  canContinue: unknown
}

Chunked response shape:

{
  text?: string
  chunks: Array<{
    id: string
    sourceIds: Array<string>
    text: string
    bounds: [number, number, number, number]
    zIndex?: number
    containerId?: string
  }>
  sessionId: string
  canContinue: unknown
}

Operating rules

  • Treat this skill as local-only.
  • Keep the command surface minimal: use only read --local and doko close --local.
  • Analyze and summarize content after receiving the raw page text; keep Dokobot focused on extraction.
  • Close sessions explicitly when you are done.
  • Keep concurrent reads modest; up to 5 parallel reads is a reasonable ceiling.

Troubleshooting

  • No registered devices. or similar local-connection failures: Ask the user to open Chrome, enable the Dokobot extension, and confirm the local bridge is installed.
  • 503: Treat it as no local extension/device available and check the local setup.
  • 504: Retry with a larger timeout or fewer screens.
  • 422: Treat it as a cancelled or failed local read and retry if appropriate.

Security

  • Keep usage local to the user's browser session.
  • Treat read as read-only extraction.

Related skills

Automation & Workflowsautomationresearch

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.