What problem does it solve? Browsing and extracting information from websites typically requires manual clicking, copying, and re-fetching pages. This Skill turns the web into a filesystem-like environment where URLs are paths and pages are cached locally, so you can query, filter, and navigate web content with familiar shell commands without repeated network requests. ## Core Features & Use Cases - Shell-style navigation: Use cd, ls, cat, grep, follow, and back to move between URLs and extract page content from a local cache. - Asynchronous background processing: Fetches, HTML-to-markdown extraction, and eager link prefetching run in background subagents so the prompt never blocks. - Search, diff, and monitoring: Search across all cached pages with locate, compare page versions with diff, and poll sites for changes with watch. - Use Case: A researcher opens Hacker News with cd https://news.ycombinator.com, filters stories with grep "AI", follows a discussion, extracts comments with cat .comment, and archives the session with tar. ## Quick Start Start the websh shell and navigate to https://news.ycombinator.com, then list the first five links on the page.