Smithery Logo
MCPsSkillsDocsPricing
Login
NewFlame, an assistant that learns and improves. Available onTelegramSlack
    magicseek

    nblm

    magicseek/nblm
    Data & Analytics
    19

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─
    Smithery Logo

    Give agents more agency

    Resources

    DocumentationPrivacy PolicySystem Status

    Company

    PricingAboutBlog

    Connect

    © 2026 Smithery. All rights reserved.

    About

    Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth...

    SKILL.md

    NotebookLM Quick Commands

    Query Google NotebookLM for source-grounded, citation-backed answers.

    Environment

    All dependencies and authentication are handled automatically by run.py:

    • First run creates .venv and installs Python/Node.js dependencies
    • If Google auth is missing or expired, a browser window opens automatically
    • No manual pre-flight steps required

    Usage

    /nblm <command> [args]

    Commands

    Notebook Management

    Command Description
    login Authenticate with Google
    status Show auth and library status
    accounts List all Google accounts
    accounts add Add a new Google account
    accounts switch <id> Switch active account (by index or email)
    accounts remove <id> Remove a Google account
    accounts use <id> Set agent-specific active account (OpenClaw isolation)
    accounts clear Clear agent-specific account override
    local List notebooks in local library
    remote List all notebooks from NotebookLM API
    create <name> Create a new notebook
    delete [--id ID] Delete a notebook
    rename <name> [--id ID] Rename a notebook
    summary [--id ID] Get AI-generated summary
    describe [--id ID] Get description and suggested topics
    add <url-or-id> Add notebook to local library (auto-detects URL vs notebook ID)
    activate <id> Set active notebook

    Source Management

    Command Description
    sources [--id ID] List sources in notebook
    upload <file> Upload a single file
    upload <folder> Sync a folder of files to NotebookLM
    upload-zlib <url> Download from Z-Library and upload
    upload-url <url> Add URL as source
    upload-youtube <url> Add YouTube video as source
    upload-text <title> [--content TEXT] Add text as source
    source-text <source-id> Get full indexed text
    source-guide <source-id> Get AI summary and keywords
    source-rename <source-id> <name> Rename a source
    source-refresh <source-id> Re-fetch URL content
    source-delete <source-id> Delete a source

    Upload options:

    • --use-active - Upload to the currently active notebook
    • --create-new - Create a new notebook named after the file/folder
    • --notebook-id <id> - Upload to a specific notebook
    • --dry-run - Show sync plan without executing (folder sync)
    • --rebuild - Force rebuild tracking file (folder sync)

    Important: When user runs upload without specifying a target, ASK them first:

    "Would you like to upload to the active notebook, or create a new notebook?" Then pass the appropriate flag (--use-active or --create-new).

    Chat & Audio/Media

    Command Description
    ask <question> Query NotebookLM
    podcast [--instructions TEXT] Generate audio podcast
    podcast-status <task-id> Check podcast generation status
    podcast-download [output-path] Download latest podcast
    briefing [--instructions TEXT] Generate brief audio summary
    debate [--instructions TEXT] Generate debate-style audio
    slides [--instructions TEXT] Generate slide deck
    slides-download [output-path] Download slide deck as PDF
    infographic [--instructions TEXT] Generate infographic
    infographic-download [output-path] Download infographic
    media-list [--type TYPE] List generated media (audio/video/slides/infographic)
    media-delete <id> Delete a generated media item

    Command Routing

    Based on $ARGUMENTS, execute the appropriate command:

    $IF($ARGUMENTS, Parse the command from: "$ARGUMENTS"

    login → python scripts/run.py auth_manager.py setup --service google

    accounts → python scripts/run.py auth_manager.py accounts list

    accounts add → python scripts/run.py auth_manager.py accounts add

    accounts switch → python scripts/run.py auth_manager.py accounts switch "<id>"

    accounts remove → python scripts/run.py auth_manager.py accounts remove "<id>"

    accounts use → python scripts/run.py auth_manager.py accounts use "<id>"

    accounts clear → python scripts/run.py auth_manager.py accounts clear

    status → Run both:

    • python scripts/run.py auth_manager.py status
    • python scripts/run.py notebook_manager.py list

    local → python scripts/run.py notebook_manager.py list

    remote → python scripts/run.py nblm_cli.py notebooks

    create → python scripts/run.py nblm_cli.py create "<name>"

    delete [--id ID] → python scripts/run.py nblm_cli.py delete <args>

    rename [--id ID] → python scripts/run.py nblm_cli.py rename "<name>" <args>

    summary [--id ID] → python scripts/run.py nblm_cli.py summary <args>

    describe [--id ID] → python scripts/run.py nblm_cli.py describe <args>

    add → Smart add workflow (auto-detects URL vs notebook ID)

    activate → python scripts/run.py notebook_manager.py activate --id "<id>"

    sources [--id ID] → python scripts/run.py nblm_cli.py sources <args>

    upload → First ASK user: "Upload to active notebook or create new?" Then: - Active: python scripts/run.py source_manager.py add --file "<file>" --use-active - New: python scripts/run.py source_manager.py add --file "<file>" --create-new

    upload → Sync a folder: - First ASK user: "Sync to active notebook, create new, or specify notebook?" - Active: python scripts/run.py source_manager.py sync "<folder>" --use-active - New: python scripts/run.py source_manager.py sync "<folder>" --create-new - Specific: python scripts/run.py source_manager.py sync "<folder>" --notebook-id ID - Dry-run: python scripts/run.py source_manager.py sync "<folder>" --dry-run - Rebuild: python scripts/run.py source_manager.py sync "<folder>" --rebuild

    upload-zlib → First ASK user: "Upload to active notebook or create new?" Then: - Active: python scripts/run.py source_manager.py add --url "<url>" --use-active - New: python scripts/run.py source_manager.py add --url "<url>" --create-new

    upload-url → python scripts/run.py nblm_cli.py upload-url "<url>"

    upload-youtube → python scripts/run.py nblm_cli.py upload-youtube "<url>"

    upload-text </strong> → <code>python scripts/run.py nblm_cli.py upload-text "<title>" <args></code></p> <p> <strong>source-text <id></strong> → <code>python scripts/run.py nblm_cli.py source-text "<id>"</code></p> <p> <strong>source-guide <id></strong> → <code>python scripts/run.py nblm_cli.py source-guide "<id>"</code></p> <p> <strong>source-rename <id> <name></strong> → <code>python scripts/run.py nblm_cli.py source-rename "<id>" "<name>"</code></p> <p> <strong>source-refresh <id></strong> → <code>python scripts/run.py nblm_cli.py source-refresh "<id>"</code></p> <p> <strong>source-delete <id></strong> → <code>python scripts/run.py nblm_cli.py source-delete "<id>"</code></p> <p> <strong>ask <question></strong> → <code>python scripts/run.py nblm_cli.py ask "<question>"</code></p> <p> <strong>podcast</strong> → <code>python scripts/run.py artifact_manager.py generate --format DEEP_DIVE <args></code></p> <p> <strong>podcast-status <task-id></strong> → <code>python scripts/run.py artifact_manager.py status --task-id "<task-id>"</code></p> <p> <strong>podcast-download [output-path]</strong> → <code>python scripts/run.py artifact_manager.py download "<output-path>"</code></p> <p> <strong>briefing</strong> → <code>python scripts/run.py artifact_manager.py generate --format BRIEF <args></code></p> <p> <strong>debate</strong> → <code>python scripts/run.py artifact_manager.py generate --format DEBATE <args></code></p> <p> <strong>slides</strong> → <code>python scripts/run.py artifact_manager.py generate-slides <args></code></p> <p> <strong>slides-download [output-path]</strong> → <code>python scripts/run.py artifact_manager.py download "<output-path>" --type slide-deck</code></p> <p> <strong>infographic</strong> → <code>python scripts/run.py artifact_manager.py generate-infographic <args></code></p> <p> <strong>infographic-download [output-path]</strong> → <code>python scripts/run.py artifact_manager.py download "<output-path>" --type infographic</code></p> <p> <strong>media-list [--type TYPE]</strong> → <code>python scripts/run.py artifact_manager.py list <args></code></p> <p> <strong>media-delete <id></strong> → <code>python scripts/run.py artifact_manager.py delete "<id>"</code></p> <p> If command not recognized, show usage help.,</p> <p> Show available commands with <code>/nblm</code> (no arguments) )</p> <h2>Podcast Options</h2> <pre><code>/nblm podcast --length DEFAULT --wait --output ./podcast.mp3 /nblm podcast --instructions "Focus on the key findings" /nblm briefing --wait --output ./summary.mp3 /nblm debate --instructions "Compare the two approaches" </code></pre> <table> <thead> <tr> <th>Option</th> <th>Values</th> </tr> </thead> <tbody><tr> <td><code>--length</code></td> <td><code>SHORT</code>, <code>DEFAULT</code>, <code>LONG</code></td> </tr> <tr> <td><code>--instructions</code></td> <td>Custom instructions for the content</td> </tr> <tr> <td><code>--wait</code></td> <td>Wait for generation to complete</td> </tr> <tr> <td><code>--output</code></td> <td>Download path (requires <code>--wait</code>)</td> </tr> </tbody></table> <h2>Slide Deck Options</h2> <pre><code>/nblm slides --format DETAILED_DECK --wait --output ./presentation.pdf /nblm slides --instructions "Focus on key diagrams" --format PRESENTER_SLIDES </code></pre> <table> <thead> <tr> <th>Option</th> <th>Values</th> </tr> </thead> <tbody><tr> <td><code>--format</code></td> <td><code>DETAILED_DECK</code>, <code>PRESENTER_SLIDES</code></td> </tr> <tr> <td><code>--length</code></td> <td><code>SHORT</code>, <code>DEFAULT</code></td> </tr> <tr> <td><code>--instructions</code></td> <td>Custom instructions for the content</td> </tr> <tr> <td><code>--wait</code></td> <td>Wait for generation to complete</td> </tr> <tr> <td><code>--output</code></td> <td>Download path (requires <code>--wait</code>)</td> </tr> </tbody></table> <h2>Infographic Options</h2> <pre><code>/nblm infographic --orientation LANDSCAPE --wait --output ./visual.png /nblm infographic --instructions "Highlight comparison" --detail-level DETAILED </code></pre> <table> <thead> <tr> <th>Option</th> <th>Values</th> </tr> </thead> <tbody><tr> <td><code>--orientation</code></td> <td><code>LANDSCAPE</code>, <code>PORTRAIT</code>, <code>SQUARE</code></td> </tr> <tr> <td><code>--detail-level</code></td> <td><code>CONCISE</code>, <code>STANDARD</code>, <code>DETAILED</code></td> </tr> <tr> <td><code>--instructions</code></td> <td>Custom instructions for the content</td> </tr> <tr> <td><code>--wait</code></td> <td>Wait for generation to complete</td> </tr> <tr> <td><code>--output</code></td> <td>Download path (requires <code>--wait</code>)</td> </tr> </tbody></table> <h2>Media Generation</h2> <table> <thead> <tr> <th>Command</th> <th>Description</th> <th>Output</th> </tr> </thead> <tbody><tr> <td><code>/nblm podcast</code></td> <td>Deep-dive audio discussion</td> <td>MP3</td> </tr> <tr> <td><code>/nblm briefing</code></td> <td>Brief audio summary</td> <td>MP3</td> </tr> <tr> <td><code>/nblm debate</code></td> <td>Debate-style audio</td> <td>MP3</td> </tr> <tr> <td><code>/nblm slides</code></td> <td>Slide deck presentation</td> <td>PDF</td> </tr> <tr> <td><code>/nblm infographic</code></td> <td>Visual infographic</td> <td>PNG</td> </tr> </tbody></table> <h3>Examples</h3> <pre><code>/nblm podcast --wait --output ./deep-dive.mp3 /nblm briefing --instructions "Focus on chapter 3" --wait /nblm debate --length LONG --wait --output ./debate.mp3 /nblm slides --instructions "Include key diagrams" --format DETAILED_DECK --wait --output ./presentation.pdf /nblm infographic --orientation LANDSCAPE --detail-level DETAILED --wait --output ./summary.png </code></pre> <h3>Download & Manage</h3> <pre><code>/nblm podcast-download ./my-podcast.mp3 /nblm slides-download ./presentation.pdf /nblm infographic-download ./visual.png /nblm media-list # List all generated media /nblm media-list --type audio # List only audio /nblm media-delete <id> # Delete a media item </code></pre> <hr> <h1>Extended Documentation</h1> <h2>When to Use This Skill</h2> <p>Trigger when user:</p> <ul> <li>Mentions NotebookLM explicitly</li> <li>Shares NotebookLM URL (<code>https://notebooklm.google.com/notebook/...</code>)</li> <li>Asks to query their notebooks/documentation</li> <li>Wants to add documentation to NotebookLM library</li> <li>Uses phrases like "ask my NotebookLM", "check my docs", "query my notebook"</li> </ul> <h2>⚠️ CRITICAL: Add Command - Smart Discovery</h2> <p>The add command now <strong>automatically discovers metadata</strong> from the notebook:</p> <pre><code class="language-bash"># Smart Add (auto-discovers name, description, topics) python scripts/run.py notebook_manager.py add <notebook-id-or-url> # With optional overrides python scripts/run.py notebook_manager.py add <id> --name "Custom Name" --topics "custom,topics" </code></pre> <p><strong>What Smart Add does:</strong></p> <ol> <li>Fetches notebook title from NotebookLM API</li> <li>Queries the notebook content to generate description and topics</li> <li>Adds to local library with discovered metadata</li> </ol> <p><strong>Supported input formats:</strong></p> <ul> <li>Notebook ID: <code>5fd9f36b-8000-401d-a7a0-7aa3f7832644</code></li> <li>Full URL: <code>https://notebooklm.google.com/notebook/5fd9f36b-8000-401d-a7a0-7aa3f7832644</code></li> </ul> <p>NEVER manually specify <code>--name</code>, <code>--description</code>, or <code>--topics</code> unless the user explicitly provides them.</p> <h2>Critical: Always Use run.py Wrapper</h2> <p><strong>NEVER call scripts directly. ALWAYS use <code>python scripts/run.py [script]</code>:</strong></p> <pre><code class="language-bash"># ✅ CORRECT - Always use run.py: python scripts/run.py auth_manager.py status python scripts/run.py notebook_manager.py list python scripts/run.py ask_question.py --question "..." # ❌ WRONG - Never call directly: python scripts/auth_manager.py status # Fails without venv! </code></pre> <p>The <code>run.py</code> wrapper automatically:</p> <ol> <li>Creates <code>.venv</code> if needed</li> <li>Installs all dependencies</li> <li>Activates environment</li> <li>Executes script properly</li> </ol> <h2>Core Workflow</h2> <h3>Step 1: Check Authentication Status</h3> <pre><code class="language-bash">python scripts/run.py auth_manager.py status </code></pre> <p>If not authenticated, proceed to setup.</p> <h3>Step 2: Authenticate (One-Time Setup)</h3> <pre><code class="language-bash"># Browser MUST be visible for manual Google login python scripts/run.py auth_manager.py setup </code></pre> <p><strong>Important:</strong></p> <ul> <li>Browser is VISIBLE for authentication</li> <li>Browser window opens automatically</li> <li>User must manually log in to Google</li> <li>Tell user: "A browser window will open for Google login"</li> </ul> <h3>Step 3: Manage Notebook Library</h3> <pre><code class="language-bash"># List all notebooks python scripts/run.py notebook_manager.py list # BEFORE ADDING: Ask user for metadata if unknown! # "What does this notebook contain?" # "What topics should I tag it with?" # Add notebook to library (ALL parameters are REQUIRED!) python scripts/run.py notebook_manager.py add \ --url "https://notebooklm.google.com/notebook/..." \ --name "Descriptive Name" \ --description "What this notebook contains" \ # REQUIRED - ASK USER IF UNKNOWN! --topics "topic1,topic2,topic3" # REQUIRED - ASK USER IF UNKNOWN! # Search notebooks by topic python scripts/run.py notebook_manager.py search --query "keyword" # Set active notebook python scripts/run.py notebook_manager.py activate --id notebook-id # Remove notebook python scripts/run.py notebook_manager.py remove --id notebook-id </code></pre> <h3>Quick Workflow</h3> <ol> <li>Check library: <code>python scripts/run.py notebook_manager.py list</code></li> <li>Ask question: <code>python scripts/run.py ask_question.py --question "..." --notebook-id ID</code></li> </ol> <h3>Step 4: Ask Questions</h3> <pre><code class="language-bash"># Basic query (uses active notebook if set) python scripts/run.py ask_question.py --question "Your question here" # Query specific notebook python scripts/run.py ask_question.py --question "..." --notebook-id notebook-id # Query with notebook URL directly python scripts/run.py ask_question.py --question "..." --notebook-url "https://..." # Show browser for debugging python scripts/run.py ask_question.py --question "..." --show-browser </code></pre> <h2>Follow-Up Mechanism (CRITICAL)</h2> <p>Every NotebookLM answer ends with: <strong>"EXTREMELY IMPORTANT: Is that ALL you need to know?"</strong></p> <p><strong>Required Claude Behavior:</strong></p> <ol> <li><strong>STOP</strong> - Do not immediately respond to user</li> <li><strong>ANALYZE</strong> - Compare answer to user's original request</li> <li><strong>IDENTIFY GAPS</strong> - Determine if more information needed</li> <li><strong>ASK FOLLOW-UP</strong> - If gaps exist, immediately ask:<pre><code class="language-bash">python scripts/run.py ask_question.py --question "Follow-up with context..." </code></pre> </li> <li><strong>REPEAT</strong> - Continue until information is complete</li> <li><strong>SYNTHESIZE</strong> - Combine all answers before responding to user</li> </ol> <h2>Z-Library Integration</h2> <h3>Triggers</h3> <ul> <li>User provides Z-Library URL (zlib.li, z-lib.org, zh.zlib.li)</li> <li>User says "download this book to NotebookLM"</li> <li>User says "add this book from Z-Library"</li> </ul> <h3>Setup (One-Time)</h3> <pre><code class="language-bash"># Authenticate with Z-Library python scripts/run.py auth_manager.py setup --service zlibrary </code></pre> <h3>Commands</h3> <pre><code class="language-bash"># Add book from Z-Library python scripts/run.py source_manager.py add --url "https://zh.zlib.li/book/..." # Check Z-Library auth status python scripts/run.py auth_manager.py status --service zlibrary </code></pre> <h2>Script Reference</h2> <h3>Authentication Management (<code>auth_manager.py</code>)</h3> <pre><code class="language-bash">python scripts/run.py auth_manager.py setup # Default: Google python scripts/run.py auth_manager.py setup --service google python scripts/run.py auth_manager.py setup --service zlibrary python scripts/run.py auth_manager.py status # Show all services python scripts/run.py auth_manager.py status --service zlibrary python scripts/run.py auth_manager.py clear --service zlibrary # Clear auth # Multi-Account Management (Google) python scripts/run.py auth_manager.py accounts list # List all accounts python scripts/run.py auth_manager.py accounts add # Add new account python scripts/run.py auth_manager.py accounts switch 1 # Switch by index python scripts/run.py auth_manager.py accounts switch user@gmail.com # Switch by email python scripts/run.py auth_manager.py accounts remove 2 # Remove account </code></pre> <h3>Notebook Management (<code>notebook_manager.py</code>)</h3> <pre><code class="language-bash">python scripts/run.py notebook_manager.py add --url URL --name NAME --description DESC --topics TOPICS # OR use notebook ID directly: python scripts/run.py notebook_manager.py add --notebook-id ID --name NAME --description DESC --topics TOPICS python scripts/run.py notebook_manager.py list python scripts/run.py notebook_manager.py search --query QUERY python scripts/run.py notebook_manager.py activate --id ID python scripts/run.py notebook_manager.py remove --id ID python scripts/run.py notebook_manager.py stats </code></pre> <h3>Question Interface (<code>ask_question.py</code>)</h3> <pre><code class="language-bash">python scripts/run.py ask_question.py --question "..." [--notebook-id ID] [--notebook-url URL] [--show-browser] </code></pre> <h3>Source Manager (<code>source_manager.py</code>)</h3> <pre><code class="language-bash"># Upload to active notebook python scripts/run.py source_manager.py add --file "/path/to/book.pdf" --use-active # Create new notebook for upload python scripts/run.py source_manager.py add --file "/path/to/book.pdf" --create-new # Upload to specific notebook python scripts/run.py source_manager.py add --file "/path/to/book.pdf" --notebook-id NOTEBOOK_ID # Z-Library download and upload python scripts/run.py source_manager.py add --url "https://zh.zlib.li/book/..." --use-active python scripts/run.py source_manager.py add --url "https://zh.zlib.li/book/..." --create-new # Sync a folder (new!) python scripts/run.py source_manager.py sync "/path/to/docs" --use-active python scripts/run.py source_manager.py sync "/path/to/docs" --create-new python scripts/run.py source_manager.py sync "/path/to/docs" --notebook-id NOTEBOOK_ID # Sync options (new!) python scripts/run.py source_manager.py sync "/path/to/docs" --dry-run # Preview only python scripts/run.py source_manager.py sync "/path/to/docs" --rebuild # Force re-hash all files </code></pre> <p><strong>Folder Sync:</strong></p> <ul> <li>Scans folder for supported types: PDF, TXT, MD, DOCX, HTML, EPUB</li> <li>Tracks sync state internally (no per-folder tracking file to manage)</li> <li>Sync strategy: add new, update modified (delete + re-upload), skip unchanged</li> <li>Multi-account aware (tracks which Google account was used) <strong>Note:</strong> One of <code>--use-active</code>, <code>--create-new</code>, or <code>--notebook-id</code> is REQUIRED. Uploads wait for NotebookLM processing and print progress as <code>Ready: N/T</code>. Press Ctrl+C to stop waiting. Local file uploads use browser automation and require Google authentication. If browser automation is unavailable, set <code>NOTEBOOKLM_UPLOAD_MODE=text</code> to upload extracted text instead (PDFs require <code>pypdf</code>).</li> </ul> <h3>Data Cleanup (<code>cleanup_manager.py</code>)</h3> <pre><code class="language-bash">python scripts/run.py cleanup_manager.py # Preview cleanup python scripts/run.py cleanup_manager.py --confirm # Execute cleanup python scripts/run.py cleanup_manager.py --preserve-library # Keep notebooks </code></pre> <h3>Watchdog Status (<code>auth_manager.py</code>)</h3> <pre><code class="language-bash">python scripts/run.py auth_manager.py watchdog-status </code></pre> <h2>Environment Management</h2> <p>The virtual environment is automatically managed:</p> <ul> <li>First run creates <code>.venv</code> automatically</li> <li>Dependencies install automatically</li> <li>Node.js dependencies install automatically</li> <li>agent-browser daemon starts on demand and keeps browser state in memory</li> <li>daemon stops after 10 minutes of inactivity (any agent-browser command resets the timer)</li> <li>set <code>AGENT_BROWSER_OWNER_PID</code> to auto-stop when the agent process exits</li> <li><code>scripts/run.py</code> sets <code>AGENT_BROWSER_OWNER_PID</code> to its parent PID by default</li> <li>Everything isolated in skill directory</li> </ul> <p>Manual setup (only if automatic fails):</p> <pre><code class="language-bash">python -m venv .venv source .venv/bin/activate # Linux/Mac pip install -r requirements.txt npm install npm run install-browsers </code></pre> <h2>Data Storage</h2> <p>All data stored in <code>~/.claude/skills/notebooklm/data/</code>:</p> <ul> <li><code>library.json</code> - Notebook metadata (with account associations)</li> <li><code>auth/google/</code> - Multi-account Google auth<ul> <li><code>index.json</code> - Account index (active account, list)</li> <li><code><n>-<email>.json</code> - Per-account credentials</li> </ul> </li> <li><code>auth/zlibrary.json</code> - Z-Library auth state</li> <li><code>agent_browser/session_id</code> - Current daemon session ID</li> <li><code>agent_browser/last_activity.json</code> - Last activity timestamp for idle shutdown</li> <li><code>agent_browser/watchdog.pid</code> - Idle watchdog process ID</li> </ul> <p><strong>Security:</strong> Protected by <code>.gitignore</code>, never commit to git.</p> <h2>Configuration</h2> <p>Optional <code>.env</code> file in skill directory:</p> <pre><code class="language-env">HEADLESS=false # Browser visibility SHOW_BROWSER=false # Default browser display STEALTH_ENABLED=true # Human-like behavior TYPING_WPM_MIN=160 # Typing speed TYPING_WPM_MAX=240 DEFAULT_NOTEBOOK_ID= # Default notebook </code></pre> <h2>Decision Flow</h2> <pre><code>User mentions NotebookLM ↓ Check auth → python scripts/run.py auth_manager.py status ↓ If not authenticated → python scripts/run.py auth_manager.py setup ↓ Check/Add notebook → python scripts/run.py notebook_manager.py list/add (with --description) ↓ Activate notebook → python scripts/run.py notebook_manager.py activate --id ID ↓ Ask question → python scripts/run.py ask_question.py --question "..." ↓ See "Is that ALL you need?" → Ask follow-ups until complete ↓ Synthesize and respond to user </code></pre> <h2>Troubleshooting</h2> <table> <thead> <tr> <th>Problem</th> <th>Solution</th> </tr> </thead> <tbody><tr> <td>ModuleNotFoundError</td> <td>Use <code>run.py</code> wrapper</td> </tr> <tr> <td>Authentication fails</td> <td>Browser must be visible for setup! --show-browser</td> </tr> <tr> <td>DAEMON_UNAVAILABLE</td> <td>Ensure Node.js/npm installed, run <code>npm install</code>, retry</td> </tr> <tr> <td>AUTH_REQUIRED</td> <td>Run <code>python scripts/run.py auth_manager.py setup</code></td> </tr> <tr> <td>ELEMENT_NOT_FOUND</td> <td>Verify notebook URL and re-run with fresh page load</td> </tr> <tr> <td>Rate limit (50/day)</td> <td>Wait or add another Google account with <code>accounts add</code></td> </tr> <tr> <td>Browser crashes</td> <td><code>python scripts/run.py cleanup_manager.py --preserve-library</code></td> </tr> <tr> <td>Notebook not found</td> <td>Check with <code>notebook_manager.py list</code></td> </tr> </tbody></table> <h2>Best Practices</h2> <ol> <li><strong>Always use run.py</strong> - Handles environment automatically</li> <li><strong>Check auth first</strong> - Before any operations</li> <li><strong>Follow-up questions</strong> - Don't stop at first answer</li> <li><strong>Browser visible for auth</strong> - Required for manual login</li> <li><strong>Include context</strong> - Each question is independent</li> <li><strong>Synthesize answers</strong> - Combine multiple responses</li> </ol> <h2>Limitations</h2> <ul> <li>No session persistence (each question = new browser)</li> <li>Rate limits on free Google accounts (50 queries/day per account; use multiple accounts to increase)</li> <li>Manual upload required (user must add docs to NotebookLM)</li> <li>Browser overhead (few seconds per question)</li> </ul> <h2>Resources (Skill Structure)</h2> <p><strong>Important directories and files:</strong></p> <ul> <li><code>scripts/</code> - All automation scripts (ask_question.py, notebook_manager.py, etc.)</li> <li><code>data/</code> - Local storage for authentication and notebook library</li> <li><code>references/</code> - Extended documentation:<ul> <li><code>api_reference.md</code> - Detailed API documentation for all scripts</li> <li><code>troubleshooting.md</code> - Common issues and solutions</li> <li><code>usage_patterns.md</code> - Best practices and workflow examples</li> </ul> </li> <li><code>.venv/</code> - Isolated Python environment (auto-created on first run)</li> <li><code>.gitignore</code> - Protects sensitive data from being committed</li> </ul> </div></div></div></div></div></section></div><script>$RC("B:2","S:2")</script><div hidden id="S:3"><div class="mt-6"><div class="flex items-center justify-between mb-1"><span class="text-sm text-foreground">Recommended Servers</span></div><div class="flex flex-col gap-0.5"><a class="flex items-center gap-2 py-0.5 group transition-colors" href="/servers/mandalazenwave/fillin"><span class="w-4 h-4 inline-flex shrink-0 items-center justify-center overflow-hidden rounded-sm"><img src="https://api.smithery.ai/servers/mandalazenwave/fillin/icon" alt="fillin" class="size-full object-contain" decoding="async" loading="lazy"/></span><div class="flex items-center gap-1 min-w-0"><span class="text-sm text-muted-foreground truncate group-hover:text-foreground group-hover:underline">fillin</span><div class="shrink-0"><img src="/logos/verified-badge.svg" alt="" aria-label="Verified" class="inline-block w-4 h-4 shrink-0" data-state="closed"/></div></div></a><a class="flex items-center gap-2 py-0.5 group transition-colors" href="/servers/brightdata"><img alt="Bright Data" loading="lazy" width="16" height="16" decoding="async" data-nimg="1" class="w-4 h-4 shrink-0 rounded rounded-sm object-contain" style="color:transparent" sizes="16px" srcSet="/_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=32&q=75 32w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=48&q=75 48w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=64&q=75 64w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=96&q=75 96w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=128&q=75 128w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=256&q=75 256w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=384&q=75 384w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fwww.google.com%2Fs2%2Ffavicons%3Fdomain%3Dbrightdata.com%26sz%3D64&w=3840&q=75"/><div class="flex items-center gap-1 min-w-0"><span class="text-sm text-muted-foreground truncate group-hover:text-foreground group-hover:underline">Bright Data</span><div class="shrink-0"><img src="/logos/verified-badge.svg" alt="" aria-label="Verified" class="inline-block w-4 h-4 shrink-0" data-state="closed"/></div></div></a><a class="flex items-center gap-2 py-0.5 group transition-colors" href="/servers/linkupplatform/linkup-mcp-server"><span class="w-4 h-4 inline-flex shrink-0 items-center justify-center overflow-hidden rounded-sm"><img src="https://api.smithery.ai/servers/LinkupPlatform/linkup-mcp-server/icon" alt="Linkup" class="size-full object-contain" decoding="async" loading="lazy"/></span><div class="flex items-center gap-1 min-w-0"><span class="text-sm text-muted-foreground truncate group-hover:text-foreground group-hover:underline">Linkup</span><div class="shrink-0"><img src="/logos/verified-badge.svg" alt="" aria-label="Verified" class="inline-block w-4 h-4 shrink-0" data-state="closed"/></div></div></a></div></div></div><script>$RC("B:3","S:3")</script><div hidden id="S:4"><div class="mt-4 space-y-0"><div class="flex flex-col py-0.5"><span class="text-sm text-foreground mb-0.5">Repository</span><div class="text-sm"><a href="https://github.com/magicseek/nblm" target="_blank" rel="noopener noreferrer" class="inline-flex items-center gap-1.5 text-muted-foreground hover:text-foreground hover:underline transition-colors"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-github h-3.5 w-3.5" aria-hidden="true"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"></path><path d="M9 18c-4.51 2-5-2-7-2"></path></svg><span>magicseek/nblm</span></a></div></div></div><div class="mt-6"><div class="text-sm"><div class="flex items-center gap-2 text-foreground font-medium pb-1"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-4 w-4" aria-hidden="true"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg><span>Files</span></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right h-3 w-3 shrink-0 transition-transform" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder h-4 w-4 text-muted-foreground shrink-0" aria-hidden="true"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span class="truncate group-hover:underline">commands</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right h-3 w-3 shrink-0 transition-transform" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder h-4 w-4 text-muted-foreground shrink-0" aria-hidden="true"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span class="truncate group-hover:underline">docs</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right h-3 w-3 shrink-0 transition-transform" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder h-4 w-4 text-muted-foreground shrink-0" aria-hidden="true"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span class="truncate group-hover:underline">references</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right h-3 w-3 shrink-0 transition-transform" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder h-4 w-4 text-muted-foreground shrink-0" aria-hidden="true"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span class="truncate group-hover:underline">scripts</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right h-3 w-3 shrink-0 transition-transform" aria-hidden="true"><path d="m9 18 6-6-6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder h-4 w-4 text-muted-foreground shrink-0" aria-hidden="true"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg><span class="truncate group-hover:underline">tests</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-foreground cursor-default"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate font-medium underline">SKILL.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">AGENTS.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">AUTHENTICATION.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">CHANGELOG.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">CLAUDE.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">LICENSE</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">package-lock.json</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">package.json</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">README.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">├─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">README.zh-CN.md</span></button></div><div><button class="flex items-center gap-2 py-0.5 w-full text-left transition-colors group text-muted-foreground hover:text-foreground"><span class="text-border font-mono text-xs select-none w-4 shrink-0">└─</span><span class="shrink-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-4 w-4 text-muted-foreground" aria-hidden="true"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg></span><span class="truncate group-hover:underline">requirements.txt</span></button></div></div></div></div><script>$RC("B:4","S:4")</script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[816022,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ThemeProvider\"]\n3:I[434959,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ObservabilityBootstrap\"]\n4:I[119993,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n5:I[836,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ed802e90eb6a8072.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n6:I[659974,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"7:I[750186,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"AuthProvider\"]\n"])</script><script>self.__next_f.push([1,"8:I[781604,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ReactQueryProvider\"]\n"])</script><script>self.__next_f.push([1,"9:I[981853,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SmitheryProvider\"]\n"])</script><script>self.__next_f.push([1,"a:I[844657,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Header\"]\n"])</script><script>self.__next_f.push([1,"b:I[693755,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ec0f13b5614fb9ee.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Container\"]\n"])</script><script>self.__next_f.push([1,"29:I[566083,[\"/_next/static/chunks/707647edab18cc3d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n:HL[\"/_next/static/chunks/c3d5a6be71213922.css?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"style\"]\n:HL[\"/_next/static/chunks/4f9073e60b332599.css?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"style\"]\n:HL[\"/_next/static/media/gt_pantheon_micro_medium-s.p.f530ffb4.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/gt_pantheon_micro_regular-s.p.65457f4e.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"bbgKZKiuBF8PRUagqDhG2\",\"c\":[\"\",\"skills\",\"magicseek\",\"nblm\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"(main)\",{\"children\":[\"skills\",{\"children\":[[\"namespace\",\"magicseek\",\"d\"],{\"children\":[[\"slug\",\"nblm\",\"d\"],{\"children\":[\"__PAGE__\",{}]}]}]}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/c3d5a6be71213922.css?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/4f9073e60b332599.css?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n\\t\\t\\t\\t\\t\\t(function() {\\n\\t\\t\\t\\t\\t\\t\\tconst storageKey = 'smithery-theme';\\n\\t\\t\\t\\t\\t\\t\\tconst stored = localStorage.getItem(storageKey);\\n\\t\\t\\t\\t\\t\\t\\tconst systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';\\n\\t\\t\\t\\t\\t\\t\\tconst theme = stored === 'system' || !stored ? systemTheme : stored;\\n\\t\\t\\t\\t\\t\\t\\tif (theme === 'dark') {\\n\\t\\t\\t\\t\\t\\t\\t\\tdocument.documentElement.classList.add('dark', 'theme-dark', 'night');\\n\\t\\t\\t\\t\\t\\t\\t\\tdocument.documentElement.setAttribute('data-theme', 'night');\\n\\t\\t\\t\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t\\t\\t\\tdocument.documentElement.classList.add('morning');\\n\\t\\t\\t\\t\\t\\t\\t\\tdocument.documentElement.setAttribute('data-theme', 'morning');\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t})();\\n\\t\\t\\t\\t\\t\"}}]}],[\"$\",\"body\",null,{\"className\":\"pantheon_3e01d33b-module__eqoAQa__variable pantheon_3e01d33b-module__eqoAQa__className w-screen overflow-x-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[[\"$\",\"$L3\",null,{}],[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$5\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/ed802e90eb6a8072.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true}]],\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$L9\",null,{\"children\":[[\"$\",\"$La\",null,{\"compact\":true}],[\"$\",\"div\",null,{\"className\":\"bg-background flex flex-col min-h-[calc(100vh-57px)]\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex-1 flex items-center\",\"children\":[\"$\",\"$Lb\",null,{\"className\":\"w-full\",\"children\":[\"$\",\"div\",null,{\"className\":\"max-w-4xl mx-auto\",\"children\":[\"$\",\"div\",null,{\"className\":\"mb-16 select-none cursor-default\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-8\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-end justify-center mb-2\",\"children\":[[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"-34.28 -25.74 102.68 62.61\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":\"0.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"shapeRendering\":\"geometricPrecision\",\"aria-hidden\":true,\"className\":\"relative z-10 h-[200px] w-auto text-foreground\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}],\"$Lc\",\"$Ld\",\"$Le\",\"$Lf\",\"$L10\",\"$L11\",\"$L12\",\"$L13\",\"$L14\",\"$L15\",\"$L16\",\"$L17\",\"$L18\",\"$L19\",\"$L1a\"]}],\"$L1b\"]}],\"$L1c\"]}],\"$L1d\"]}]}]}]}],\"$L1e\"]}],\"$L1f\",\"$L20\"]}]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],false,\"$L21\",\"$L22\"]}]}]]}]]}],{\"children\":[\"$L23\",{\"children\":[\"$L24\",{\"children\":[\"$L25\",{\"children\":[\"$L26\",{\"children\":[\"$L27\",{},null,false,false]},null,false,false]},null,false,false]},null,false,false]},null,false,false]},null,false,false],\"$L28\",false]],\"m\":\"$undefined\",\"G\":[\"$29\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"2a:I[783475,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Image\"]\n"])</script><script>self.__next_f.push([1,"2b:\"$Sreact.suspense\"\n"])</script><script>self.__next_f.push([1,"2c:I[534792,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Skeleton\"]\n"])</script><script>self.__next_f.push([1,"2e:I[135582,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Footer\"]\n"])</script><script>self.__next_f.push([1,"2f:I[517521,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Toaster\"]\n"])</script><script>self.__next_f.push([1,"30:I[568206,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"Analytics\"]\n31:I[723933,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SpeedInsights\"]\n"])</script><script>self.__next_f.push([1,"32:I[280570,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ReactScan\"]\n"])</script><script>self.__next_f.push([1,"33:I[193370,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SmitheryClientProvider\"]\n"])</script><script>self.__next_f.push([1,"34:I[235265,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"NavigationProvider\"]\n"])</script><script>self.__next_f.push([1,"35:I[24314,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"BillingAlertBanner\"]\n"])</script><script>self.__next_f.push([1,"36:I[454256,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SearchFilterProvider\"]\n"])</script><script>self.__next_f.push([1,"37:I[402797,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"FlameAnnouncementBar\"]\n"])</script><script>self.__next_f.push([1,"38:I[122342,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ObservabilityErrorBoundary\"]\n"])</script><script>self.__next_f.push([1,"4e:I[607806,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/e3140b9aa746a4f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"60:I[448336,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/51105b3f176f0980.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"62:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"OutletBoundary\"]\n64:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ViewportBoundary\"]\n66:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"MetadataBoundary\"]\nc:[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.15}]\nd:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\ne:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.1}]\nf:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n10:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4"])</script><script>self.__next_f.push([1,".63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"#ff8c32\",\"stroke\":\"none\",\"opacity\":0.07}]\n11:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.02}]\n12:[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\"}]\n13:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\"}]\n14:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.9"])</script><script>self.__next_f.push([1,"3 1.76Z\"}]\n15:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n16:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.13}]\n17:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n18:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.08}]\n19:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12"])</script><script>self.__next_f.push([1,".88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\"}]\n1a:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\"}]\n1b:[\"$\",\"$L2a\",null,{\"src\":\"/mascot/mascot_angry_md_softshadow.svg\",\"alt\":\"Angry mascot\",\"width\":200,\"height\":200,\"className\":\"relative z-0 h-[210px] w-auto -scale-x-100 mb-20 -ml-24\",\"style\":{\"filter\":\"grayscale(40%) brightness(1.02) contrast(1) opacity(0.95)\"}}]\n1c:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-medium text-foreground\",\"children\":\"404: Page Not Found\"}]\n1d:[\"$\",\"div\",null,{\"className\":\"mb-2 text-left\",\"children\":[\"$\",\"$2b\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"$L2c\",null,{\"className\":\"h-7 w-32 mx-auto mb-4\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-3 gap-4 max-w-5xl mx-auto\",\"children\":[[\"$\",\"$L2c\",\"0\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"1\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"2\",{\"className\":\"h-[200px] w-full rounded-lg\"}]]}]]}],\"children\":\"$L2d\"}]}]\n1e:[\"$\",\"div\",null,{\"className\":\"pb-8 text-center\",\"children\":[\"$\",\"p\",null,{\"className\":\"text-sm text-muted-foreground\",\"children\":[\"Feel that something is off?\",\" \",[\"$\",\"a\",null,{\"href\":\"mailto:support@smithery.ai\",\"className\":\"underline hover:text-foreground\",\"children\":\"Contact us\"}]]}]}]\n1f:[\"$\",\"$L2e\",null,{}]\n20:[\"$\",\"$L2f\",null,{}]\n21:[\"$\",\"$L30\",null,{\"domainsConfig\":{\"refer\":\"smithery.link\"}}]\n22:[\"$\",\"$L31\",null,{\"sampleRate\":0.1}]\n"])</script><script>self.__next_f.push([1,"23:[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-18\",{\"src\":\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-19\",{\"src\":\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"div\",null,{\"className\":\"flex min-h-screen flex-col\",\"children\":[[\"$\",\"$L32\",null,{}],[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$L33\",null,{\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$L34\",null,{\"children\":[[\"$\",\"$L35\",null,{}],[\"$\",\"$L36\",null,{\"children\":[[\"$\",\"$La\",null,{\"compact\":true}],[\"$\",\"$L37\",null,{}],[\"$\",\"$L38\",null,{\"boundary\":\"(main)/layout\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex-1\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"bg-background flex flex-col min-h-[calc(100vh-57px)]\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex-1 flex items-center\",\"children\":[\"$\",\"$Lb\",null,{\"className\":\"w-full\",\"children\":[\"$\",\"div\",null,{\"className\":\"max-w-4xl mx-auto\",\"children\":[\"$\",\"div\",null,{\"className\":\"mb-16 select-none cursor-default\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-8\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-end justify-center mb-2\",\"children\":[[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"-34.28 -25.74 102.68 62.61\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":\"0.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"shapeRendering\":\"geometricPrecision\",\"aria-hidden\":true,\"className\":\"relative z-10 h-[200px] w-auto text-foreground\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}],\"$L39\",\"$L3a\",\"$L3b\",\"$L3c\",\"$L3d\",\"$L3e\",\"$L3f\",\"$L40\",\"$L41\",\"$L42\",\"$L43\",\"$L44\",\"$L45\",\"$L46\",\"$L47\"]}],\"$L48\"]}],\"$L49\"]}],\"$L4a\"]}]}]}]}],\"$L4b\"]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],\"$L4c\",\"$L4d\"]}]}]}]}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"24:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"main\",null,{\"className\":\"min-h-[calc(100vh-57px)] bg-background pb-24\",\"children\":[\"$\",\"$Lb\",null,{\"width\":\"lg\",\"children\":[\"$\",\"$2b\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$4e\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/e3140b9aa746a4f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true}]],\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"bg-background flex flex-col min-h-[calc(100vh-57px)]\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex-1 flex items-center\",\"children\":[\"$\",\"$Lb\",null,{\"className\":\"w-full\",\"children\":[\"$\",\"div\",null,{\"className\":\"max-w-4xl mx-auto\",\"children\":[\"$\",\"div\",null,{\"className\":\"mb-16 select-none cursor-default\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center mb-8\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-end justify-center mb-2\",\"children\":[[\"$\",\"svg\",null,{\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"-34.28 -25.74 102.68 62.61\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":\"0.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"shapeRendering\":\"geometricPrecision\",\"aria-hidden\":true,\"className\":\"relative z-10 h-[200px] w-auto text-foreground\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}],[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.15}],[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}],\"$L4f\",\"$L50\",\"$L51\",\"$L52\",\"$L53\",\"$L54\",\"$L55\",\"$L56\",\"$L57\",\"$L58\",\"$L59\",\"$L5a\",\"$L5b\"]}],\"$L5c\"]}],\"$L5d\"]}],\"$L5e\"]}]}]}]}],\"$L5f\"]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"25:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n26:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$60\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/51105b3f176f0980.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true}]],\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n27:[\"$\",\"$1\",\"c\",{\"children\":[\"$L61\",[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L62\",null,{\"children\":[\"$\",\"$2b\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@63\"}]}]]}]\n28:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L64\",null,{\"children\":\"$@65\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L66\",null,{\"children\":[\"$\",\"$2b\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@67\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\n"])</script><script>self.__next_f.push([1,"39:[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.15}]\n3a:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n3b:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.1}]\n3c:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n3d:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96"])</script><script>self.__next_f.push([1,"L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"#ff8c32\",\"stroke\":\"none\",\"opacity\":0.07}]\n3e:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.02}]\n3f:[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\"}]\n40:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\"}]\n41:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\"}]\n42:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67"])</script><script>self.__next_f.push([1,"L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n43:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.13}]\n44:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n45:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.08}]\n46:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\"}]\n47:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60"])</script><script>self.__next_f.push([1,".94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\"}]\n48:[\"$\",\"$L2a\",null,{\"src\":\"/mascot/mascot_angry_md_softshadow.svg\",\"alt\":\"Angry mascot\",\"width\":200,\"height\":200,\"className\":\"relative z-0 h-[210px] w-auto -scale-x-100 mb-20 -ml-24\",\"style\":{\"filter\":\"grayscale(40%) brightness(1.02) contrast(1) opacity(0.95)\"}}]\n49:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-medium text-foreground\",\"children\":\"404: Page Not Found\"}]\n4a:[\"$\",\"div\",null,{\"className\":\"mb-2 text-left\",\"children\":[\"$\",\"$2b\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"$L2c\",null,{\"className\":\"h-7 w-32 mx-auto mb-4\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-3 gap-4 max-w-5xl mx-auto\",\"children\":[[\"$\",\"$L2c\",\"0\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"1\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"2\",{\"className\":\"h-[200px] w-full rounded-lg\"}]]}]]}],\"children\":\"$L68\"}]}]\n4b:[\"$\",\"div\",null,{\"className\":\"pb-8 text-center\",\"children\":[\"$\",\"p\",null,{\"className\":\"text-sm text-muted-foreground\",\"children\":[\"Feel that something is off?\",\" \",[\"$\",\"a\",null,{\"href\":\"mailto:support@smithery.ai\",\"className\":\"underline hover:text-foreground\",\"children\":\"Contact us\"}]]}]}]\n4c:[\"$\",\"$2b\",null,{\"children\":[\"$\",\"$L2e\",null,{}]}]\n4d:[\"$\",\"$L2f\",null,{}]\n4f:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.1}]\n50:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n51:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L"])</script><script>self.__next_f.push([1,"22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"#ff8c32\",\"stroke\":\"none\",\"opacity\":0.07}]\n52:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.02}]\n53:[\"$\",\"path\",null,{\"d\":\"M-28.28 -5.60L-28.15 -4.21L-27.74 -2.84L-27.07 -1.49L-26.13 -0.19L-24.94 1.07L-23.52 2.26L-21.86 3.37L-20.00 4.40L-17.94 5.33L-15.71 6.16L-13.33 6.87L-10.82 7.47L-8.21 7.93L-5.52 8.27L-2.77 8.47L0.00 8.54L2.77 8.47L5.52 8.27L8.21 7.93L10.82 7.47L13.33 6.87L15.71 6.16L17.94 5.33L20.00 4.40L21.86 3.37L23.52 2.26L24.94 1.07L26.13 -0.19L27.07 -1.49L27.74 -2.84L28.15 -4.21L28.28 -5.60L28.28 -0.00L28.15 1.39L27.74 2.76L27.07 4.11L26.13 5.41L24.94 6.67L23.52 7.86L21.86 8.97L20.00 10.00L17.94 10.93L15.71 11.76L13.33 12.47L10.82 13.07L8.21 13.53L5.52 13.87L2.77 14.07L0.00 14.14L-2.77 14.07L-5.52 13.87L-8.21 13.53L-10.82 13.07L-13.33 12.47L-15.71 11.76L-17.94 10.93L-20.00 10.00L-21.86 8.97L-23.52 7.86L-24.94 6.67L-26.13 5.41L-27.07 4.11L-27.74 2.76L-28.15 1.39L-28.28 0.00Z\"}]\n54:[\"$\",\"path\",null,{\"d\":\"M20.00 4.40L17.94 5.33L15.71 6.16L13.33 6.87L10.82 7.47L8.21 7.93L5.52 8.27L2.77 8.47L0.00 8.54L-2.77 8.47L-5.52 8.27L-8.21 7.93L-10.82 7.47L-13.33 6.87L-15.71 6.16L-17.94 5.33L-20.00 4.40L-21.86 3.37L-23.52 2.26L-24.94 1.07L-26.13 -0.19L-27.07 -1.49L-27.74 -2.84L-28.15 -4.21L-28.28 -5.60L-28.15 -6.99L-27.74 -8.36L-27.07 -9.71L-26.13 -11.01L-24.94 -12.27L-23.52 -13.46L-21.86 -14.57L-20.00 -15.60L-17.94 -16.53L-15.71 -17.36L-13.33 -18.07L-10.82 -18.67L-8.21 -19.13L-5.52 -19.47L-2.77 -19.67L-0.00 -19.74L2.77 -19.67L5.52 -19.47L8.21 -19.13L10.82 -18.67L13.33 -18.07L15.71 -17.36L17.94 -16.53L20.00 -15.60L21.86 -14.57L23.52 -13.46L24.94 -12.27L26.13 -11.01L27.07 -9.71L27.74 -8.36L28.15 -6.99L28.28 -5.60L28.15 -4.21L27.74 -2.84L27.07 -1.49L26.13 -0.19L24.94 1.07L23.52 2.26L21.86 3.37Z\"}]\n55:[\"$\",\"path\",null,{\"d\":\"M16.40 2.60L14.71 3.36L12.89 4.04L10.93 4.63L8.88 5.11L6.73 5.50L4.52 5.77L2.27 5.94L0.00 6.00L-2.27 5.94L-4.52 5.77L-6.73 5.50L-8.88 5.11L-10.93 4.63L-12.89 4.04L-14.71 3.36L-16.40 2.60L-17.93 1.76L-19.28 0.84L-20.45 -0.13L-21.43 -1.16L-22.19 -2.23L-22.75 -3.34L-23.08 -4.46L-23.19 -5.60L-23.08 -6.74L-22.75 -7.86L-22.19 -8.97L-21.43 -10.04L-20.45 -11.07L-19.28 -12.04L-17.93 -12.96L-16.40 -13.80L-14.71 -14.56L-12.89 -15.24L-10.93 -15.83L-8.88 -16.31L-6.73 -16.70L-4.52 -16.97L-2.27 -17.14L-0.00 -17.20L2.27 -17.14L4.52 -16.97L6.73 -16.70L8.88 -16.31L10.93 -15.83L12.89 -15.24L14.71 -14.56L16.40 -13.80L17.93 -12.96L19.28 -12.04L20.45 -11.07L21.43 -10.04L22.19 -8.97L22.75 -7.86L23.08 -6.74L23.19 -5.60L23.08 -4.46L22.75 -3.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\"}]\n56:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L1"])</script><script>self.__next_f.push([1,"2.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n57:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.13}]\n58:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"hsl(var(--popover))\",\"stroke\":\"none\"}]\n59:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.08}]\n5a:[\"$\",\"path\",null,{\"d\":\"M55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L19.63 1.36L19.34 1.24L19.02 1.16L18.69 1.13L18.33 1.14L17.96 1.19L17.58 1.29L17.19 1.42L16.80 1.60L16.41 1.82L16.02 2.07L15.64 2.35L15.27 2.67L14.91 3.02L14.58 3.39L14.26 3.78L13.97 4.19L13.71 4.61L13.47 5.04L13.27 5.48L13.10 5.92L12.97 6.35L12.88 6.78L12.82 7.20L12.80 7.60L12.82 7.98L12.88 8.34L12.97 8.68L13.10 8.98L13.27 9.25L13.47 9.49L13.71 9.68L13.97 9.84Z\"}]\n5b:[\"$\",\"path\",null,{\"d\":\"M58.40 22.40L58.01 22.62L57.62 22.87L57.24 23.15L56.87 23.47L56.51 23.82L56.18 24.19L55.86 24.58L55.57 24.99L55.31 25.41L55.07 25.84L54.87 26.28L54.70 26.72L54.57 27.15L54.48 27.58L54.42 28.00L54.40 28.40L54.42 28.78L54.48 29.14L54.57 29.48L54.70 29.78L54.87 30.05L55.07 30.29L55.31 30.48L55.57 30.64L55.86 30.76L56.18 30.84L56.51 30.87L56.87 30.86L57.24 30.81L57.62 30.71L58.01 30.58L58.40 30.40L58.79 30.18L59.18 29.93L59.56 29.65L59.93 29.33L60.29 28.98L60.62 28.61L60.94 28.22L61.23 27.81L61.49 27.39L61.73 26.96L61.93 26.52L62.10 26.08L62.23 25.65L62.32 25.22L62.38 24.80L62.40 "])</script><script>self.__next_f.push([1,"24.40L62.38 24.02L62.32 23.66L62.23 23.32L62.10 23.02L61.93 22.75L61.73 22.51L61.49 22.32L61.23 22.16L60.94 22.04L60.62 21.96L60.29 21.93L59.93 21.94L59.56 21.99L59.18 22.09L58.79 22.22Z\"}]\n5c:[\"$\",\"$L2a\",null,{\"src\":\"/mascot/mascot_angry_md_softshadow.svg\",\"alt\":\"Angry mascot\",\"width\":200,\"height\":200,\"className\":\"relative z-0 h-[210px] w-auto -scale-x-100 mb-20 -ml-24\",\"style\":{\"filter\":\"grayscale(40%) brightness(1.02) contrast(1) opacity(0.95)\"}}]\n5d:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-medium text-foreground\",\"children\":\"404: Page Not Found\"}]\n5e:[\"$\",\"div\",null,{\"className\":\"mb-2 text-left\",\"children\":[\"$\",\"$2b\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"$L2c\",null,{\"className\":\"h-7 w-32 mx-auto mb-4\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-3 gap-4 max-w-5xl mx-auto\",\"children\":[[\"$\",\"$L2c\",\"0\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"1\",{\"className\":\"h-[200px] w-full rounded-lg\"}],[\"$\",\"$L2c\",\"2\",{\"className\":\"h-[200px] w-full rounded-lg\"}]]}]]}],\"children\":\"$L69\"}]}]\n5f:[\"$\",\"div\",null,{\"className\":\"pb-8 text-center\",\"children\":[\"$\",\"p\",null,{\"className\":\"text-sm text-muted-foreground\",\"children\":[\"Feel that something is off?\",\" \",[\"$\",\"a\",null,{\"href\":\"mailto:support@smithery.ai\",\"className\":\"underline hover:text-foreground\",\"children\":\"Contact us\"}]]}]}]\n"])</script><script>self.__next_f.push([1,"65:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"2\",{\"name\":\"theme-color\",\"content\":\"#FF5601\"}]]\n"])</script><script>self.__next_f.push([1,"6a:I[352240,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ec0f13b5614fb9ee.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"ServerListItem\"]\n"])</script><script>self.__next_f.push([1,"2d:[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"h3\",null,{\"className\":\"text-lg text-muted-foreground mb-4\",\"children\":\"These ones actually exist\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4\",\"children\":[[\"$\",\"$L6a\",\"exa\",{\"server\":{\"id\":\"b11dd2a9-0896-4133-a57f-2b654f9d80d4\",\"qualifiedName\":\"exa\",\"namespace\":\"exa\",\"slug\":\"\",\"displayName\":\"Exa Search\",\"description\":\"Fast, intelligent web search and web crawling. Get fresh information about libraries, APIs, and SDKs.\",\"iconUrl\":\"https://api.smithery.ai/servers/exa/icon\",\"verified\":true,\"useCount\":39944,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L6a\",\"gmail\",{\"server\":{\"id\":\"69919e2f-2b9a-4c17-9867-e46bab4c3b28\",\"qualifiedName\":\"gmail\",\"namespace\":\"gmail\",\"slug\":\"\",\"displayName\":\"Gmail\",\"description\":\"Manage Gmail end-to-end: send, draft, reply, forward, and bulk-modify or delete messages and threads. Organize your inbox with labels, archiving, and trashing, and retrieve messages, attachments, and profile details on demand. Access and search contacts to autofill recipients and keep people data in sync.\",\"iconUrl\":\"https://api.smithery.ai/servers/gmail/icon\",\"verified\":true,\"useCount\":39205,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L6a\",\"clay-inc/clay-mcp\",{\"server\":{\"id\":\"298dbc34-1d40-4fd1-ae94-d4a6eda8b6c6\",\"qualifiedName\":\"clay-inc/clay-mcp\",\"namespace\":\"clay-inc\",\"slug\":\"clay-mcp\",\"displayName\":\"Mesh MCP\",\"description\":\"Access your network seamlessly with a simple and efficient server. Leverage a variety of tools to enhance your applications and workflows. Start integrating with your existing systems effortlessly.\",\"iconUrl\":\"https://api.smithery.ai/servers/clay-inc/clay-mcp/icon\",\"verified\":true,\"useCount\":12943,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-14T14:57:09.896Z\",\"homepage\":\"https://me.sh\",\"bySmithery\":false,\"owner\":\"org_01KNB5KXFW378YYK1QYG60JEGJ\",\"score\":null}}]]}]]}]\n"])</script><script>self.__next_f.push([1,"68:[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"h3\",null,{\"className\":\"text-lg text-muted-foreground mb-4\",\"children\":\"These ones actually exist\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4\",\"children\":[[\"$\",\"$L6a\",\"exa\",{\"server\":{\"id\":\"b11dd2a9-0896-4133-a57f-2b654f9d80d4\",\"qualifiedName\":\"exa\",\"namespace\":\"exa\",\"slug\":\"\",\"displayName\":\"Exa Search\",\"description\":\"Fast, intelligent web search and web crawling. Get fresh information about libraries, APIs, and SDKs.\",\"iconUrl\":\"https://api.smithery.ai/servers/exa/icon\",\"verified\":true,\"useCount\":39944,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L6a\",\"gmail\",{\"server\":{\"id\":\"69919e2f-2b9a-4c17-9867-e46bab4c3b28\",\"qualifiedName\":\"gmail\",\"namespace\":\"gmail\",\"slug\":\"\",\"displayName\":\"Gmail\",\"description\":\"Manage Gmail end-to-end: send, draft, reply, forward, and bulk-modify or delete messages and threads. Organize your inbox with labels, archiving, and trashing, and retrieve messages, attachments, and profile details on demand. Access and search contacts to autofill recipients and keep people data in sync.\",\"iconUrl\":\"https://api.smithery.ai/servers/gmail/icon\",\"verified\":true,\"useCount\":39205,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L6a\",\"clay-inc/clay-mcp\",{\"server\":{\"id\":\"298dbc34-1d40-4fd1-ae94-d4a6eda8b6c6\",\"qualifiedName\":\"clay-inc/clay-mcp\",\"namespace\":\"clay-inc\",\"slug\":\"clay-mcp\",\"displayName\":\"Mesh MCP\",\"description\":\"Access your network seamlessly with a simple and efficient server. Leverage a variety of tools to enhance your applications and workflows. Start integrating with your existing systems effortlessly.\",\"iconUrl\":\"https://api.smithery.ai/servers/clay-inc/clay-mcp/icon\",\"verified\":true,\"useCount\":12943,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-14T14:57:09.896Z\",\"homepage\":\"https://me.sh\",\"bySmithery\":false,\"owner\":\"org_01KNB5KXFW378YYK1QYG60JEGJ\",\"score\":null}}]]}]]}]\n"])</script><script>self.__next_f.push([1,"69:[\"$\",\"div\",null,{\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"text-center\",\"children\":[\"$\",\"h3\",null,{\"className\":\"text-lg text-muted-foreground mb-4\",\"children\":\"These ones actually exist\"}]}],[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4\",\"children\":[[\"$\",\"$L6a\",\"exa\",{\"server\":{\"id\":\"b11dd2a9-0896-4133-a57f-2b654f9d80d4\",\"qualifiedName\":\"exa\",\"namespace\":\"exa\",\"slug\":\"\",\"displayName\":\"Exa Search\",\"description\":\"Fast, intelligent web search and web crawling. Get fresh information about libraries, APIs, and SDKs.\",\"iconUrl\":\"https://api.smithery.ai/servers/exa/icon\",\"verified\":true,\"useCount\":39944,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L6a\",\"gmail\",{\"server\":{\"id\":\"69919e2f-2b9a-4c17-9867-e46bab4c3b28\",\"qualifiedName\":\"gmail\",\"namespace\":\"gmail\",\"slug\":\"\",\"displayName\":\"Gmail\",\"description\":\"Manage Gmail end-to-end: send, draft, reply, forward, and bulk-modify or delete messages and threads. Organize your inbox with labels, archiving, and trashing, and retrieve messages, attachments, and profile details on demand. Access and search contacts to autofill recipients and keep people data in sync.\",\"iconUrl\":\"https://api.smithery.ai/servers/gmail/icon\",\"verified\":true,\"useCount\":39205,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L6a\",\"clay-inc/clay-mcp\",{\"server\":{\"id\":\"298dbc34-1d40-4fd1-ae94-d4a6eda8b6c6\",\"qualifiedName\":\"clay-inc/clay-mcp\",\"namespace\":\"clay-inc\",\"slug\":\"clay-mcp\",\"displayName\":\"Mesh MCP\",\"description\":\"Access your network seamlessly with a simple and efficient server. Leverage a variety of tools to enhance your applications and workflows. Start integrating with your existing systems effortlessly.\",\"iconUrl\":\"https://api.smithery.ai/servers/clay-inc/clay-mcp/icon\",\"verified\":true,\"useCount\":12943,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-14T14:57:09.896Z\",\"homepage\":\"https://me.sh\",\"bySmithery\":false,\"owner\":\"org_01KNB5KXFW378YYK1QYG60JEGJ\",\"score\":null}}]]}]]}]\n"])</script><script>self.__next_f.push([1,"6b:I[231936,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillPageTracker\"]\n"])</script><script>self.__next_f.push([1,"6c:I[56920,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"HoverCopy\"]\n"])</script><script>self.__next_f.push([1,"6d:I[451059,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillFileProvider\"]\n"])</script><script>self.__next_f.push([1,"6e:I[363511,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillTabs\"]\n"])</script><script>self.__next_f.push([1,"76:I[899701,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"IconMark\"]\n"])</script><script>self.__next_f.push([1,"61:[[\"$\",\"$L6b\",null,{\"skillDisplayName\":\"nblm\",\"skillId\":\"50b7bcc5-b8d2-4689-93f1-aea88088915f\",\"serverCount\":0}],[\"$\",\"div\",null,{\"className\":\"space-y-6 pt-4\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-start justify-between gap-4\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex items-center gap-3 min-w-0\",\"children\":[[\"$\",\"$L2a\",null,{\"src\":\"https://github.com/magicseek.png\",\"alt\":\"magicseek\",\"width\":40,\"height\":40,\"className\":\"rounded-full h-10 w-10 shrink-0\",\"unoptimized\":true}],[\"$\",\"div\",null,{\"className\":\"min-w-0\",\"children\":[[\"$\",\"h1\",null,{\"className\":\"text-2xl font-bold leading-tight truncate\",\"children\":\"nblm\"}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-1\",\"children\":[[\"$\",\"$L6c\",null,{\"text\":\"magicseek/nblm\",\"className\":\"text-sm text-muted-foreground hover:text-foreground\",\"trackingEvent\":\"Qualified Name Copied\",\"trackingProps\":{\"serverQualifiedName\":\"magicseek/nblm\",\"source\":\"skill-header\"},\"children\":\"magicseek/nblm\"}],false]}]]}]]}]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 mt-4 flex-wrap\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-1 bg-muted/50 rounded-full px-2 py-0.5 text-xs font-medium\",\"children\":[\"$\",\"span\",null,{\"className\":\"text-muted-foreground\",\"children\":\"Data \u0026 Analytics\"}]}],[\"$\",\"div\",null,{\"className\":\"group/stars flex items-center gap-1 bg-muted/50 rounded-full px-2 py-0.5 text-xs font-medium\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-star h-3 w-3 text-muted-foreground group-hover/stars:text-yellow-500 group-hover/stars:fill-yellow-500 transition-colors\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"r04s7s\",{\"d\":\"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z\"}],\"$undefined\"]}],[\"$\",\"span\",null,{\"className\":\"text-muted-foreground\",\"children\":\"19\"}]]}],false]}]]}],[\"$\",\"$L6d\",null,{\"children\":[\"$\",\"$L6e\",null,{\"namespace\":\"magicseek\",\"slug\":\"nblm\",\"ownerId\":\"org_01KNEE1P5FRBD227N1AR4HAVP9\",\"children\":[\"$\",\"div\",null,{\"className\":\"grid grid-cols-1 md:[grid-template-columns:7fr_5fr] gap-6 w-full\",\"children\":[[\"$\",\"div\",null,{\"className\":\"min-w-0 space-y-16 pb-16\",\"children\":[\"$\",\"section\",null,{\"id\":\"section-overview\",\"children\":[\"$\",\"$2b\",null,{\"fallback\":[\"$\",\"section\",null,{\"className\":\"min-w-0 space-y-6 overflow-hidden\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-semibold flex items-center gap-2 mb-4\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-info h-5 w-5\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"circle\",\"1mglay\",{\"cx\":\"12\",\"cy\":\"12\",\"r\":\"10\"}],[\"$\",\"path\",\"1dtifu\",{\"d\":\"M12 16v-4\"}],[\"$\",\"path\",\"e9boi3\",{\"d\":\"M12 8h.01\"}],\"$undefined\"]}],\"About\"]}],[\"$\",\"div\",null,{\"className\":\"space-y-2\",\"children\":[[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-full\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-5/6\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-3/4\"}]]}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-semibold flex items-center gap-2 mb-4\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-sticky-note h-5 w-5\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"qazsjp\",{\"d\":\"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z\"}],[\"$\",\"path\",\"40519r\",{\"d\":\"M15 3v4a2 2 0 0 0 2 2h4\"}],\"$undefined\"]}],\"SKILL.md\"]}],[\"$\",\"div\",null,{\"className\":\"rounded-lg border border-border p-6 h-[600px] overflow-y-auto dark-scrollbar\",\"children\":[\"$\",\"div\",null,{\"className\":\"space-y-2\",\"children\":[[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-full\"}],\"$L6f\",\"$L70\",\"$L71\",\"$L72\",\"$L73\"]}]}]]}]]}],\"children\":\"$L74\"}]}]}],\"$L75\"]}]}]}]]}]]\n"])</script><script>self.__next_f.push([1,"67:[[\"$\",\"title\",\"0\",{\"children\":\"nblm - Skill | Smithery\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"manifest\",\"href\":\"/manifest.webmanifest\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"meta\",\"3\",{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:title\",\"content\":\"nblm - Skill\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:description\",\"content\":\"Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:url\",\"content\":\"https://smithery.ai/skills/magicseek/nblm\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image:alt\",\"content\":\"Smithery Skill\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image\",\"content\":\"https://smithery.ai/skills/magicseek/nblm/opengraph-image-ydg9t?7b22a764c4dbb9ad\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:title\",\"content\":\"nblm - Skill\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:description\",\"content\":\"Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:image:alt\",\"content\":\"Smithery Skill\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image\",\"content\":\"https://smithery.ai/skills/magicseek/nblm/opengraph-image-ydg9t?7b22a764c4dbb9ad\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"20\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"link\",\"21\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"22\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\"}],[\"$\",\"$L76\",\"23\",{}]]\n"])</script><script>self.__next_f.push([1,"63:null\n"])</script><script>self.__next_f.push([1,"77:I[564773,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillInstaller\"]\n"])</script><script>self.__next_f.push([1,"6f:[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-5/6\"}]\n70:[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4/6\"}]\n71:[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-full\"}]\n72:[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-3/4\"}]\n73:[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-5/6\"}]\n"])</script><script>self.__next_f.push([1,"75:[\"$\",\"aside\",null,{\"className\":\"min-w-0 overflow-visible\",\"children\":[[\"$\",\"div\",null,{\"className\":\"mb-4 shrink-0\",\"children\":[\"$\",\"h2\",null,{\"className\":\"text-xl font-semibold flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-link h-5 w-5\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"1cjeqo\",{\"d\":\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"}],[\"$\",\"path\",\"19qd67\",{\"d\":\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"}],\"$undefined\"]}],\"Install\"]}]}],[\"$\",\"div\",null,{\"className\":\"flex flex-col space-y-4\",\"children\":[\"$\",\"$L77\",null,{\"namespace\":\"magicseek\",\"slug\":\"nblm\",\"skillId\":\"50b7bcc5-b8d2-4689-93f1-aea88088915f\",\"skillDisplayName\":\"nblm\",\"highlightedAgentCommands\":{\"claude-code\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e claude-code\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"cursor\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e cursor\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"codex\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e codex\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"amp\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e amp\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"github-copilot\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e github-copilot\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"gemini-cli\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e gemini-cli\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"kilo\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e kilo\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"junie\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e junie\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"replit\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e replit\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"windsurf\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e windsurf\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"cline\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e cline\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"continue\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e continue\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"opencode\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e opencode\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"openhands\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e openhands\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"roo\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e roo\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"augment\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e augment\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"goose\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e goose\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"trae\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e trae\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"zencoder\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e zencoder\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"antigravity\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e antigravity\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\",\"openclaw\":\"\u003cpre class=\\\"shiki shiki-themes gruvbox-light-hard gruvbox-dark-hard\\\" style=\\\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#f9f5d7;--shiki-dark-bg:#1d2021\\\" tabindex=\\\"0\\\"\u003e\u003ccode\u003e\u003cspan class=\\\"line\\\"\u003e\u003cspan style=\\\"--shiki-light:#B57614;--shiki-dark:#FABD2F\\\"\u003enpx\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e -y\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e skills\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e add\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e https://smithery.ai/skills/magicseek/nblm\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\\\"\u003e --agent\u003c/span\u003e\u003cspan style=\\\"--shiki-light:#79740E;--shiki-dark:#B8BB26\\\"\u003e openclaw\u003c/span\u003e\u003c/span\u003e\u003c/code\u003e\u003c/pre\u003e\"}}]}],\"$L78\",\"$L79\"]}]\n"])</script><script>self.__next_f.push([1,"78:[\"$\",\"$2b\",null,{\"fallback\":null,\"children\":\"$L7a\"}]\n79:[\"$\",\"$2b\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"mt-6 text-sm\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 text-muted-foreground font-medium pb-1\",\"children\":[[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-10\"}]]}],[\"$\",\"div\",null,{\"className\":\"space-y-1 mt-1\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 py-0.5\",\"children\":[[\"$\",\"span\",null,{\"className\":\"text-border font-mono text-xs w-4\",\"children\":\"├─\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-20\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 py-0.5\",\"children\":[[\"$\",\"span\",null,{\"className\":\"text-border font-mono text-xs w-4\",\"children\":\"├─\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-16\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 py-0.5\",\"children\":[[\"$\",\"span\",null,{\"className\":\"text-border font-mono text-xs w-4\",\"children\":\"└─\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-24\"}]]}]]}]]}],\"children\":\"$L7b\"}]\n"])</script><script>self.__next_f.push([1,"7c:I[622811,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillLeftColumnClient\"]\n"])</script><script>self.__next_f.push([1,"7d:T5cb5,"])</script><script>self.__next_f.push([1,"# NotebookLM Quick Commands\n\nQuery Google NotebookLM for source-grounded, citation-backed answers.\n\n## Environment\n\nAll dependencies and authentication are handled automatically by `run.py`:\n- First run creates `.venv` and installs Python/Node.js dependencies\n- If Google auth is missing or expired, a browser window opens automatically\n- No manual pre-flight steps required\n\n---\n\n## Usage\n\n`/nblm \u003ccommand\u003e [args]`\n\n## Commands\n\n### Notebook Management\n| Command | Description |\n|---------|-------------|\n| `login` | Authenticate with Google |\n| `status` | Show auth and library status |\n| `accounts` | List all Google accounts |\n| `accounts add` | Add a new Google account |\n| `accounts switch \u003cid\u003e` | Switch active account (by index or email) |\n| `accounts remove \u003cid\u003e` | Remove a Google account |\n| `accounts use \u003cid\u003e` | Set agent-specific active account (OpenClaw isolation) |\n| `accounts clear` | Clear agent-specific account override |\n| `local` | List notebooks in local library |\n| `remote` | List all notebooks from NotebookLM API |\n| `create \u003cname\u003e` | Create a new notebook |\n| `delete [--id ID]` | Delete a notebook |\n| `rename \u003cname\u003e [--id ID]` | Rename a notebook |\n| `summary [--id ID]` | Get AI-generated summary |\n| `describe [--id ID]` | Get description and suggested topics |\n| `add \u003curl-or-id\u003e` | Add notebook to local library (auto-detects URL vs notebook ID) |\n| `activate \u003cid\u003e` | Set active notebook |\n\n### Source Management\n| Command | Description |\n|---------|-------------|\n| `sources [--id ID]` | List sources in notebook |\n| `upload \u003cfile\u003e` | Upload a single file |\n| `upload \u003cfolder\u003e` | Sync a folder of files to NotebookLM |\n| `upload-zlib \u003curl\u003e` | Download from Z-Library and upload |\n| `upload-url \u003curl\u003e` | Add URL as source |\n| `upload-youtube \u003curl\u003e` | Add YouTube video as source |\n| `upload-text \u003ctitle\u003e [--content TEXT]` | Add text as source |\n| `source-text \u003csource-id\u003e` | Get full indexed text |\n| `source-guide \u003csource-id\u003e` | Get AI summary and keywords |\n| `source-rename \u003csource-id\u003e \u003cname\u003e` | Rename a source |\n| `source-refresh \u003csource-id\u003e` | Re-fetch URL content |\n| `source-delete \u003csource-id\u003e` | Delete a source |\n\n**Upload options:**\n- `--use-active` - Upload to the currently active notebook\n- `--create-new` - Create a new notebook named after the file/folder\n- `--notebook-id \u003cid\u003e` - Upload to a specific notebook\n- `--dry-run` - Show sync plan without executing (folder sync)\n- `--rebuild` - Force rebuild tracking file (folder sync)\n\n**Important:** When user runs upload without specifying a target, ASK them first:\n\u003e \"Would you like to upload to the active notebook, or create a new notebook?\"\nThen pass the appropriate flag (`--use-active` or `--create-new`).\n\n### Chat \u0026 Audio/Media\n| Command | Description |\n|---------|-------------|\n| `ask \u003cquestion\u003e` | Query NotebookLM |\n| `podcast [--instructions TEXT]` | Generate audio podcast |\n| `podcast-status \u003ctask-id\u003e` | Check podcast generation status |\n| `podcast-download [output-path]` | Download latest podcast |\n| `briefing [--instructions TEXT]` | Generate brief audio summary |\n| `debate [--instructions TEXT]` | Generate debate-style audio |\n| `slides [--instructions TEXT]` | Generate slide deck |\n| `slides-download [output-path]` | Download slide deck as PDF |\n| `infographic [--instructions TEXT]` | Generate infographic |\n| `infographic-download [output-path]` | Download infographic |\n| `media-list [--type TYPE]` | List generated media (audio/video/slides/infographic) |\n| `media-delete \u003cid\u003e` | Delete a generated media item |\n\n## Command Routing\n\nBased on `$ARGUMENTS`, execute the appropriate command:\n\n$IF($ARGUMENTS,\n Parse the command from: \"$ARGUMENTS\"\n\n **login** → `python scripts/run.py auth_manager.py setup --service google`\n\n **accounts** → `python scripts/run.py auth_manager.py accounts list`\n\n **accounts add** → `python scripts/run.py auth_manager.py accounts add`\n\n **accounts switch \u003cid\u003e** → `python scripts/run.py auth_manager.py accounts switch \"\u003cid\u003e\"`\n\n **accounts remove \u003cid\u003e** → `python scripts/run.py auth_manager.py accounts remove \"\u003cid\u003e\"`\n\n **accounts use \u003cid\u003e** → `python scripts/run.py auth_manager.py accounts use \"\u003cid\u003e\"`\n\n **accounts clear** → `python scripts/run.py auth_manager.py accounts clear`\n\n **status** → Run both:\n - `python scripts/run.py auth_manager.py status`\n - `python scripts/run.py notebook_manager.py list`\n\n **local** → `python scripts/run.py notebook_manager.py list`\n\n **remote** → `python scripts/run.py nblm_cli.py notebooks`\n\n **create \u003cname\u003e** → `python scripts/run.py nblm_cli.py create \"\u003cname\u003e\"`\n\n **delete [--id ID]** → `python scripts/run.py nblm_cli.py delete \u003cargs\u003e`\n\n **rename \u003cname\u003e [--id ID]** → `python scripts/run.py nblm_cli.py rename \"\u003cname\u003e\" \u003cargs\u003e`\n\n **summary [--id ID]** → `python scripts/run.py nblm_cli.py summary \u003cargs\u003e`\n\n **describe [--id ID]** → `python scripts/run.py nblm_cli.py describe \u003cargs\u003e`\n\n **add \u003curl-or-id\u003e** → Smart add workflow (auto-detects URL vs notebook ID)\n\n **activate \u003cid\u003e** → `python scripts/run.py notebook_manager.py activate --id \"\u003cid\u003e\"`\n\n **sources [--id ID]** → `python scripts/run.py nblm_cli.py sources \u003cargs\u003e`\n\n **upload \u003cfile\u003e** → First ASK user: \"Upload to active notebook or create new?\" Then:\n - Active: `python scripts/run.py source_manager.py add --file \"\u003cfile\u003e\" --use-active`\n - New: `python scripts/run.py source_manager.py add --file \"\u003cfile\u003e\" --create-new`\n\n **upload \u003cfolder\u003e** → Sync a folder:\n - First ASK user: \"Sync to active notebook, create new, or specify notebook?\"\n - Active: `python scripts/run.py source_manager.py sync \"\u003cfolder\u003e\" --use-active`\n - New: `python scripts/run.py source_manager.py sync \"\u003cfolder\u003e\" --create-new`\n - Specific: `python scripts/run.py source_manager.py sync \"\u003cfolder\u003e\" --notebook-id ID`\n - Dry-run: `python scripts/run.py source_manager.py sync \"\u003cfolder\u003e\" --dry-run`\n - Rebuild: `python scripts/run.py source_manager.py sync \"\u003cfolder\u003e\" --rebuild`\n\n **upload-zlib \u003curl\u003e** → First ASK user: \"Upload to active notebook or create new?\" Then:\n - Active: `python scripts/run.py source_manager.py add --url \"\u003curl\u003e\" --use-active`\n - New: `python scripts/run.py source_manager.py add --url \"\u003curl\u003e\" --create-new`\n\n **upload-url \u003curl\u003e** → `python scripts/run.py nblm_cli.py upload-url \"\u003curl\u003e\"`\n\n **upload-youtube \u003curl\u003e** → `python scripts/run.py nblm_cli.py upload-youtube \"\u003curl\u003e\"`\n\n **upload-text \u003ctitle\u003e** → `python scripts/run.py nblm_cli.py upload-text \"\u003ctitle\u003e\" \u003cargs\u003e`\n\n **source-text \u003cid\u003e** → `python scripts/run.py nblm_cli.py source-text \"\u003cid\u003e\"`\n\n **source-guide \u003cid\u003e** → `python scripts/run.py nblm_cli.py source-guide \"\u003cid\u003e\"`\n\n **source-rename \u003cid\u003e \u003cname\u003e** → `python scripts/run.py nblm_cli.py source-rename \"\u003cid\u003e\" \"\u003cname\u003e\"`\n\n **source-refresh \u003cid\u003e** → `python scripts/run.py nblm_cli.py source-refresh \"\u003cid\u003e\"`\n\n **source-delete \u003cid\u003e** → `python scripts/run.py nblm_cli.py source-delete \"\u003cid\u003e\"`\n\n **ask \u003cquestion\u003e** → `python scripts/run.py nblm_cli.py ask \"\u003cquestion\u003e\"`\n\n **podcast** → `python scripts/run.py artifact_manager.py generate --format DEEP_DIVE \u003cargs\u003e`\n\n **podcast-status \u003ctask-id\u003e** → `python scripts/run.py artifact_manager.py status --task-id \"\u003ctask-id\u003e\"`\n\n **podcast-download [output-path]** → `python scripts/run.py artifact_manager.py download \"\u003coutput-path\u003e\"`\n\n **briefing** → `python scripts/run.py artifact_manager.py generate --format BRIEF \u003cargs\u003e`\n\n **debate** → `python scripts/run.py artifact_manager.py generate --format DEBATE \u003cargs\u003e`\n\n **slides** → `python scripts/run.py artifact_manager.py generate-slides \u003cargs\u003e`\n\n **slides-download [output-path]** → `python scripts/run.py artifact_manager.py download \"\u003coutput-path\u003e\" --type slide-deck`\n\n **infographic** → `python scripts/run.py artifact_manager.py generate-infographic \u003cargs\u003e`\n\n **infographic-download [output-path]** → `python scripts/run.py artifact_manager.py download \"\u003coutput-path\u003e\" --type infographic`\n\n **media-list [--type TYPE]** → `python scripts/run.py artifact_manager.py list \u003cargs\u003e`\n\n **media-delete \u003cid\u003e** → `python scripts/run.py artifact_manager.py delete \"\u003cid\u003e\"`\n\n If command not recognized, show usage help.,\n\n Show available commands with `/nblm` (no arguments)\n)\n\n## Podcast Options\n\n```\n/nblm podcast --length DEFAULT --wait --output ./podcast.mp3\n/nblm podcast --instructions \"Focus on the key findings\"\n/nblm briefing --wait --output ./summary.mp3\n/nblm debate --instructions \"Compare the two approaches\"\n```\n\n| Option | Values |\n|--------|--------|\n| `--length` | `SHORT`, `DEFAULT`, `LONG` |\n| `--instructions` | Custom instructions for the content |\n| `--wait` | Wait for generation to complete |\n| `--output` | Download path (requires `--wait`) |\n\n## Slide Deck Options\n\n```\n/nblm slides --format DETAILED_DECK --wait --output ./presentation.pdf\n/nblm slides --instructions \"Focus on key diagrams\" --format PRESENTER_SLIDES\n```\n\n| Option | Values |\n|--------|--------|\n| `--format` | `DETAILED_DECK`, `PRESENTER_SLIDES` |\n| `--length` | `SHORT`, `DEFAULT` |\n| `--instructions` | Custom instructions for the content |\n| `--wait` | Wait for generation to complete |\n| `--output` | Download path (requires `--wait`) |\n\n## Infographic Options\n\n```\n/nblm infographic --orientation LANDSCAPE --wait --output ./visual.png\n/nblm infographic --instructions \"Highlight comparison\" --detail-level DETAILED\n```\n\n| Option | Values |\n|--------|--------|\n| `--orientation` | `LANDSCAPE`, `PORTRAIT`, `SQUARE` |\n| `--detail-level` | `CONCISE`, `STANDARD`, `DETAILED` |\n| `--instructions` | Custom instructions for the content |\n| `--wait` | Wait for generation to complete |\n| `--output` | Download path (requires `--wait`) |\n\n## Media Generation\n\n| Command | Description | Output |\n|---------|-------------|--------|\n| `/nblm podcast` | Deep-dive audio discussion | MP3 |\n| `/nblm briefing` | Brief audio summary | MP3 |\n| `/nblm debate` | Debate-style audio | MP3 |\n| `/nblm slides` | Slide deck presentation | PDF |\n| `/nblm infographic` | Visual infographic | PNG |\n\n### Examples\n```\n/nblm podcast --wait --output ./deep-dive.mp3\n/nblm briefing --instructions \"Focus on chapter 3\" --wait\n/nblm debate --length LONG --wait --output ./debate.mp3\n/nblm slides --instructions \"Include key diagrams\" --format DETAILED_DECK --wait --output ./presentation.pdf\n/nblm infographic --orientation LANDSCAPE --detail-level DETAILED --wait --output ./summary.png\n```\n\n### Download \u0026 Manage\n```\n/nblm podcast-download ./my-podcast.mp3\n/nblm slides-download ./presentation.pdf\n/nblm infographic-download ./visual.png\n/nblm media-list # List all generated media\n/nblm media-list --type audio # List only audio\n/nblm media-delete \u003cid\u003e # Delete a media item\n```\n\n---\n\n# Extended Documentation\n\n## When to Use This Skill\n\nTrigger when user:\n- Mentions NotebookLM explicitly\n- Shares NotebookLM URL (`https://notebooklm.google.com/notebook/...`)\n- Asks to query their notebooks/documentation\n- Wants to add documentation to NotebookLM library\n- Uses phrases like \"ask my NotebookLM\", \"check my docs\", \"query my notebook\"\n\n## ⚠️ CRITICAL: Add Command - Smart Discovery\n\nThe add command now **automatically discovers metadata** from the notebook:\n\n```bash\n# Smart Add (auto-discovers name, description, topics)\npython scripts/run.py notebook_manager.py add \u003cnotebook-id-or-url\u003e\n\n# With optional overrides\npython scripts/run.py notebook_manager.py add \u003cid\u003e --name \"Custom Name\" --topics \"custom,topics\"\n```\n\n**What Smart Add does:**\n1. Fetches notebook title from NotebookLM API\n2. Queries the notebook content to generate description and topics\n3. Adds to local library with discovered metadata\n\n**Supported input formats:**\n- Notebook ID: `5fd9f36b-8000-401d-a7a0-7aa3f7832644`\n- Full URL: `https://notebooklm.google.com/notebook/5fd9f36b-8000-401d-a7a0-7aa3f7832644`\n\nNEVER manually specify `--name`, `--description`, or `--topics` unless the user explicitly provides them.\n\n## Critical: Always Use run.py Wrapper\n\n**NEVER call scripts directly. ALWAYS use `python scripts/run.py [script]`:**\n\n```bash\n# ✅ CORRECT - Always use run.py:\npython scripts/run.py auth_manager.py status\npython scripts/run.py notebook_manager.py list\npython scripts/run.py ask_question.py --question \"...\"\n\n# ❌ WRONG - Never call directly:\npython scripts/auth_manager.py status # Fails without venv!\n```\n\nThe `run.py` wrapper automatically:\n1. Creates `.venv` if needed\n2. Installs all dependencies\n3. Activates environment\n4. Executes script properly\n\n## Core Workflow\n\n### Step 1: Check Authentication Status\n```bash\npython scripts/run.py auth_manager.py status\n```\n\nIf not authenticated, proceed to setup.\n\n### Step 2: Authenticate (One-Time Setup)\n```bash\n# Browser MUST be visible for manual Google login\npython scripts/run.py auth_manager.py setup\n```\n\n**Important:**\n- Browser is VISIBLE for authentication\n- Browser window opens automatically\n- User must manually log in to Google\n- Tell user: \"A browser window will open for Google login\"\n\n### Step 3: Manage Notebook Library\n\n```bash\n# List all notebooks\npython scripts/run.py notebook_manager.py list\n\n# BEFORE ADDING: Ask user for metadata if unknown!\n# \"What does this notebook contain?\"\n# \"What topics should I tag it with?\"\n\n# Add notebook to library (ALL parameters are REQUIRED!)\npython scripts/run.py notebook_manager.py add \\\n --url \"https://notebooklm.google.com/notebook/...\" \\\n --name \"Descriptive Name\" \\\n --description \"What this notebook contains\" \\ # REQUIRED - ASK USER IF UNKNOWN!\n --topics \"topic1,topic2,topic3\" # REQUIRED - ASK USER IF UNKNOWN!\n\n# Search notebooks by topic\npython scripts/run.py notebook_manager.py search --query \"keyword\"\n\n# Set active notebook\npython scripts/run.py notebook_manager.py activate --id notebook-id\n\n# Remove notebook\npython scripts/run.py notebook_manager.py remove --id notebook-id\n```\n\n### Quick Workflow\n1. Check library: `python scripts/run.py notebook_manager.py list`\n2. Ask question: `python scripts/run.py ask_question.py --question \"...\" --notebook-id ID`\n\n### Step 4: Ask Questions\n\n```bash\n# Basic query (uses active notebook if set)\npython scripts/run.py ask_question.py --question \"Your question here\"\n\n# Query specific notebook\npython scripts/run.py ask_question.py --question \"...\" --notebook-id notebook-id\n\n# Query with notebook URL directly\npython scripts/run.py ask_question.py --question \"...\" --notebook-url \"https://...\"\n\n# Show browser for debugging\npython scripts/run.py ask_question.py --question \"...\" --show-browser\n```\n\n## Follow-Up Mechanism (CRITICAL)\n\nEvery NotebookLM answer ends with: **\"EXTREMELY IMPORTANT: Is that ALL you need to know?\"**\n\n**Required Claude Behavior:**\n1. **STOP** - Do not immediately respond to user\n2. **ANALYZE** - Compare answer to user's original request\n3. **IDENTIFY GAPS** - Determine if more information needed\n4. **ASK FOLLOW-UP** - If gaps exist, immediately ask:\n ```bash\n python scripts/run.py ask_question.py --question \"Follow-up with context...\"\n ```\n5. **REPEAT** - Continue until information is complete\n6. **SYNTHESIZE** - Combine all answers before responding to user\n\n## Z-Library Integration\n\n### Triggers\n- User provides Z-Library URL (zlib.li, z-lib.org, zh.zlib.li)\n- User says \"download this book to NotebookLM\"\n- User says \"add this book from Z-Library\"\n\n### Setup (One-Time)\n```bash\n# Authenticate with Z-Library\npython scripts/run.py auth_manager.py setup --service zlibrary\n```\n\n### Commands\n```bash\n# Add book from Z-Library\npython scripts/run.py source_manager.py add --url \"https://zh.zlib.li/book/...\"\n\n# Check Z-Library auth status\npython scripts/run.py auth_manager.py status --service zlibrary\n```\n\n## Script Reference\n\n### Authentication Management (`auth_manager.py`)\n```bash\npython scripts/run.py auth_manager.py setup # Default: Google\npython scripts/run.py auth_manager.py setup --service google\npython scripts/run.py auth_manager.py setup --service zlibrary\npython scripts/run.py auth_manager.py status # Show all services\npython scripts/run.py auth_manager.py status --service zlibrary\npython scripts/run.py auth_manager.py clear --service zlibrary # Clear auth\n\n# Multi-Account Management (Google)\npython scripts/run.py auth_manager.py accounts list # List all accounts\npython scripts/run.py auth_manager.py accounts add # Add new account\npython scripts/run.py auth_manager.py accounts switch 1 # Switch by index\npython scripts/run.py auth_manager.py accounts switch user@gmail.com # Switch by email\npython scripts/run.py auth_manager.py accounts remove 2 # Remove account\n```\n\n### Notebook Management (`notebook_manager.py`)\n```bash\npython scripts/run.py notebook_manager.py add --url URL --name NAME --description DESC --topics TOPICS\n# OR use notebook ID directly:\npython scripts/run.py notebook_manager.py add --notebook-id ID --name NAME --description DESC --topics TOPICS\npython scripts/run.py notebook_manager.py list\npython scripts/run.py notebook_manager.py search --query QUERY\npython scripts/run.py notebook_manager.py activate --id ID\npython scripts/run.py notebook_manager.py remove --id ID\npython scripts/run.py notebook_manager.py stats\n```\n\n### Question Interface (`ask_question.py`)\n```bash\npython scripts/run.py ask_question.py --question \"...\" [--notebook-id ID] [--notebook-url URL] [--show-browser]\n```\n\n### Source Manager (`source_manager.py`)\n```bash\n# Upload to active notebook\npython scripts/run.py source_manager.py add --file \"/path/to/book.pdf\" --use-active\n\n# Create new notebook for upload\npython scripts/run.py source_manager.py add --file \"/path/to/book.pdf\" --create-new\n\n# Upload to specific notebook\npython scripts/run.py source_manager.py add --file \"/path/to/book.pdf\" --notebook-id NOTEBOOK_ID\n\n# Z-Library download and upload\npython scripts/run.py source_manager.py add --url \"https://zh.zlib.li/book/...\" --use-active\npython scripts/run.py source_manager.py add --url \"https://zh.zlib.li/book/...\" --create-new\n\n# Sync a folder (new!)\npython scripts/run.py source_manager.py sync \"/path/to/docs\" --use-active\npython scripts/run.py source_manager.py sync \"/path/to/docs\" --create-new\npython scripts/run.py source_manager.py sync \"/path/to/docs\" --notebook-id NOTEBOOK_ID\n\n# Sync options (new!)\npython scripts/run.py source_manager.py sync \"/path/to/docs\" --dry-run # Preview only\npython scripts/run.py source_manager.py sync \"/path/to/docs\" --rebuild # Force re-hash all files\n```\n\n**Folder Sync:**\n- Scans folder for supported types: PDF, TXT, MD, DOCX, HTML, EPUB\n- Tracks sync state internally (no per-folder tracking file to manage)\n- Sync strategy: add new, update modified (delete + re-upload), skip unchanged\n- Multi-account aware (tracks which Google account was used)\n**Note:** One of `--use-active`, `--create-new`, or `--notebook-id` is REQUIRED.\nUploads wait for NotebookLM processing and print progress as `Ready: N/T`. Press Ctrl+C to stop waiting.\nLocal file uploads use browser automation and require Google authentication.\nIf browser automation is unavailable, set `NOTEBOOKLM_UPLOAD_MODE=text` to upload extracted text instead (PDFs require `pypdf`).\n\n### Data Cleanup (`cleanup_manager.py`)\n```bash\npython scripts/run.py cleanup_manager.py # Preview cleanup\npython scripts/run.py cleanup_manager.py --confirm # Execute cleanup\npython scripts/run.py cleanup_manager.py --preserve-library # Keep notebooks\n```\n\n### Watchdog Status (`auth_manager.py`)\n```bash\npython scripts/run.py auth_manager.py watchdog-status\n```\n\n## Environment Management\n\nThe virtual environment is automatically managed:\n- First run creates `.venv` automatically\n- Dependencies install automatically\n- Node.js dependencies install automatically\n- agent-browser daemon starts on demand and keeps browser state in memory\n- daemon stops after 10 minutes of inactivity (any agent-browser command resets the timer)\n- set `AGENT_BROWSER_OWNER_PID` to auto-stop when the agent process exits\n- `scripts/run.py` sets `AGENT_BROWSER_OWNER_PID` to its parent PID by default\n- Everything isolated in skill directory\n\nManual setup (only if automatic fails):\n```bash\npython -m venv .venv\nsource .venv/bin/activate # Linux/Mac\npip install -r requirements.txt\nnpm install\nnpm run install-browsers\n```\n\n## Data Storage\n\nAll data stored in `~/.claude/skills/notebooklm/data/`:\n- `library.json` - Notebook metadata (with account associations)\n- `auth/google/` - Multi-account Google auth\n - `index.json` - Account index (active account, list)\n - `\u003cn\u003e-\u003cemail\u003e.json` - Per-account credentials\n- `auth/zlibrary.json` - Z-Library auth state\n- `agent_browser/session_id` - Current daemon session ID\n- `agent_browser/last_activity.json` - Last activity timestamp for idle shutdown\n- `agent_browser/watchdog.pid` - Idle watchdog process ID\n\n**Security:** Protected by `.gitignore`, never commit to git.\n\n## Configuration\n\nOptional `.env` file in skill directory:\n```env\nHEADLESS=false # Browser visibility\nSHOW_BROWSER=false # Default browser display\nSTEALTH_ENABLED=true # Human-like behavior\nTYPING_WPM_MIN=160 # Typing speed\nTYPING_WPM_MAX=240\nDEFAULT_NOTEBOOK_ID= # Default notebook\n```\n\n## Decision Flow\n\n```\nUser mentions NotebookLM\n ↓\nCheck auth → python scripts/run.py auth_manager.py status\n ↓\nIf not authenticated → python scripts/run.py auth_manager.py setup\n ↓\nCheck/Add notebook → python scripts/run.py notebook_manager.py list/add (with --description)\n ↓\nActivate notebook → python scripts/run.py notebook_manager.py activate --id ID\n ↓\nAsk question → python scripts/run.py ask_question.py --question \"...\"\n ↓\nSee \"Is that ALL you need?\" → Ask follow-ups until complete\n ↓\nSynthesize and respond to user\n```\n\n## Troubleshooting\n\n| Problem | Solution |\n|---------|----------|\n| ModuleNotFoundError | Use `run.py` wrapper |\n| Authentication fails | Browser must be visible for setup! --show-browser |\n| DAEMON_UNAVAILABLE | Ensure Node.js/npm installed, run `npm install`, retry |\n| AUTH_REQUIRED | Run `python scripts/run.py auth_manager.py setup` |\n| ELEMENT_NOT_FOUND | Verify notebook URL and re-run with fresh page load |\n| Rate limit (50/day) | Wait or add another Google account with `accounts add` |\n| Browser crashes | `python scripts/run.py cleanup_manager.py --preserve-library` |\n| Notebook not found | Check with `notebook_manager.py list` |\n\n## Best Practices\n\n1. **Always use run.py** - Handles environment automatically\n2. **Check auth first** - Before any operations\n3. **Follow-up questions** - Don't stop at first answer\n4. **Browser visible for auth** - Required for manual login\n5. **Include context** - Each question is independent\n6. **Synthesize answers** - Combine multiple responses\n\n## Limitations\n\n- No session persistence (each question = new browser)\n- Rate limits on free Google accounts (50 queries/day per account; use multiple accounts to increase)\n- Manual upload required (user must add docs to NotebookLM)\n- Browser overhead (few seconds per question)\n\n## Resources (Skill Structure)\n\n**Important directories and files:**\n\n- `scripts/` - All automation scripts (ask_question.py, notebook_manager.py, etc.)\n- `data/` - Local storage for authentication and notebook library\n- `references/` - Extended documentation:\n - `api_reference.md` - Detailed API documentation for all scripts\n - `troubleshooting.md` - Common issues and solutions\n - `usage_patterns.md` - Best practices and workflow examples\n- `.venv/` - Isolated Python environment (auto-created on first run)\n- `.gitignore` - Protects sensitive data from being committed"])</script><script>self.__next_f.push([1,"74:[\"$\",\"$L7c\",null,{\"namespace\":\"magicseek\",\"slug\":\"nblm\",\"description\":\"Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.\",\"initialContent\":\"$7d\"}]\n"])</script><script>self.__next_f.push([1,"7e:I[687204,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"SkillFileTreeWithContext\"]\n"])</script><script>self.__next_f.push([1,"7b:[[\"$\",\"div\",null,{\"className\":\"mt-4 space-y-0\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col py-0.5\",\"children\":[[\"$\",\"span\",null,{\"className\":\"text-sm text-foreground mb-0.5\",\"children\":\"Repository\"}],[\"$\",\"div\",null,{\"className\":\"text-sm\",\"children\":[\"$\",\"a\",null,{\"href\":\"https://github.com/magicseek/nblm\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center gap-1.5 text-muted-foreground hover:text-foreground hover:underline transition-colors\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-github h-3.5 w-3.5\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"tonef\",{\"d\":\"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4\"}],[\"$\",\"path\",\"9comsn\",{\"d\":\"M9 18c-4.51 2-5-2-7-2\"}],\"$undefined\"]}],[\"$\",\"span\",null,{\"children\":\"magicseek/nblm\"}]]}]}]]}]}],[\"$\",\"div\",null,{\"className\":\"mt-6\",\"children\":[\"$\",\"$L7e\",null,{\"tree\":[{\"name\":\"commands\",\"path\":\"commands\",\"type\":\"dir\",\"children\":[{\"name\":\"nblm-accounts.md\",\"path\":\"commands/nblm-accounts.md\",\"type\":\"file\"},{\"name\":\"nblm-activate.md\",\"path\":\"commands/nblm-activate.md\",\"type\":\"file\"},{\"name\":\"nblm-add.md\",\"path\":\"commands/nblm-add.md\",\"type\":\"file\"},{\"name\":\"nblm-ask.md\",\"path\":\"commands/nblm-ask.md\",\"type\":\"file\"},{\"name\":\"nblm-list.md\",\"path\":\"commands/nblm-list.md\",\"type\":\"file\"},{\"name\":\"nblm-login.md\",\"path\":\"commands/nblm-login.md\",\"type\":\"file\"},{\"name\":\"nblm-status.md\",\"path\":\"commands/nblm-status.md\",\"type\":\"file\"},{\"name\":\"nblm-upload.md\",\"path\":\"commands/nblm-upload.md\",\"type\":\"file\"}]},{\"name\":\"docs\",\"path\":\"docs\",\"type\":\"dir\",\"children\":[{\"name\":\"plans\",\"path\":\"docs/plans\",\"type\":\"dir\",\"children\":[{\"name\":\"2025-01-30-folder-sync-design.md\",\"path\":\"docs/plans/2025-01-30-folder-sync-design.md\",\"type\":\"file\"}]}]},{\"name\":\"references\",\"path\":\"references\",\"type\":\"dir\",\"children\":[{\"name\":\"api_reference.md\",\"path\":\"references/api_reference.md\",\"type\":\"file\"},{\"name\":\"troubleshooting.md\",\"path\":\"references/troubleshooting.md\",\"type\":\"file\"},{\"name\":\"usage_patterns.md\",\"path\":\"references/usage_patterns.md\",\"type\":\"file\"}]},{\"name\":\"scripts\",\"path\":\"scripts\",\"type\":\"dir\",\"children\":[{\"name\":\"zlibrary\",\"path\":\"scripts/zlibrary\",\"type\":\"dir\",\"children\":[{\"name\":\"__init__.py\",\"path\":\"scripts/zlibrary/__init__.py\",\"type\":\"file\"},{\"name\":\"downloader.py\",\"path\":\"scripts/zlibrary/downloader.py\",\"type\":\"file\"},{\"name\":\"epub_converter.py\",\"path\":\"scripts/zlibrary/epub_converter.py\",\"type\":\"file\"}]},{\"name\":\"__init__.py\",\"path\":\"scripts/__init__.py\",\"type\":\"file\"},{\"name\":\"account_manager.py\",\"path\":\"scripts/account_manager.py\",\"type\":\"file\"},{\"name\":\"agent_browser_client.py\",\"path\":\"scripts/agent_browser_client.py\",\"type\":\"file\"},{\"name\":\"artifact_manager.py\",\"path\":\"scripts/artifact_manager.py\",\"type\":\"file\"},{\"name\":\"ask_question.py\",\"path\":\"scripts/ask_question.py\",\"type\":\"file\"},{\"name\":\"auth_manager.py\",\"path\":\"scripts/auth_manager.py\",\"type\":\"file\"},{\"name\":\"cleanup_manager.py\",\"path\":\"scripts/cleanup_manager.py\",\"type\":\"file\"},{\"name\":\"config.py\",\"path\":\"scripts/config.py\",\"type\":\"file\"},{\"name\":\"daemon_watchdog.py\",\"path\":\"scripts/daemon_watchdog.py\",\"type\":\"file\"},{\"name\":\"init_platform.py\",\"path\":\"scripts/init_platform.py\",\"type\":\"file\"},{\"name\":\"nblm_cli.py\",\"path\":\"scripts/nblm_cli.py\",\"type\":\"file\"},{\"name\":\"notebook_manager.py\",\"path\":\"scripts/notebook_manager.py\",\"type\":\"file\"},{\"name\":\"notebooklm_wrapper.py\",\"path\":\"scripts/notebooklm_wrapper.py\",\"type\":\"file\"},{\"name\":\"patchright_auth.py\",\"path\":\"scripts/patchright_auth.py\",\"type\":\"file\"},{\"name\":\"run.py\",\"path\":\"scripts/run.py\",\"type\":\"file\"},{\"name\":\"setup_environment.py\",\"path\":\"scripts/setup_environment.py\",\"type\":\"file\"},{\"name\":\"source_manager.py\",\"path\":\"scripts/source_manager.py\",\"type\":\"file\"},{\"name\":\"sync_manager.py\",\"path\":\"scripts/sync_manager.py\",\"type\":\"file\"}]},{\"name\":\"tests\",\"path\":\"tests\",\"type\":\"dir\",\"children\":[{\"name\":\"test_agent_browser_client.py\",\"path\":\"tests/test_agent_browser_client.py\",\"type\":\"file\"},{\"name\":\"test_agent_browser_state.py\",\"path\":\"tests/test_agent_browser_state.py\",\"type\":\"file\"},{\"name\":\"test_ask_question_fallback.py\",\"path\":\"tests/test_ask_question_fallback.py\",\"type\":\"file\"},{\"name\":\"test_auth_manager_services.py\",\"path\":\"tests/test_auth_manager_services.py\",\"type\":\"file\"},{\"name\":\"test_idle_watchdog.py\",\"path\":\"tests/test_idle_watchdog.py\",\"type\":\"file\"},{\"name\":\"test_navigate_wait_until.py\",\"path\":\"tests/test_navigate_wait_until.py\",\"type\":\"file\"},{\"name\":\"test_notebooklm_credentials.py\",\"path\":\"tests/test_notebooklm_credentials.py\",\"type\":\"file\"},{\"name\":\"test_run_env.py\",\"path\":\"tests/test_run_env.py\",\"type\":\"file\"},{\"name\":\"test_source_manager.py\",\"path\":\"tests/test_source_manager.py\",\"type\":\"file\"},{\"name\":\"test_sync_manager.py\",\"path\":\"tests/test_sync_manager.py\",\"type\":\"file\"},{\"name\":\"test_wait_for_answer.py\",\"path\":\"tests/test_wait_for_answer.py\",\"type\":\"file\"},{\"name\":\"test_watchdog_status.py\",\"path\":\"tests/test_watchdog_status.py\",\"type\":\"file\"},{\"name\":\"test_zlibrary_downloader.py\",\"path\":\"tests/test_zlibrary_downloader.py\",\"type\":\"file\"},{\"name\":\"test_zlibrary_epub_converter.py\",\"path\":\"tests/test_zlibrary_epub_converter.py\",\"type\":\"file\"}]},{\"name\":\"SKILL.md\",\"path\":\"SKILL.md\",\"type\":\"file\"},{\"name\":\"AGENTS.md\",\"path\":\"AGENTS.md\",\"type\":\"file\"},{\"name\":\"AUTHENTICATION.md\",\"path\":\"AUTHENTICATION.md\",\"type\":\"file\"},{\"name\":\"CHANGELOG.md\",\"path\":\"CHANGELOG.md\",\"type\":\"file\"},{\"name\":\"CLAUDE.md\",\"path\":\"CLAUDE.md\",\"type\":\"file\"},{\"name\":\"LICENSE\",\"path\":\"LICENSE\",\"type\":\"file\"},{\"name\":\"package-lock.json\",\"path\":\"package-lock.json\",\"type\":\"file\"},{\"name\":\"package.json\",\"path\":\"package.json\",\"type\":\"file\"},{\"name\":\"README.md\",\"path\":\"README.md\",\"type\":\"file\"},{\"name\":\"README.zh-CN.md\",\"path\":\"README.zh-CN.md\",\"type\":\"file\"},{\"name\":\"requirements.txt\",\"path\":\"requirements.txt\",\"type\":\"file\"}],\"namespace\":\"magicseek\",\"slug\":\"nblm\",\"skillName\":\"nblm\"}]}]]\n"])</script><script>self.__next_f.push([1,"7f:I[45895,[\"/_next/static/chunks/925e8e5d460a6f0b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/08b436b114c94143.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/239ac456091f5594.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ea205897ffeeca5b.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/cd272d38dc8ce5e8.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/af544fea09f33578.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b5a1200026b25eed.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\",\"/_next/static/chunks/9a8969c1454e5d20.js?dpl=dpl_2sPnPNY5HR9dTs7XTd76wN63qwKv\"],\"RecommendedServers\"]\n"])</script><script>self.__next_f.push([1,"7a:[\"$\",\"$L7f\",null,{\"skillQualifiedName\":\"magicseek/nblm\",\"servers\":[{\"id\":\"13d33eb6-c517-4fbf-82b1-f7a4d53e7198\",\"qualifiedName\":\"mandalazenwave/fillin\",\"namespace\":\"mandalazenwave\",\"slug\":\"fillin\",\"displayName\":\"fillin\",\"description\":\" Search engine for AI agents. Closes the gap between an LLM's training cutoff\\n and now, plus daily snapshots of high-signal slices agents care about: supply-\\n chain CVEs, new research papers, and frontier AI lab releases. Corpus is\\n ~22,800+ timestamped docs across 6 active sources — Hacker News, arXiv,\\n curated developer RSS, GitHub Releases, NVD + GitHub Security Advisories +\\n OSV (cves), HuggingFace daily papers + bioRxiv (papers), and frontier lab\\n announcements (frontier). Refreshed continuously, with deeper daily slice\\n snapshots fired at 1pm Mountain Time.\\n\\n Seven tools, priced per call in USDC over x402:\\n • fillin_query ($0.01) — generic post-cutoff vector search across all corpora\\n • fillin_answer ($0.02) — synthesized answer with inline citations\\n • query_cves ($0.02) — supply-chain vulnerabilities (NVD + GHSA + OSV)\\n • query_papers ($0.03) — new research (HF daily + bioRxiv ∪ arXiv)\\n • query_frontier ($0.05) — frontier lab announcements + trending models\\n • fil\",\"iconUrl\":\"https://api.smithery.ai/servers/mandalazenwave/fillin/icon\",\"verified\":true,\"useCount\":37,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2026-04-25T15:06:38.701Z\",\"homepage\":\"https://fillin.glyphapi.dev\",\"bySmithery\":false,\"owner\":\"org_01KQ2J4HST4Q04TKE4QBTSW9F5\",\"score\":0.061553030303030304},{\"id\":\"fc75f767-6d6c-4553-a6ee-b7603ecec6bd\",\"qualifiedName\":\"brightdata\",\"namespace\":\"brightdata\",\"slug\":\"\",\"displayName\":\"Bright Data\",\"description\":\"One (free) MCP for the Web. Easily search, crawl, navigate, and extract websites without getting blocked. Ideal for discovering and retrieving structured insights from any public source - effortlessly and ethically.\\n\\nNew features are live - check out what’s new: https://brightdata.com/ai/mcp-server/launch-week\",\"iconUrl\":\"https://www.google.com/s2/favicons?domain=brightdata.com\u0026sz=64\",\"verified\":true,\"useCount\":1135,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-04-16T16:00:52.595Z\",\"homepage\":\"https://brightdata.com\",\"bySmithery\":false,\"owner\":\"org_01KNB6TG2V38K13Y6RAMKY3ZHD\",\"score\":0.05405405405405406},{\"id\":\"d85548a4-19f4-42fa-803d-42c1dac2b345\",\"qualifiedName\":\"LinkupPlatform/linkup-mcp-server\",\"namespace\":\"linkupplatform\",\"slug\":\"linkup-mcp-server\",\"displayName\":\"Linkup\",\"description\":\"Search the web in real time to get trustworthy, source-backed answers. Find the latest news and comprehensive results from the most relevant sources. Use natural language queries to quickly gather facts, citations, and context.\",\"iconUrl\":\"https://api.smithery.ai/servers/LinkupPlatform/linkup-mcp-server/icon\",\"verified\":true,\"useCount\":567,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-10-16T15:47:41.596Z\",\"homepage\":\"https://github.com/LinkupPlatform/linkup-mcp-server\",\"bySmithery\":false,\"owner\":\"org_01KNBSBFNRDJN3RE5JVB9GRWY4\",\"score\":0.05303030303030303}]}]\n"])</script></body></html>