Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    mlflow

    fetch-unresolved-comments

    mlflow/fetch-unresolved-comments
    DevOps
    24,051
    4 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • 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
    ├─
    ├─
    └─

    About

    Fetch unresolved PR review comments using GitHub GraphQL API, filtering out resolved and outdated feedback.

    SKILL.md

    Fetch Unresolved PR Review Comments

    Uses GitHub's GraphQL API to fetch only unresolved review thread comments from a pull request.

    When to Use

    • You need to get only unresolved review comments from a PR
    • You want to filter out already-resolved feedback

    Instructions

    1. Get PR URL:

      • First check for environment variables:
        • If PR_NUMBER and GITHUB_REPOSITORY are set, construct URL as https://github.com/${GITHUB_REPOSITORY}/pull/${PR_NUMBER}
      • Otherwise:
        • Use gh pr view --json url -q '.url' to get the current branch's PR URL
    2. Run the skill:

      uv run --package skills skills fetch-unresolved-comments <pr_url>
      

      Example:

      uv run --package skills skills fetch-unresolved-comments https://github.com/mlflow/mlflow/pull/18327
      

      The script automatically reads the GitHub token from:

      • GH_TOKEN environment variable, or
      • gh auth token command if environment variables are not set

    Example Output

    {
      "total": 3,
      "by_file": {
        ".github/workflows/resolve.yml": [
          {
            "thread_id": "PRRT_kwDOAL...",
            "line": 40,
            "startLine": null,
            "diffHunk": "@@ -0,0 +1,245 @@\n+name: resolve...",
            "comments": [
              {
                "id": 2437935275,
                "body": "We can remove this once we get the key.",
                "author": "harupy",
                "createdAt": "2025-10-17T00:53:20Z"
              },
              {
                "id": 2437935276,
                "body": "Good catch, I'll update it.",
                "author": "contributor",
                "createdAt": "2025-10-17T01:10:15Z"
              }
            ]
          }
        ],
        ".gitignore": [
          {
            "thread_id": "PRRT_kwDOAL...",
            "line": 133,
            "startLine": null,
            "diffHunk": "@@ -130,0 +133,2 @@\n+.claude/*",
            "comments": [
              {
                "id": 2437935280,
                "body": "Should we add this to .gitignore?",
                "author": "reviewer",
                "createdAt": "2025-10-17T01:15:42Z"
              }
            ]
          }
        ]
      }
    }
    
    Recommended Servers
    Context7
    Context7
    Reddit
    Reddit
    GitHub
    GitHub
    Repository
    mlflow/mlflow
    Files