Source profileQuality 87/100Review permissions

derailed-dash/dazbo-agent-skills/skills/create-md-from-browsermcp-snapshot/SKILL.md

create-md-from-browsermcp-snapshot

Extracts and converts BrowserMCP accessibility tree snapshots into clean, high-fidelity Markdown documents with correct structures (headings, lists, tables, blockquotes, formatting, and links). Use when the user asks to create a markdown document from a webpage; especially if they ask to do it with BrowserMCP.

Source repository stars
17
Declared platforms
0
Static risk flags
1
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This skill converts a raw accessibility tree snapshot captured by BrowserMCP (via the browsersnapshot tool) into a beautifully formatted, high-fidelity Markdown document.

Best for

  • You have captured a webpage's accessibility tree YAML using the BrowserMCP browsersnapshot tool.
  • You need to generate a structured, high-fidelity Markdown (.md) representation of the page content.
  • You want to extract clean lists, tables, headers, blockquotes, and link destinations from the captured page layout.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/derailed-dash/dazbo-agent-skills --skill "skills/create-md-from-browsermcp-snapshot"
Safe inspection promptEditorial

Inspect the Agent Skill "create-md-from-browsermcp-snapshot" from https://github.com/derailed-dash/dazbo-agent-skills/blob/e3cfcae3c2c043853504bd337f23ad627847d8f8/skills/create-md-from-browsermcp-snapshot/SKILL.md at commit e3cfcae3c2c043853504bd337f23ad627847d8f8. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Execution Procedure

    1. Verify BrowserMCP: Confirm browsermcp is installed as detailed in Prerequisites & BrowserMCP Check. If absent, guide the user to install it. 2. Capture Snapshot: Navigate to the target URL using browsernavigate and run browsersnapshot to output the accessibility tree YAML. 3.…

    Verify BrowserMCP: Confirm browsermcp is installed as detailed in Prerequisites & BrowserMCP Check. If absent, guide the user to install it.Capture Snapshot: Navigate to the target URL using browsernavigate and run browsersnapshot to output the accessibility tree YAML.Execute Parser: Run the Python script parsesnapshot.py passing the absolute path of the captured snapshot text file as an argument and specifying the output Markdown path:
  2. 02

    Prerequisites & BrowserMCP Check

    [!IMPORTANT] This skill strictly requires the BrowserMCP server to be installed and available in the environment.

    Verify Tool Availability: Check whether the browsermcp server and its browsersnapshot tool are present in your active MCP tools list.If BrowserMCP is NOT Found:Stop execution immediately and notify the user.
  3. 03

    When to Use

    Use this skill when: - You have captured a webpage's accessibility tree YAML using the BrowserMCP browsersnapshot tool. - You need to generate a structured, high-fidelity Markdown (.md) representation of the page content. - You want to extract clean lists, tables, headers, block…

    You have captured a webpage's accessibility tree YAML using the BrowserMCP browsersnapshot tool.You need to generate a structured, high-fidelity Markdown (.md) representation of the page content.You want to extract clean lists, tables, headers, blockquotes, and link destinations from the captured page layout.
  4. 04

    How it Works

    The skill runs a Python parser that reads the captured accessibility tree YAML snapshot, builds a parent-child node hierarchy, and recursively converts the tags and properties into Markdown text.

    Verify BrowserMCP: Confirm browsermcp is installed as detailed in Prerequisites & BrowserMCP Check. If absent, guide the user to install it.Capture Snapshot: Navigate to the target URL using browsernavigate and run browsersnapshot to output the accessibility tree YAML.Execute Parser: Run the Python script parsesnapshot.py passing the absolute path of the captured snapshot text file as an argument and specifying the output Markdown path:

Permission review

Static risk signals and limitations

Runs scripts

medium · line 45

The documentation asks the agent to run terminal commands or scripts.

**Execute Parser**: Run the Python script `parse_snapshot.py` passing the absolute path of the captured snapshot text file as an argument and specifying the output Markdown path:

Runs scripts

medium · line 48

The documentation asks the agent to run terminal commands or scripts.

python3 ./create-md-from-browsermcp-snapshot/scripts/parse_snapshot.py --input <snapshot_path> --output <markdown_path> [--start-heading <heading_title>] [--end-marker <footer_text>]

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score87/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars17SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
derailed-dash/dazbo-agent-skills
Skill path
skills/create-md-from-browsermcp-snapshot/SKILL.md
Commit
e3cfcae3c2c043853504bd337f23ad627847d8f8
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

Create Markdown from BrowserMCP Snapshot

This skill converts a raw accessibility tree snapshot captured by BrowserMCP (via the browser_snapshot tool) into a beautifully formatted, high-fidelity Markdown document.

Prerequisites & BrowserMCP Check

[!IMPORTANT] This skill strictly requires the BrowserMCP server to be installed and available in the environment.

Before attempting to navigate a site or capture a snapshot:

  1. Verify Tool Availability: Check whether the browsermcp server and its browser_snapshot tool are present in your active MCP tools list.
  2. If BrowserMCP is NOT Found:
    • Stop execution immediately and notify the user.
    • Guide the user to install BrowserMCP and configure the browsermcp server entry in their MCP configuration (e.g. in ~/.gemini/config/mcp_config.json or Antigravity MCP settings).
    • Request that the user re-run the task once BrowserMCP is enabled and available.

When to Use

Use this skill when:

  • You have captured a webpage's accessibility tree YAML using the BrowserMCP browser_snapshot tool.
  • You need to generate a structured, high-fidelity Markdown (.md) representation of the page content.
  • You want to extract clean lists, tables, headers, blockquotes, and link destinations from the captured page layout.

Note: This skill complements browser navigation using the BrowserMCP tool. It is NOT intended to be used with other browser navigation tools, such as Playwright or the Antigravity built-in browser agent. Be sure to be explicit about what tools to use and what to avoid.

How it Works

The skill runs a Python parser that reads the captured accessibility tree YAML snapshot, builds a parent-child node hierarchy, and recursively converts the tags and properties into Markdown text.

Folder Structure

create-md-from-browsermcp-snapshot/
├── SKILL.md
└── scripts/
    └── parse_snapshot.py

Execution Procedure

  1. Verify BrowserMCP: Confirm browsermcp is installed as detailed in Prerequisites & BrowserMCP Check. If absent, guide the user to install it.
  2. Capture Snapshot: Navigate to the target URL using browser_navigate and run browser_snapshot to output the accessibility tree YAML.
  3. Execute Parser: Run the Python script parse_snapshot.py passing the absolute path of the captured snapshot text file as an argument and specifying the output Markdown path:
python3 ./create-md-from-browsermcp-snapshot/scripts/parse_snapshot.py --input <snapshot_path> --output <markdown_path> [--start-heading <heading_title>] [--end-marker <footer_text>]

Alternatives

Compare before choosing

Computed 10042,968

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10042,968

coreyhaines31/marketingskills

churn-prevention

When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o

Computed 100165

JasonColapietro/suede-creator-skills

suede-ab-testing

Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).

Computed 1007

narrative-io/narrative-skills-marketplace

design-analysis

Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "