What problem does it solve? Saving web pages as clean, readable markdown is difficult when sites require JavaScript rendering, user login, or lazy-loaded content. This Skill uses a real Chrome browser via the Chrome DevTools Protocol to fully render any page and convert it into a structured markdown document with metadata. ## Core Features & Use Cases - Full JavaScript Rendering: Launches Chrome via CDP so dynamic, client-side rendered pages are captured completely, with auto-scrolling to trigger lazy-loaded content. - Two Capture Modes: Auto mode captures on network idle for public pages; wait mode pauses for a user signal, enabling capture of login-required or paywalled pages using your own Chrome profile session. - Smart Content Extraction: Combines Mozilla Readability, JSON-LD, Next.js data, and CSS selector fallbacks to extract the main article content, then converts it to GitHub-flavored markdown with YAML front matter (url, title, author, published date). - Use Case: Save a technical blog post behind a login wall as a markdown file for your personal knowledge base by running the script in wait mode, logging in, and pressing Enter to capture. ## Quick Start Ask the agent to save a webpage as markdown by providing the URL, for example: convert https://example.com/article to markdown using the url-to-markdown skill.