Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Give agents more agency

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    dyad-sh

    dyadswarm-pr-review

    dyad-sh/dyadswarm-pr-review
    Coding
    19,559
    1 installs

    About

    SKILL.md

    Install

    • 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
    ├─
    ├─
    └─

    About

    Team-based PR review using Claude Code swarm...

    SKILL.md

    Swarm PR Review

    This skill uses Claude Code's agent team (swarm) functionality to perform a collaborative PR review with three specialized reviewers who discuss and reach consensus.

    Overview

    1. Fetch PR diff and existing comments
    2. Create a review team with 3 specialized teammates
    3. Each teammate reviews the diff from their expert perspective
    4. Teammates discuss findings to reach consensus on real issues
    5. Team lead compiles final review with merge verdict
    6. Post summary comment + inline comments to GitHub

    Team Members

    Name Role Focus
    correctness-reviewer Correctness & Debugging Expert Bugs, edge cases, control flow, security, error handling
    code-health-reviewer Code Health Expert Dead code, duplication, complexity, meaningful comments, abstractions
    ux-reviewer UX Wizard User experience, consistency, accessibility, error states, delight

    Workflow

    Step 1: Determine PR Number and Repo

    Parse the PR number and repo from the user's input. If not provided, try to infer from the current git context:

    # Get current repo
    gh repo view --json nameWithOwner -q '.nameWithOwner'
    
    # If user provides a PR URL, extract the number
    # If user just says "review this PR", check for current branch PR
    gh pr view --json number -q '.number'
    

    Step 2: Fetch PR Diff and Context

    IMPORTANT: Always save files to the current working directory (e.g. ./pr_diff.patch), never to /tmp/ or other directories outside the repo. In CI, only the repo working directory is accessible.

    # Save the diff to current working directory (NOT /tmp/ or $SCRATCHPAD)
    gh pr diff <PR_NUMBER> --repo <OWNER/REPO> > ./pr_diff.patch
    
    # Get PR metadata
    gh pr view <PR_NUMBER> --repo <OWNER/REPO> --json title,body,files,headRefOid
    
    # Fetch existing comments to avoid duplicates
    gh api repos/<OWNER/REPO>/pulls/<PR_NUMBER>/comments --paginate
    gh api repos/<OWNER/REPO>/issues/<PR_NUMBER>/comments --paginate
    

    Save the diff content and existing comments for use in the review.

    Step 3: Create the Review Team

    Use TeamCreate to create the team:

    TeamCreate:
      team_name: "pr-review-<PR_NUMBER>"
      description: "Code review for PR #<PR_NUMBER>"
    

    Step 4: Create Review Tasks

    Create 4 tasks:

    1. "Review PR for correctness issues" - Assigned to correctness-reviewer
    2. "Review PR for code health issues" - Assigned to code-health-reviewer
    3. "Review PR for UX issues" - Assigned to ux-reviewer
    4. "Discuss and reach consensus on findings" - Blocked by tasks 1-3, no owner (team-wide)

    Step 5: Spawn Teammates

    Spawn all 3 teammates in parallel using the Task tool with team_name set to the team name. Each teammate should be a general-purpose subagent.

    IMPORTANT: Each teammate's prompt must include:

    1. Their role description (from the corresponding file in references/)
    2. The full PR diff content (inline, NOT a file path - teammates cannot read files from the team lead's scratchpad)
    3. The list of existing PR comments (so they can avoid duplicates)
    4. Instructions to send their findings back as a structured message

    Teammate Prompt Template

    For each teammate, the prompt should follow this structure:

    You are the [ROLE NAME] on a PR review team. Read your role description carefully:
    
    <role>
    [Contents of references/<role>.md]
    </role>
    
    You are reviewing PR #<NUMBER> in <REPO>: "<PR TITLE>"
    
    <pr_description>
    [PR body/description]
    </pr_description>
    
    Here is the diff to review:
    
    <diff>
    [Full diff content]
    </diff>
    
    Here are existing PR comments (do NOT flag issues already commented on):
    
    <existing_comments>
    [Existing comment data]
    </existing_comments>
    
    ## Instructions
    
    1. Read your role description carefully and review the diff from your expert perspective.
    2. For each issue you find, classify it as HIGH, MEDIUM, or LOW severity using the guidelines in your role description.
    3. Send your findings to the team lead using SendMessage with this format:
    
    FINDINGS:
    ```json
    [
      {
        "file": "path/to/file.ts",
        "line_start": 42,
        "line_end": 45,
        "severity": "MEDIUM",
        "category": "category-name",
        "title": "Brief title",
        "description": "Clear description of the issue and its impact",
        "suggestion": "How to fix (optional)"
      }
    ]
    
    1. After sending your initial findings, wait for the team lead to share other reviewers' findings.
    2. When you receive other reviewers' findings, discuss them:
      • ENDORSE issues you agree with (even if you missed them)
      • CHALLENGE issues you think are false positives or wrong severity
      • ADD context from your expertise that strengthens or weakens an issue
    3. Send your discussion responses to the team lead.

    Be thorough but focused. Only flag real issues, not nitpicks disguised as issues.

    IMPORTANT: Cross-reference infrastructure changes (DB migrations, new tables/columns, API endpoints, config entries) against actual usage in the diff. If a migration creates a table but no code in the PR reads from or writes to it, that's dead infrastructure and should be flagged.

    
    ### Step 6: Collect Initial Reviews
    
    Wait for all 3 teammates to send their initial findings. Parse the JSON from each teammate's message.
    
    ### Step 7: Facilitate Discussion
    
    Once all initial reviews are in:
    
    1. Send each teammate a message with ALL findings from all reviewers (labeled by who found them)
    2. Ask them to discuss: endorse, challenge, or add context
    3. Wait for discussion responses
    
    The message to each teammate should look like:
    

    All initial reviews are in. Here are the findings from all three reviewers:

    Correctness Reviewer Findings:

    [list of issues]

    Code Health Reviewer Findings:

    [list of issues]

    UX Reviewer Findings:

    [list of issues]

    Please review the other reviewers' findings from YOUR expert perspective:

    • ENDORSE issues you agree are real problems (say "ENDORSE: - <reason>")</li> <li>CHALLENGE issues you think are false positives or mis-classified (say "CHALLENGE: <title> - <reason>")</li> <li>If you have additional context that changes the severity, explain why</li> </ul> <p>Focus on issues where your expertise adds value. You don't need to comment on every issue.</p> <pre><code> ### Step 8: Compile Consensus After discussion, compile the final issue list: **Issue Classification Rules:** - An issue is **confirmed** if the original reporter + at least 1 other reviewer endorses it (or nobody challenges it) - An issue is **dropped** if challenged by 2 reviewers with valid reasoning - An issue is **downgraded** if challenged on severity with good reasoning - HIGH/MEDIUM issues get individual inline comments - LOW issues go in a collapsible details section in the summary ### Step 9: Determine Merge Verdict Based on the confirmed issues: - **:white_check_mark: YES - Ready to merge**: No HIGH issues, at most minor MEDIUM issues that are judgment calls - **:thinking: NOT SURE - Potential issues**: Has MEDIUM issues that should probably be addressed, but none are clear blockers - **:no_entry: NO - Do NOT merge**: Has HIGH severity issues or multiple serious MEDIUM issues that NEED to be fixed ### Step 10: Post GitHub Comments #### Summary Comment Post a summary comment on the PR using `gh pr comment`: ```markdown ## :mag: Dyadbot Code Review Summary **Verdict: [VERDICT EMOJI + TEXT]** Reviewed by 3 specialized agents: Correctness Expert, Code Health Expert, UX Wizard. ### Issues Summary | # | Severity | File | Issue | Found By | Endorsed By | |---|----------|------|-------|----------|-------------| | 1 | :red_circle: HIGH | `src/auth.ts:45` | SQL injection in login | Correctness | Code Health | | 2 | :yellow_circle: MEDIUM | `src/ui/modal.tsx:12` | Missing loading state | UX | Correctness | | 3 | :yellow_circle: MEDIUM | `src/utils.ts:89` | Duplicated validation logic | Code Health | - | <details> <summary>:green_circle: Low Priority Notes (X items)</summary> - **Minor naming inconsistency** - `src/helpers.ts:23` (Code Health) - **Could add hover state** - `src/button.tsx:15` (UX) </details> <details> <summary>:no_entry_sign: Dropped Issues (X items)</summary> - **~~Potential race condition~~** - Challenged by Code Health: "State is only accessed synchronously in this context" </details> --- *Generated by Dyadbot code review* </code></pre> <h4>Inline Comments</h4> <p>For each HIGH and MEDIUM issue, post an inline review comment at the relevant line using <code>gh api</code>:</p> <pre><code class="language-bash"># Post a review with inline comments gh api repos/<OWNER/REPO>/pulls/<PR_NUMBER>/reviews \ -X POST \ --input payload.json </code></pre> <p>Where payload.json contains:</p> <pre><code class="language-json">{ "commit_id": "<HEAD_SHA>", "body": "Swarm review: X issue(s) found", "event": "COMMENT", "comments": [ { "path": "src/auth.ts", "line": 45, "body": "**:red_circle: HIGH** | security | Found by: Correctness, Endorsed by: Code Health\n\n**SQL injection in login**\n\nDescription of the issue...\n\n:bulb: **Suggestion:** Use parameterized queries" } ] } </code></pre> <h3>Step 11: Shutdown Team</h3> <p>After posting comments:</p> <ol> <li>Send shutdown requests to all teammates</li> <li>Wait for shutdown confirmations</li> <li>Delete the team with TeamDelete</li> </ol> <h2>Deduplication</h2> <p>Before posting, filter out issues that match existing PR comments:</p> <ul> <li>Same file path</li> <li>Same or nearby line number (within 3 lines)</li> <li>Similar keywords in the issue title appear in the existing comment body</li> </ul> <h2>Error Handling</h2> <ul> <li>If a teammate fails to respond, proceed with the other reviewers' findings</li> <li>If no issues are found by anyone, post a clean summary: ":white_check_mark: No issues found"</li> <li>If discussion reveals all issues are false positives, still post the summary noting the review was clean</li> <li>Always post a summary comment, even if there are no issues</li> <li>Always shut down the team when done, even if there were errors</li> </ul> <h2>File Structure</h2> <pre><code>references/ correctness-reviewer.md - Role description for the correctness expert code-health-reviewer.md - Role description for the code health expert ux-reviewer.md - Role description for the UX wizard </code></pre> </div></div></div></div></div></section></div><script>$RC("B:1","S:1")</script><div hidden id="S:2"><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/useorgx/orgx-mcp"><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/useorgx/orgx-mcp/icon" alt="OrgX" 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">OrgX</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/infranodus/mcp-server-infranodus"><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/infranodus/mcp-server-infranodus/icon" alt="InfraNodus Knowledge Graphs & Text Analysis" 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">InfraNodus Knowledge Graphs & Text Analysis</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/upstash/context7-mcp"><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/upstash/context7-mcp/icon" alt="Context7" 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">Context7</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:2","S:2")</script><div hidden id="S:3"><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/dyad-sh/dyad/tree/main/.claude/skills/swarm-pr-review" 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>dyad-sh/dyad</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">references</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></div></div><script>$RC("B:3","S:3")</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/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ThemeProvider\"]\n3:I[434959,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ObservabilityBootstrap\"]\n4:I[119993,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n5:I[836,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ed802e90eb6a8072.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n6:I[659974,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"7:I[750186,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"AuthProvider\"]\n"])</script><script>self.__next_f.push([1,"8:I[781604,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ReactQueryProvider\"]\n"])</script><script>self.__next_f.push([1,"9:I[981853,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SmitheryProvider\"]\n"])</script><script>self.__next_f.push([1,"a:I[844657,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Header\"]\n"])</script><script>self.__next_f.push([1,"b:I[693755,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ec0f13b5614fb9ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Container\"]\n"])</script><script>self.__next_f.push([1,"29:I[566083,[\"/_next/static/chunks/707647edab18cc3d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n:HL[\"/_next/static/chunks/c3d5a6be71213922.css?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"style\"]\n:HL[\"/_next/static/chunks/f232f4e38fa6c863.css?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"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\":\"hArRyw7fivM5UmmzqG2Ez\",\"c\":[\"\",\"skills\",\"dyad-sh\",\"dyadswarm-pr-review\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"(main)\",{\"children\":[\"skills\",{\"children\":[[\"namespace\",\"dyad-sh\",\"d\"],{\"children\":[[\"slug\",\"dyadswarm-pr-review\",\"d\"],{\"children\":[\"__PAGE__\",{}]}]}]}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/c3d5a6be71213922.css?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/f232f4e38fa6c863.css?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"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_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"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/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"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/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Skeleton\"]\n"])</script><script>self.__next_f.push([1,"2e:I[135582,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Footer\"]\n"])</script><script>self.__next_f.push([1,"2f:I[517521,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Toaster\"]\n"])</script><script>self.__next_f.push([1,"30:I[568206,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"Analytics\"]\n31:I[723933,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SpeedInsights\"]\n"])</script><script>self.__next_f.push([1,"32:I[280570,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ReactScan\"]\n"])</script><script>self.__next_f.push([1,"33:I[193370,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SmitheryClientProvider\"]\n"])</script><script>self.__next_f.push([1,"34:I[235265,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"NavigationProvider\"]\n"])</script><script>self.__next_f.push([1,"35:I[24314,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"BillingAlertBanner\"]\n"])</script><script>self.__next_f.push([1,"36:I[454256,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SearchFilterProvider\"]\n"])</script><script>self.__next_f.push([1,"37:I[122342,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ObservabilityErrorBoundary\"]\n"])</script><script>self.__next_f.push([1,"4d:I[607806,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/e3140b9aa746a4f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"5f:I[448336,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/51105b3f176f0980.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"61:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"OutletBoundary\"]\n63:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ViewportBoundary\"]\n65:I[926208,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"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_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-18\",{\"src\":\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-19\",{\"src\":\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"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,{\"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\"}],\"$L38\",\"$L39\",\"$L3a\",\"$L3b\",\"$L3c\",\"$L3d\",\"$L3e\",\"$L3f\",\"$L40\",\"$L41\",\"$L42\",\"$L43\",\"$L44\",\"$L45\",\"$L46\"]}],\"$L47\"]}],\"$L48\"]}],\"$L49\"]}]}]}]}],\"$L4a\"]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],\"$L4b\",\"$L4c\"]}]}]}]}]}]]}]]}]\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\":\"$4d\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/e3140b9aa746a4f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"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\"}],\"$L4e\",\"$L4f\",\"$L50\",\"$L51\",\"$L52\",\"$L53\",\"$L54\",\"$L55\",\"$L56\",\"$L57\",\"$L58\",\"$L59\",\"$L5a\"]}],\"$L5b\"]}],\"$L5c\"]}],\"$L5d\"]}]}]}]}],\"$L5e\"]}],[]],\"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\":\"$5f\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/51105b3f176f0980.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true}]],\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n27:[\"$\",\"$1\",\"c\",{\"children\":[\"$L60\",[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L61\",null,{\"children\":[\"$\",\"$2b\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@62\"}]}]]}]\n28:[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L63\",null,{\"children\":\"$@64\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L65\",null,{\"children\":[\"$\",\"$2b\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@66\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\n"])</script><script>self.__next_f.push([1,"38:[\"$\",\"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}]\n39:[\"$\",\"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\"}]\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\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.1}]\n3b:[\"$\",\"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\"}]\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.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}]\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.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}]\n3e:[\"$\",\"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\"}]\n3f:[\"$\",\"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\"}]\n40:[\"$\",\"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\"}]\n41:[\"$\",\"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\"}]\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.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}]\n43:[\"$\",\"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\"}]\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\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.08}]\n45:[\"$\",\"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\"}]\n46:[\"$\",\"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\"}]\n47:[\"$\",\"$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)\"}}]\n48:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-medium text-foreground\",\"children\":\"404: Page Not Found\"}]\n49:[\"$\",\"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\":\"$L67\"}]}]\n4a:[\"$\",\"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\"}]]}]}]\n4b:[\"$\",\"$2b\",null,{\"children\":[\"$\",\"$L2e\",null,{}]}]\n4c:[\"$\",\"$L2f\",null,{}]\n4e:[\"$\",\"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}]\n4f:[\"$\",\"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\"}]\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.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}]\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.34L22.19 -2.23L21.43 -1.16L20.45 -0.13L19.28 0.84L17.93 1.76Z\",\"fill\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.02}]\n52:[\"$\",\"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\"}]\n53:[\"$\",\"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\"}]\n54:[\"$\",\"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\"}]\n55:[\"$\",\"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\"}]\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.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}]\n57:[\"$\",\"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\"}]\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\":\"currentColor\",\"stroke\":\"none\",\"opacity\":0.08}]\n59:[\"$\",\"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\"}]\n5a:[\"$\",\"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\"}]\n5b:[\"$\",\"$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)\"}}]\n5c:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-medium text-foreground\",\"children\":\"404: Page Not Found\"}]\n5d:[\"$\",\"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\"}]}]\n5e:[\"$\",\"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,"64:[[\"$\",\"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,"69:I[231936,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillPageTracker\"]\n"])</script><script>self.__next_f.push([1,"6a:I[56920,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"HoverCopy\"]\n"])</script><script>self.__next_f.push([1,"6b:I[451059,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillFileProvider\"]\n"])</script><script>self.__next_f.push([1,"6c:I[363511,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillTabs\"]\n"])</script><script>self.__next_f.push([1,"70:I[899701,[\"/_next/static/chunks/0126844542e55c75.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/09f903c85530aa4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"IconMark\"]\n"])</script><script>self.__next_f.push([1,"60:[[\"$\",\"$L69\",null,{\"skillDisplayName\":\"dyadswarm-pr-review\",\"skillId\":\"f27d641b-8d54-4f84-8017-4ce94786774e\",\"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/dyad-sh.png\",\"alt\":\"dyad-sh\",\"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\":\"dyadswarm-pr-review\"}],[\"$\",\"div\",null,{\"className\":\"flex items-center gap-1\",\"children\":[[\"$\",\"$L6a\",null,{\"text\":\"dyad-sh/dyadswarm-pr-review\",\"className\":\"text-sm text-muted-foreground hover:text-foreground\",\"trackingEvent\":\"Qualified Name Copied\",\"trackingProps\":{\"serverQualifiedName\":\"dyad-sh/dyadswarm-pr-review\",\"source\":\"skill-header\"},\"children\":\"dyad-sh/dyadswarm-pr-review\"}],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\":\"Coding\"}]}],[\"$\",\"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,559\"}]]}],[\"$\",\"div\",null,{\"className\":\"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-download h-3 w-3 text-muted-foreground\",\"aria-hidden\":\"true\",\"children\":[[\"$\",\"path\",\"ih7n3h\",{\"d\":\"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4\"}],[\"$\",\"polyline\",\"2ggqvy\",{\"points\":\"7 10 12 15 17 10\"}],[\"$\",\"line\",\"1vk2je\",{\"x1\":\"12\",\"x2\":\"12\",\"y1\":\"15\",\"y2\":\"3\"}],\"$undefined\"]}],[\"$\",\"span\",null,{\"className\":\"text-muted-foreground\",\"children\":[\"1\",\" installs\"]}]]}]]}]]}],[\"$\",\"$L6b\",null,{\"children\":[\"$\",\"$L6c\",null,{\"namespace\":\"dyad-sh\",\"slug\":\"dyadswarm-pr-review\",\"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\"}]]}]]}],\"$L6d\"]}],\"children\":\"$L6e\"}]}]}],\"$L6f\"]}]}]}]]}]]\n"])</script><script>self.__next_f.push([1,"66:[[\"$\",\"title\",\"0\",{\"children\":\"dyadswarm-pr-review - Skill | Smithery\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Team-based PR review using Claude Code swarm. Spawns three specialized teammates (correctness expert, code health expert, UX wizard) who review the PR diff, discuss findings with each other, and reach consensus on real issues. Posts a summary with merge verdict and inline comments for HIGH/MEDIUM issues.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"manifest\",\"href\":\"/manifest.webmanifest\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"meta\",\"3\",{\"property\":\"og:title\",\"content\":\"dyadswarm-pr-review - Skill\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:description\",\"content\":\"Team-based PR review using Claude Code swarm. Spawns three specialized teammates (correctness expert, code health expert, UX wizard) who review the PR diff, discuss findings with each other, and reach consensus on real issues. Posts a summary with merge verdict and inline comments for HIGH/MEDIUM issues.\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:url\",\"content\":\"https://smithery.ai/skills/dyad-sh/dyadswarm-pr-review\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:image:alt\",\"content\":\"Smithery Skill\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image\",\"content\":\"https://smithery.ai/skills/dyad-sh/dyadswarm-pr-review/opengraph-image-ydg9t?7b22a764c4dbb9ad\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:title\",\"content\":\"dyadswarm-pr-review - Skill\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:description\",\"content\":\"Team-based PR review using Claude Code swarm. Spawns three specialized teammates (correctness expert, code health expert, UX wizard) who review the PR diff, discuss findings with each other, and reach consensus on real issues. Posts a summary with merge verdict and inline comments for HIGH/MEDIUM issues.\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:image:alt\",\"content\":\"Smithery Skill\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:image:type\",\"content\":\"image/png\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:image\",\"content\":\"https://smithery.ai/skills/dyad-sh/dyadswarm-pr-review/opengraph-image-ydg9t?7b22a764c4dbb9ad\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"link\",\"20\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"21\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\"}],[\"$\",\"$L70\",\"22\",{}]]\n"])</script><script>self.__next_f.push([1,"62:null\n"])</script><script>self.__next_f.push([1,"71:I[564773,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillInstaller\"]\n"])</script><script>self.__next_f.push([1,"6d:[\"$\",\"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\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-5/6\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-4/6\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-full\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-3/4\"}],[\"$\",\"$L2c\",null,{\"className\":\"h-4 w-5/6\"}]]}]}]]}]\n"])</script><script>self.__next_f.push([1,"6f:[\"$\",\"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\":[\"$\",\"$L71\",null,{\"namespace\":\"dyad-sh\",\"slug\":\"dyadswarm-pr-review\",\"skillId\":\"f27d641b-8d54-4f84-8017-4ce94786774e\",\"skillDisplayName\":\"dyadswarm-pr-review\",\"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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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/dyad-sh/dyadswarm-pr-review\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\"}}]}],\"$L72\",\"$L73\"]}]\n"])</script><script>self.__next_f.push([1,"72:[\"$\",\"$2b\",null,{\"fallback\":null,\"children\":\"$L74\"}]\n73:[\"$\",\"$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\":\"$L75\"}]\n"])</script><script>self.__next_f.push([1,"76:I[352240,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ec0f13b5614fb9ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"ServerListItem\"]\n"])</script><script>self.__next_f.push([1,"67:[\"$\",\"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\":[[\"$\",\"$L76\",\"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\":23931,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L76\",\"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\":35745,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L76\",\"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\":19864,\"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\":[[\"$\",\"$L76\",\"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\":23931,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L76\",\"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\":35745,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L76\",\"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\":19864,\"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,"77:I[622811,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillLeftColumnClient\"]\n"])</script><script>self.__next_f.push([1,"78:T2876,"])</script><script>self.__next_f.push([1,"# Swarm PR Review\n\nThis skill uses Claude Code's agent team (swarm) functionality to perform a collaborative PR review with three specialized reviewers who discuss and reach consensus.\n\n## Overview\n\n1. Fetch PR diff and existing comments\n2. Create a review team with 3 specialized teammates\n3. Each teammate reviews the diff from their expert perspective\n4. Teammates discuss findings to reach consensus on real issues\n5. Team lead compiles final review with merge verdict\n6. Post summary comment + inline comments to GitHub\n\n## Team Members\n\n| Name | Role | Focus |\n| ---------------------- | ------------------------------ | --------------------------------------------------------------------- |\n| `correctness-reviewer` | Correctness \u0026 Debugging Expert | Bugs, edge cases, control flow, security, error handling |\n| `code-health-reviewer` | Code Health Expert | Dead code, duplication, complexity, meaningful comments, abstractions |\n| `ux-reviewer` | UX Wizard | User experience, consistency, accessibility, error states, delight |\n\n## Workflow\n\n### Step 1: Determine PR Number and Repo\n\nParse the PR number and repo from the user's input. If not provided, try to infer from the current git context:\n\n```bash\n# Get current repo\ngh repo view --json nameWithOwner -q '.nameWithOwner'\n\n# If user provides a PR URL, extract the number\n# If user just says \"review this PR\", check for current branch PR\ngh pr view --json number -q '.number'\n```\n\n### Step 2: Fetch PR Diff and Context\n\n**IMPORTANT:** Always save files to the current working directory (e.g. `./pr_diff.patch`), never to `/tmp/` or other directories outside the repo. In CI, only the repo working directory is accessible.\n\n```bash\n# Save the diff to current working directory (NOT /tmp/ or $SCRATCHPAD)\ngh pr diff \u003cPR_NUMBER\u003e --repo \u003cOWNER/REPO\u003e \u003e ./pr_diff.patch\n\n# Get PR metadata\ngh pr view \u003cPR_NUMBER\u003e --repo \u003cOWNER/REPO\u003e --json title,body,files,headRefOid\n\n# Fetch existing comments to avoid duplicates\ngh api repos/\u003cOWNER/REPO\u003e/pulls/\u003cPR_NUMBER\u003e/comments --paginate\ngh api repos/\u003cOWNER/REPO\u003e/issues/\u003cPR_NUMBER\u003e/comments --paginate\n```\n\nSave the diff content and existing comments for use in the review.\n\n### Step 3: Create the Review Team\n\nUse `TeamCreate` to create the team:\n\n```\nTeamCreate:\n team_name: \"pr-review-\u003cPR_NUMBER\u003e\"\n description: \"Code review for PR #\u003cPR_NUMBER\u003e\"\n```\n\n### Step 4: Create Review Tasks\n\nCreate 4 tasks:\n\n1. **\"Review PR for correctness issues\"** - Assigned to correctness-reviewer\n2. **\"Review PR for code health issues\"** - Assigned to code-health-reviewer\n3. **\"Review PR for UX issues\"** - Assigned to ux-reviewer\n4. **\"Discuss and reach consensus on findings\"** - Blocked by tasks 1-3, no owner (team-wide)\n\n### Step 5: Spawn Teammates\n\nSpawn all 3 teammates in parallel using the `Task` tool with `team_name` set to the team name. Each teammate should be a `general-purpose` subagent.\n\n**IMPORTANT**: Each teammate's prompt must include:\n\n1. Their role description (from the corresponding file in `references/`)\n2. The full PR diff content (inline, NOT a file path - teammates cannot read files from the team lead's scratchpad)\n3. The list of existing PR comments (so they can avoid duplicates)\n4. Instructions to send their findings back as a structured message\n\n#### Teammate Prompt Template\n\nFor each teammate, the prompt should follow this structure:\n\n````\nYou are the [ROLE NAME] on a PR review team. Read your role description carefully:\n\n\u003crole\u003e\n[Contents of references/\u003crole\u003e.md]\n\u003c/role\u003e\n\nYou are reviewing PR #\u003cNUMBER\u003e in \u003cREPO\u003e: \"\u003cPR TITLE\u003e\"\n\n\u003cpr_description\u003e\n[PR body/description]\n\u003c/pr_description\u003e\n\nHere is the diff to review:\n\n\u003cdiff\u003e\n[Full diff content]\n\u003c/diff\u003e\n\nHere are existing PR comments (do NOT flag issues already commented on):\n\n\u003cexisting_comments\u003e\n[Existing comment data]\n\u003c/existing_comments\u003e\n\n## Instructions\n\n1. Read your role description carefully and review the diff from your expert perspective.\n2. For each issue you find, classify it as HIGH, MEDIUM, or LOW severity using the guidelines in your role description.\n3. Send your findings to the team lead using SendMessage with this format:\n\nFINDINGS:\n```json\n[\n {\n \"file\": \"path/to/file.ts\",\n \"line_start\": 42,\n \"line_end\": 45,\n \"severity\": \"MEDIUM\",\n \"category\": \"category-name\",\n \"title\": \"Brief title\",\n \"description\": \"Clear description of the issue and its impact\",\n \"suggestion\": \"How to fix (optional)\"\n }\n]\n````\n\n4. After sending your initial findings, wait for the team lead to share other reviewers' findings.\n5. When you receive other reviewers' findings, discuss them:\n - ENDORSE issues you agree with (even if you missed them)\n - CHALLENGE issues you think are false positives or wrong severity\n - ADD context from your expertise that strengthens or weakens an issue\n6. Send your discussion responses to the team lead.\n\nBe thorough but focused. Only flag real issues, not nitpicks disguised as issues.\n\nIMPORTANT: Cross-reference infrastructure changes (DB migrations, new tables/columns, API endpoints, config entries) against actual usage in the diff. If a migration creates a table but no code in the PR reads from or writes to it, that's dead infrastructure and should be flagged.\n\n```\n\n### Step 6: Collect Initial Reviews\n\nWait for all 3 teammates to send their initial findings. Parse the JSON from each teammate's message.\n\n### Step 7: Facilitate Discussion\n\nOnce all initial reviews are in:\n\n1. Send each teammate a message with ALL findings from all reviewers (labeled by who found them)\n2. Ask them to discuss: endorse, challenge, or add context\n3. Wait for discussion responses\n\nThe message to each teammate should look like:\n\n```\n\nAll initial reviews are in. Here are the findings from all three reviewers:\n\n## Correctness Reviewer Findings:\n\n[list of issues]\n\n## Code Health Reviewer Findings:\n\n[list of issues]\n\n## UX Reviewer Findings:\n\n[list of issues]\n\nPlease review the other reviewers' findings from YOUR expert perspective:\n\n- ENDORSE issues you agree are real problems (say \"ENDORSE: \u003ctitle\u003e - \u003creason\u003e\")\n- CHALLENGE issues you think are false positives or mis-classified (say \"CHALLENGE: \u003ctitle\u003e - \u003creason\u003e\")\n- If you have additional context that changes the severity, explain why\n\nFocus on issues where your expertise adds value. You don't need to comment on every issue.\n\n````\n\n### Step 8: Compile Consensus\n\nAfter discussion, compile the final issue list:\n\n**Issue Classification Rules:**\n- An issue is **confirmed** if the original reporter + at least 1 other reviewer endorses it (or nobody challenges it)\n- An issue is **dropped** if challenged by 2 reviewers with valid reasoning\n- An issue is **downgraded** if challenged on severity with good reasoning\n- HIGH/MEDIUM issues get individual inline comments\n- LOW issues go in a collapsible details section in the summary\n\n### Step 9: Determine Merge Verdict\n\nBased on the confirmed issues:\n\n- **:white_check_mark: YES - Ready to merge**: No HIGH issues, at most minor MEDIUM issues that are judgment calls\n- **:thinking: NOT SURE - Potential issues**: Has MEDIUM issues that should probably be addressed, but none are clear blockers\n- **:no_entry: NO - Do NOT merge**: Has HIGH severity issues or multiple serious MEDIUM issues that NEED to be fixed\n\n### Step 10: Post GitHub Comments\n\n#### Summary Comment\n\nPost a summary comment on the PR using `gh pr comment`:\n\n```markdown\n## :mag: Dyadbot Code Review Summary\n\n**Verdict: [VERDICT EMOJI + TEXT]**\n\nReviewed by 3 specialized agents: Correctness Expert, Code Health Expert, UX Wizard.\n\n### Issues Summary\n\n| # | Severity | File | Issue | Found By | Endorsed By |\n|---|----------|------|-------|----------|-------------|\n| 1 | :red_circle: HIGH | `src/auth.ts:45` | SQL injection in login | Correctness | Code Health |\n| 2 | :yellow_circle: MEDIUM | `src/ui/modal.tsx:12` | Missing loading state | UX | Correctness |\n| 3 | :yellow_circle: MEDIUM | `src/utils.ts:89` | Duplicated validation logic | Code Health | - |\n\n\u003cdetails\u003e\n\u003csummary\u003e:green_circle: Low Priority Notes (X items)\u003c/summary\u003e\n\n- **Minor naming inconsistency** - `src/helpers.ts:23` (Code Health)\n- **Could add hover state** - `src/button.tsx:15` (UX)\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e:no_entry_sign: Dropped Issues (X items)\u003c/summary\u003e\n\n- **~~Potential race condition~~** - Challenged by Code Health: \"State is only accessed synchronously in this context\"\n\n\u003c/details\u003e\n\n---\n*Generated by Dyadbot code review*\n````\n\n#### Inline Comments\n\nFor each HIGH and MEDIUM issue, post an inline review comment at the relevant line using `gh api`:\n\n```bash\n# Post a review with inline comments\ngh api repos/\u003cOWNER/REPO\u003e/pulls/\u003cPR_NUMBER\u003e/reviews \\\n -X POST \\\n --input payload.json\n```\n\nWhere payload.json contains:\n\n```json\n{\n \"commit_id\": \"\u003cHEAD_SHA\u003e\",\n \"body\": \"Swarm review: X issue(s) found\",\n \"event\": \"COMMENT\",\n \"comments\": [\n {\n \"path\": \"src/auth.ts\",\n \"line\": 45,\n \"body\": \"**:red_circle: HIGH** | security | Found by: Correctness, Endorsed by: Code Health\\n\\n**SQL injection in login**\\n\\nDescription of the issue...\\n\\n:bulb: **Suggestion:** Use parameterized queries\"\n }\n ]\n}\n```\n\n### Step 11: Shutdown Team\n\nAfter posting comments:\n\n1. Send shutdown requests to all teammates\n2. Wait for shutdown confirmations\n3. Delete the team with TeamDelete\n\n## Deduplication\n\nBefore posting, filter out issues that match existing PR comments:\n\n- Same file path\n- Same or nearby line number (within 3 lines)\n- Similar keywords in the issue title appear in the existing comment body\n\n## Error Handling\n\n- If a teammate fails to respond, proceed with the other reviewers' findings\n- If no issues are found by anyone, post a clean summary: \":white_check_mark: No issues found\"\n- If discussion reveals all issues are false positives, still post the summary noting the review was clean\n- Always post a summary comment, even if there are no issues\n- Always shut down the team when done, even if there were errors\n\n## File Structure\n\n```\nreferences/\n correctness-reviewer.md - Role description for the correctness expert\n code-health-reviewer.md - Role description for the code health expert\n ux-reviewer.md - Role description for the UX wizard\n```"])</script><script>self.__next_f.push([1,"6e:[\"$\",\"$L77\",null,{\"namespace\":\"dyad-sh\",\"slug\":\"dyadswarm-pr-review\",\"description\":\"Team-based PR review using Claude Code swarm. Spawns three specialized teammates (correctness expert, code health expert, UX wizard) who review the PR diff, discuss findings with each other, and reach consensus on real issues. Posts a summary with merge verdict and inline comments for HIGH/MEDIUM issues.\",\"initialContent\":\"$78\"}]\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\":[[\"$\",\"$L76\",\"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\":23931,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2024-12-13T15:46:50.750Z\",\"homepage\":\"https://exa.ai\",\"bySmithery\":false,\"owner\":\"org_01KNB3A514RX0G4KHMMZAXTRA2\",\"score\":null}}],[\"$\",\"$L76\",\"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\":35745,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-11-26T14:34:03.393Z\",\"homepage\":\"https://smithery.ai/servers/gmail\",\"bySmithery\":true,\"owner\":\"org_01KPBXJTDN7ASH7MJ3958C05QY\",\"score\":null}}],[\"$\",\"$L76\",\"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\":19864,\"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,"79:I[687204,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"SkillFileTreeWithContext\"]\n"])</script><script>self.__next_f.push([1,"75:[[\"$\",\"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/dyad-sh/dyad/tree/main/.claude/skills/swarm-pr-review\",\"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\":\"dyad-sh/dyad\"}]]}]}]]}]}],[\"$\",\"div\",null,{\"className\":\"mt-6\",\"children\":[\"$\",\"$L79\",null,{\"tree\":[{\"name\":\"references\",\"path\":\"references\",\"type\":\"dir\",\"children\":[{\"name\":\"code-health-reviewer.md\",\"path\":\"references/code-health-reviewer.md\",\"type\":\"file\"},{\"name\":\"correctness-reviewer.md\",\"path\":\"references/correctness-reviewer.md\",\"type\":\"file\"},{\"name\":\"ux-reviewer.md\",\"path\":\"references/ux-reviewer.md\",\"type\":\"file\"}]},{\"name\":\"SKILL.md\",\"path\":\"SKILL.md\",\"type\":\"file\"}],\"namespace\":\"dyad-sh\",\"slug\":\"dyadswarm-pr-review\",\"skillName\":\"dyad:swarm-pr-review\"}]}]]\n"])</script><script>self.__next_f.push([1,"7a:I[45895,[\"/_next/static/chunks/3b377c7f773d8c87.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/71cc8cfbc32f762b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/4bb85d42dcbc2768.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/a001b8252b5c6f4d.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8361f08f3125b76e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/7955f11e74aa1108.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3394e5649b5332fb.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/c7131bdfb834218e.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/767690ab333b03f9.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fb2a7dc4131bfd79.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3163f2853a8b9412.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/3841fc17dcdeb5ee.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/913c656dab95f33b.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/ef15c89f195b36de.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/47bd768eaa94d059.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5bcdd80e290d5b61.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b8eea0e485e9cede.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/5548f4604abc37c7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/b02347997e79c120.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/840f8391716fb7c1.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/8ced1418472c65b7.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/95c2132e65e98c59.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/24472b3d398ba350.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\",\"/_next/static/chunks/fcb4949a14497acc.js?dpl=dpl_7Jo88iKKkNrzzxdJCVVV2eJTwme2\"],\"RecommendedServers\"]\n"])</script><script>self.__next_f.push([1,"74:[\"$\",\"$L7a\",null,{\"skillQualifiedName\":\"dyad-sh/dyadswarm-pr-review\",\"servers\":[{\"id\":\"2b63dc99-cc42-42f2-b4c2-d41b84b5ee81\",\"qualifiedName\":\"useorgx/orgx-mcp\",\"namespace\":\"useorgx\",\"slug\":\"orgx-mcp\",\"displayName\":\"OrgX\",\"description\":\"OrgX is coordination infrastructure for AI-native teams. It gives your LLM a persistent organizational layer: initiatives with milestones and tasks, human-in-the-loop decision workflows, specialist agent delegation, and cross-session memory that survives tool switching.\\nWhat you can do with OrgX via MCP:\\n\\nScaffold initiatives — decompose a goal into workstreams, milestones, and tasks in one call\\nManage decisions — create, review, approve, or reject decisions with audit trails\\nDelegate to specialist agents — spawn tasks for domain agents (engineering, marketing, product, sales, operations, design) and monitor their progress\\nQuery organizational memory — search past decisions, artifacts, and learnings across initiatives\\nTrack progress — get initiative health, agent status, blockers, and morning briefs\\nPlan and prioritize — score queues, get next-action recommendations, and run autonomous sessions with budget guardrails\\n\\nOrgX is built for solo founders and small teams who work across mult\",\"iconUrl\":\"https://api.smithery.ai/servers/useorgx/orgx-mcp/icon\",\"verified\":true,\"useCount\":3317,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2026-03-31T22:52:31.291Z\",\"homepage\":\"https://mcp.useorgx.com\",\"bySmithery\":false,\"owner\":\"org_01KNBW01S96YJWV21P1JKAN67H\",\"score\":0.05857385398981324},{\"id\":\"049714b3-36a4-4069-9193-470ff6247af6\",\"qualifiedName\":\"infranodus/mcp-server-infranodus\",\"namespace\":\"infranodus\",\"slug\":\"mcp-server-infranodus\",\"displayName\":\"InfraNodus Knowledge Graphs \u0026 Text Analysis\",\"description\":\"Map text into knowledge graphs to create a structured representation of conceptual relations and topical clusters in your documents. Detect content gaps between the topical clusters and generate research questions to drive research and content creation using the powerful Graph RAG technology underpinning InfraNodus. Get additional insights about texts: main topics, keywords, and underlying themes. Connect to your existing InfraNodus graphs or create new ones to enrich analysis and outputs.\",\"iconUrl\":\"https://api.smithery.ai/servers/infranodus/mcp-server-infranodus/icon\",\"verified\":true,\"useCount\":13,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-09-15T14:22:21.032Z\",\"homepage\":\"https://github.com/infranodus/mcp-server-infranodus\",\"bySmithery\":false,\"owner\":\"org_01KNB7FB0NHXMCMD00GDSRQ6F7\",\"score\":0.05252525252525253},{\"id\":\"a2d7f090-292e-4145-a7ef-f1a7b6b061be\",\"qualifiedName\":\"upstash/context7-mcp\",\"namespace\":\"upstash\",\"slug\":\"context7-mcp\",\"displayName\":\"Context7\",\"description\":\"Fetch up-to-date, version-specific documentation and code examples directly into your prompts. Enhance your coding experience by eliminating outdated information and hallucinated APIs. Simply add `use context7` to your questions for accurate and relevant answers.\",\"iconUrl\":\"https://api.smithery.ai/servers/upstash/context7-mcp/icon\",\"verified\":true,\"useCount\":7115,\"remote\":true,\"isDeployed\":true,\"createdAt\":\"2025-04-12T07:00:21.424Z\",\"homepage\":\"https://github.com/upstash/context7#readme\",\"bySmithery\":false,\"owner\":\"org_01KNB6YN4CN91PZ763VVYX3PB2\",\"score\":0.04415954415954416}]}]\n"])</script></body></html>