Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
67550
Ignored
67515
Jobs dispatched
35

Event 3735d330…

← All events

Event

Delivery
3735d330-605f-11f1-8c43-a7a50e88f6c2
Event
pull_request_review_comment
Action
created
Received
2026-06-04T21:49:10.245Z
Signature
valid
Parsed
yes
Sender
Copilot
Repo
darkmatter/nixmac-web
Status
ignored — missing_command

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.73",
  "cf-ipcountry": "US",
  "cf-ray": "a06a255af9ccf286",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "35210",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/eec6cea",
  "x-forwarded-proto": "https",
  "x-github-delivery": "3735d330-605f-11f1-8c43-a7a50e88f6c2",
  "x-github-event": "pull_request_review_comment",
  "x-github-hook-id": "628737947",
  "x-github-hook-installation-target-id": "3663660",
  "x-github-hook-installation-target-type": "integration",
  "x-real-ip": "140.82.115.73"
}

Payload

{
  "action": "created",
  "comment": {
    "url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/comments/3359087869",
    "pull_request_review_id": 4431688242,
    "id": 3359087869,
    "node_id": "PRRC_kwDOQc69G87IN5z9",
    "diff_hunk": "@@ -0,0 +1,235 @@\n+\"\"\"Read result JSONs + CSV + golden expectations into a RunView.\n+\n+This is the only module that reads files. Everything downstream takes a\n+RunView and renders it.\n+\"\"\"\n+\n+from __future__ import annotations\n+\n+import json\n+import sys\n+from datetime import datetime\n+from pathlib import Path\n+from typing import Any\n+\n+# Reuse the shared CSV/expectations helpers from grade.py so we have one\n+# source of truth for the column meanings.\n+from grade import load_csv_lookup, load_expectations\n+from report import diff_html, stats\n+from report.viewmodel import CaseView, CheckView, RunMeta, RunView\n+\n+# Where a results dir conventionally stores its run manifest (P3).\n+RUN_META_FILENAME = \"run_meta.json\"\n+\n+\n+def _extract_diff(result: dict[str, Any]) -> str:\n+    inner = result.get(\"result\") or {}\n+    git_status = inner.get(\"gitStatus\")\n+    if isinstance(git_status, dict):\n+        d = git_status.get(\"diff\") or \"\"\n+        if d:\n+            return d\n+    summary = inner.get(\"summary\")\n+    if isinstance(summary, dict):\n+        d = summary.get(\"diff\") or \"\"\n+        if d:\n+            return d\n+    return (result.get(\"summary\") or {}).get(\"diff\", \"\") or \"\"\n+\n+\n+def _extract_summary_block(result: dict[str, Any]) -> tuple[str | None, str | None]:\n+    inner = result.get(\"result\") or {}\n+    summary = inner.get(\"summary\") or result.get(\"summary\")\n+    if not isinstance(summary, dict):\n+        return None, None\n+    return summary.get(\"commitMessage\") or None, summary.get(\"instructions\") or None\n+\n+\n+def _build_case(\n+    case_id: int,\n+    result: dict[str, Any],\n+    csv_row: dict[str, str] | None,\n+    is_golden: bool,\n+) -> CaseView:\n+    inner = result.get(\"result\") or {}\n+    telemetry = inner.get(\"telemetry\") if isinstance(inner.get(\"telemetry\"), dict) else {}\n+\n+    diff = _extract_diff(result)\n+    commit_message, instructions = _extract_summary_block(result)\n+\n+    grade = result.get(\"grade\") if isinstance(result.get(\"grade\"), dict) else None\n+    if grade:\n+        checks = [\n+            CheckView(name=name, passed=bool(c.get(\"pass\")), detail=c.get(\"detail\", \"\"))\n+            for name, c in (grade.get(\"checks\") or {}).items()\n+        ]\n+        passed = bool(grade.get(\"pass\"))\n+        failure_class = grade.get(\"failure_class\")\n+        has_grade = True\n+    else:\n+        checks = []\n+        passed = bool(result.get(\"ok\", False))\n+        failure_class = None\n+        has_grade = False\n+\n+    return CaseView(\n+        case_id=case_id,\n+        prompt=result.get(\"prompt\", \"\") or \"\",\n+        notes=(csv_row.get(\"notes\") if csv_row else None) or None,\n+        category=(csv_row.get(\"category\") if csv_row else \"\") or \"\",\n+        subcategory=(csv_row.get(\"subcategory\") if csv_row else \"\") or \"\",\n+        priority=(csv_row.get(\"priority\") if csv_row else \"\") or \"\",\n+        expected_outcome=(csv_row.get(\"expected_outcome\") if csv_row else \"\") or \"\",\n+        is_golden=is_golden,\n+        passed=passed,\n+        failure_class=failure_class,\n+        checks=checks,\n+        has_grade=has_grade,\n+        diff=diff,\n+        diff_html=diff_html.render(diff),\n+        conversational_reply=inner.get(\"conversationalResponse\") or None,\n+        commit_message=commit_message,\n+        summary_instructions=instructions,\n+        iterations=int(telemetry.get(\"iterations\", inner.get(\"iterations\", 0)) or 0),\n+        build_attempts=int(telemetry.get(\"buildAttempts\", inner.get(\"buildAttempts\", 0)) or 0),\n+        edits_count=int(telemetry.get(\"editsCount\", inner.get(\"editsCount\", 0)) or 0),\n+        tool_calls_count=telemetry.get(\"toolCallsCount\"),\n+        thinking_count=telemetry.get(\"thinkingCount\"),\n+        duration_ms=int(telemetry.get(\"durationMs\", 0) or 0),\n+        total_tokens=int(telemetry.get(\"totalTokens\", 0) or 0),\n+        state=result.get(\"state\") or inner.get(\"state\") or \"\",\n+        log_excerpt=None,\n+        evolve_model=result.get(\"evolveModel\"),\n+        evolve_provider=result.get(\"evolveProvider\"),\n+    )\n+\n+\n+def _parse_iso(s: str | None) -> datetime | None:\n+    if not s:\n+        return None\n+    try:\n+        return datetime.fromisoformat(s.replace(\"Z\", \"+00:00\"))\n+    except ValueError:\n+        return None\n+\n+\n+def _build_meta(\n+    cases: list[CaseView],\n+    results_dir: Path,\n+    run_meta_path: Path,\n+    golden_only: bool,\n+) -> RunMeta:\n+    title = \"golden set\" if golden_only else \"full eval\"\n+    generated_at = datetime.now()\n+\n+    raw: dict[str, Any] = {}\n+    sourced_from = \"derived\"\n+    if run_meta_path.exists():\n+        try:\n+            with run_meta_path.open() as f:\n+                raw = json.load(f)",
    "path": "apps/eval/report/loader.py",
    "commit_id": "913b0c94c72e655237a22f344eb4030e3be13bb5",
    "original_commit_id": "913b0c94c72e655237a22f344eb4030e3be13bb5",
    "user": {
      "login": "Copilot",
      "id": 175728472,
      "node_id": "BOT_kgDOCnlnWA",
      "avatar_url": "https://avatars.githubusercontent.com/in/946600?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/Copilot",
      "html_url": "https://github.com/apps/copilot-pull-request-reviewer",
      "followers_url": "https://api.github.com/users/Copilot/followers",
      "following_url": "https://api.github.com/users/Copilot/following{/other_user}",
      "gists_url": "https://api.github.com/users/Copilot/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/Copilot/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/Copilot/subscriptions",
      "organizations_url": "https://api.github.com/users/Copilot/orgs",
      "repos_url": "https://api.github.com/users/Copilot/repos",
      "events_url": "https://api.github.com/users/Copilot/events{/privacy}",
      "received_events_url": "https://api.github.com/users/Copilot/received_events",
      "type": "Bot",
      "user_view_type": "public",
      "site_admin": false
    },
    "body": "Result JSON / run_meta JSON are opened without an explicit encoding. Prompts and diffs can contain non-ASCII, so relying on the default locale encoding can cause decode errors on some systems. Prefer `encoding=\"utf-8\"` for these JSON reads.",
    "created_at": "2026-06-04T21:49:06Z",
    "updated_at": "2026-06-04T21:49:08Z",
    "html_url": "https://github.com/darkmatter/nixmac-web/pull/266#discussion_r3359087869",
    "pull_request_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266",
    "_links": {
      "self": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/comments/3359087869"
      },
      "html": {
        "href": "https://github.com/darkmatter/nixmac-web/pull/266#discussion_r3359087869"
      },
      "pull_request": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266"
      }
    },
    "reactions": {
      "url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/comments/3359087869/reactions",
      "total_count": 0,
      "+1": 0,
      "-1": 0,
      "laugh": 0,
      "hooray": 0,
      "confused": 0,
      "heart": 0,
      "rocket": 0,
      "eyes": 0
    },
    "start_line": 127,
    "original_start_line": 127,
    "start_side": "RIGHT",
    "line": 130,
    "original_line": 130,
    "side": "RIGHT",
    "author_association": "NONE",
    "original_position": 130,
    "position": 130,
    "subject_type": "line"
  },
  "pull_request": {
    "url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266",
    "id": 3806174943,
    "node_id": "PR_kwDOQc69G87i3Z7f",
    "html_url": "https://github.com/darkmatter/nixmac-web/pull/266",
    "diff_url": "https://github.com/darkmatter/nixmac-web/pull/266.diff",
    "patch_url": "https://github.com/darkmatter/nixmac-web/pull/266.patch",
    "issue_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/266",
    "number": 266,
    "state": "open",
    "locked": false,
    "title": "feature: eval report generation (first iteration)",
    "user": {
      "login": "arximboldi",
      "id": 4521138,
      "node_id": "MDQ6VXNlcjQ1MjExMzg=",
      "avatar_url": "https://avatars.githubusercontent.com/u/4521138?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/arximboldi",
      "html_url": "https://github.com/arximboldi",
      "followers_url": "https://api.github.com/users/arximboldi/followers",
      "following_url": "https://api.github.com/users/arximboldi/following{/other_user}",
      "gists_url": "https://api.github.com/users/arximboldi/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/arximboldi/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/arximboldi/subscriptions",
      "organizations_url": "https://api.github.com/users/arximboldi/orgs",
      "repos_url": "https://api.github.com/users/arximboldi/repos",
      "events_url": "https://api.github.com/users/arximboldi/events{/privacy}",
      "received_events_url": "https://api.github.com/users/arximboldi/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "body": "Introduces a `apps/eval/generate_report.py` script that generates an HTML report for a given report. You need to call it after `run_evals.py`, `grade.py` and `calc_stats.py`.\r\n\r\nFuture features include:\r\n- Improve the ergonomics of the whole workflow (perhaps merge scripts into a single command).\r\n- Support passing the initial Nix template (currently it seems to use the config.\r\n- Running and comparing multiple evaluations with different settings (different commits of Nixmac, different Nix templates, different LLM backends, etc.)",
    "created_at": "2026-06-04T21:42:30Z",
    "updated_at": "2026-06-04T21:49:08Z",
    "closed_at": null,
    "merged_at": null,
    "merge_commit_sha": "11b32c9a5eeb620ac88bf158e1b406aafc60ddbb",
    "assignees": [
      {
        "login": "arximboldi",
        "id": 4521138,
        "node_id": "MDQ6VXNlcjQ1MjExMzg=",
        "avatar_url": "https://avatars.githubusercontent.com/u/4521138?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/arximboldi",
        "html_url": "https://github.com/arximboldi",
        "followers_url": "https://api.github.com/users/arximboldi/followers",
        "following_url": "https://api.github.com/users/arximboldi/following{/other_user}",
        "gists_url": "https://api.github.com/users/arximboldi/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/arximboldi/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/arximboldi/subscriptions",
        "organizations_url": "https://api.github.com/users/arximboldi/orgs",
        "repos_url": "https://api.github.com/users/arximboldi/repos",
        "events_url": "https://api.github.com/users/arximboldi/events{/privacy}",
        "received_events_url": "https://api.github.com/users/arximboldi/received_events",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      }
    ],
    "requested_reviewers": [
      {
        "login": "scottmcmaster",
        "id": 3137688,
        "node_id": "MDQ6VXNlcjMxMzc2ODg=",
        "avatar_url": "https://avatars.githubusercontent.com/u/3137688?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/scottmcmaster",
        "html_url": "https://github.com/scottmcmaster",
        "followers_url": "https://api.github.com/users/scottmcmaster/followers",
        "following_url": "https://api.github.com/users/scottmcmaster/following{/other_user}",
        "gists_url": "https://api.github.com/users/scottmcmaster/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/scottmcmaster/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/scottmcmaster/subscriptions",
        "organizations_url": "https://api.github.com/users/scottmcmaster/orgs",
        "repos_url": "https://api.github.com/users/scottmcmaster/repos",
        "events_url": "https://api.github.com/users/scottmcmaster/events{/privacy}",
        "received_events_url": "https://api.github.com/users/scottmcmaster/received_events",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      {
        "login": "fkb032",
        "id": 249513614,
        "node_id": "U_kgDODt9Gjg",
        "avatar_url": "https://avatars.githubusercontent.com/u/249513614?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/fkb032",
        "html_url": "https://github.com/fkb032",
        "followers_url": "https://api.github.com/users/fkb032/followers",
        "following_url": "https://api.github.com/users/fkb032/following{/other_user}",
        "gists_url": "https://api.github.com/users/fkb032/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/fkb032/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/fkb032/subscriptions",
        "organizations_url": "https://api.github.com/users/fkb032/orgs",
        "repos_url": "https://api.github.com/users/fkb032/repos",
        "events_url": "https://api.github.com/users/fkb032/events{/privacy}",
        "received_events_url": "https://api.github.com/users/fkb032/received_events",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      }
    ],
    "requested_teams": [],
    "labels": [],
    "milestone": null,
    "draft": false,
    "commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266/commits",
    "review_comments_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266/comments",
    "review_comment_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/comments{/number}",
    "comments_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/266/comments",
    "statuses_url": "https://api.github.com/repos/darkmatter/nixmac-web/statuses/913b0c94c72e655237a22f344eb4030e3be13bb5",
    "head": {
      "label": "darkmatter:jp/eval-report",
      "ref": "jp/eval-report",
      "sha": "913b0c94c72e655237a22f344eb4030e3be13bb5",
      "user": {
        "login": "darkmatter",
        "id": 17834193,
        "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
        "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/darkmatter",
        "html_url": "https://github.com/darkmatter",
        "followers_url": "https://api.github.com/users/darkmatter/followers",
        "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
        "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
        "organizations_url": "https://api.github.com/users/darkmatter/orgs",
        "repos_url": "https://api.github.com/users/darkmatter/repos",
        "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
        "received_events_url": "https://api.github.com/users/darkmatter/received_events",
        "type": "Organization",
        "user_view_type": "public",
        "site_admin": false
      },
      "repo": {
        "id": 1104067867,
        "node_id": "R_kgDOQc69Gw",
        "name": "nixmac-web",
        "full_name": "darkmatter/nixmac-web",
        "private": true,
        "owner": {
          "login": "darkmatter",
          "id": 17834193,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
          "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/darkmatter",
          "html_url": "https://github.com/darkmatter",
          "followers_url": "https://api.github.com/users/darkmatter/followers",
          "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
          "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
          "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
          "organizations_url": "https://api.github.com/users/darkmatter/orgs",
          "repos_url": "https://api.github.com/users/darkmatter/repos",
          "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
          "received_events_url": "https://api.github.com/users/darkmatter/received_events",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "html_url": "https://github.com/darkmatter/nixmac-web",
        "description": null,
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/nixmac-web",
        "forks_url": "https://api.github.com/repos/darkmatter/nixmac-web/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/nixmac-web/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/nixmac-web/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/nixmac-web/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/nixmac-web/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/nixmac-web/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/nixmac-web/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/nixmac-web/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/nixmac-web/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/nixmac-web/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/nixmac-web/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/nixmac-web/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/nixmac-web/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/nixmac-web/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/nixmac-web/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/nixmac-web/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/nixmac-web/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/nixmac-web/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/nixmac-web/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/nixmac-web/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/nixmac-web/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/nixmac-web/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/nixmac-web/deployments",
        "created_at": "2025-11-25T17:53:44Z",
        "updated_at": "2026-06-02T22:19:34Z",
        "pushed_at": "2026-06-04T21:37:10Z",
        "git_url": "git://github.com/darkmatter/nixmac-web.git",
        "ssh_url": "git@github.com:darkmatter/nixmac-web.git",
        "clone_url": "https://github.com/darkmatter/nixmac-web.git",
        "svn_url": "https://github.com/darkmatter/nixmac-web",
        "homepage": null,
        "size": 72846,
        "stargazers_count": 1,
        "watchers_count": 1,
        "language": "TypeScript",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 3,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "internal",
        "forks": 0,
        "open_issues": 3,
        "watchers": 1,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "base": {
      "label": "darkmatter:main",
      "ref": "main",
      "sha": "081ab8d87fdfc5e2c63780a77ec7a0b585eb880d",
      "user": {
        "login": "darkmatter",
        "id": 17834193,
        "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
        "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/darkmatter",
        "html_url": "https://github.com/darkmatter",
        "followers_url": "https://api.github.com/users/darkmatter/followers",
        "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
        "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
        "organizations_url": "https://api.github.com/users/darkmatter/orgs",
        "repos_url": "https://api.github.com/users/darkmatter/repos",
        "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
        "received_events_url": "https://api.github.com/users/darkmatter/received_events",
        "type": "Organization",
        "user_view_type": "public",
        "site_admin": false
      },
      "repo": {
        "id": 1104067867,
        "node_id": "R_kgDOQc69Gw",
        "name": "nixmac-web",
        "full_name": "darkmatter/nixmac-web",
        "private": true,
        "owner": {
          "login": "darkmatter",
          "id": 17834193,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
          "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/darkmatter",
          "html_url": "https://github.com/darkmatter",
          "followers_url": "https://api.github.com/users/darkmatter/followers",
          "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
          "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
          "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
          "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
          "organizations_url": "https://api.github.com/users/darkmatter/orgs",
          "repos_url": "https://api.github.com/users/darkmatter/repos",
          "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
          "received_events_url": "https://api.github.com/users/darkmatter/received_events",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "html_url": "https://github.com/darkmatter/nixmac-web",
        "description": null,
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/nixmac-web",
        "forks_url": "https://api.github.com/repos/darkmatter/nixmac-web/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/nixmac-web/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/nixmac-web/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/nixmac-web/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/nixmac-web/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/nixmac-web/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/nixmac-web/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/nixmac-web/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/nixmac-web/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/nixmac-web/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/nixmac-web/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/nixmac-web/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/nixmac-web/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/nixmac-web/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/nixmac-web/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/nixmac-web/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/nixmac-web/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/nixmac-web/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/nixmac-web/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/nixmac-web/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/nixmac-web/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/nixmac-web/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/nixmac-web/deployments",
        "created_at": "2025-11-25T17:53:44Z",
        "updated_at": "2026-06-02T22:19:34Z",
        "pushed_at": "2026-06-04T21:37:10Z",
        "git_url": "git://github.com/darkmatter/nixmac-web.git",
        "ssh_url": "git@github.com:darkmatter/nixmac-web.git",
        "clone_url": "https://github.com/darkmatter/nixmac-web.git",
        "svn_url": "https://github.com/darkmatter/nixmac-web",
        "homepage": null,
        "size": 72846,
        "stargazers_count": 1,
        "watchers_count": 1,
        "language": "TypeScript",
        "has_issues": true,
        "has_projects": true,
        "has_downloads": true,
        "has_wiki": true,
        "has_pages": false,
        "has_discussions": false,
        "forks_count": 0,
        "mirror_url": null,
        "archived": false,
        "disabled": false,
        "open_issues_count": 3,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "internal",
        "forks": 0,
        "open_issues": 3,
        "watchers": 1,
        "default_branch": "main",
        "allow_squash_merge": true,
        "allow_merge_commit": true,
        "allow_rebase_merge": true,
        "allow_auto_merge": false,
        "delete_branch_on_merge": false,
        "allow_update_branch": false,
        "use_squash_pr_title_as_default": false,
        "squash_merge_commit_message": "COMMIT_MESSAGES",
        "squash_merge_commit_title": "COMMIT_OR_PR_TITLE",
        "merge_commit_message": "PR_TITLE",
        "merge_commit_title": "MERGE_MESSAGE"
      }
    },
    "_links": {
      "self": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266"
      },
      "html": {
        "href": "https://github.com/darkmatter/nixmac-web/pull/266"
      },
      "issue": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/issues/266"
      },
      "comments": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/issues/266/comments"
      },
      "review_comments": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266/comments"
      },
      "review_comment": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/comments{/number}"
      },
      "commits": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/pulls/266/commits"
      },
      "statuses": {
        "href": "https://api.github.com/repos/darkmatter/nixmac-web/statuses/913b0c94c72e655237a22f344eb4030e3be13bb5"
      }
    },
    "author_association": "CONTRIBUTOR",
    "auto_merge": null,
    "assignee": {
      "login": "arximboldi",
      "id": 4521138,
      "node_id": "MDQ6VXNlcjQ1MjExMzg=",
      "avatar_url": "https://avatars.githubusercontent.com/u/4521138?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/arximboldi",
      "html_url": "https://github.com/arximboldi",
      "followers_url": "https://api.github.com/users/arximboldi/followers",
      "following_url": "https://api.github.com/users/arximboldi/following{/other_user}",
      "gists_url": "https://api.github.com/users/arximboldi/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/arximboldi/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/arximboldi/subscriptions",
      "organizations_url": "https://api.github.com/users/arximboldi/orgs",
      "repos_url": "https://api.github.com/users/arximboldi/repos",
      "events_url": "https://api.github.com/users/arximboldi/events{/privacy}",
      "received_events_url": "https://api.github.com/users/arximboldi/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "active_lock_reason": null
  },
  "repository": {
    "id": 1104067867,
    "node_id": "R_kgDOQc69Gw",
    "name": "nixmac-web",
    "full_name": "darkmatter/nixmac-web",
    "private": true,
    "owner": {
      "login": "darkmatter",
      "id": 17834193,
      "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
      "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/darkmatter",
      "html_url": "https://github.com/darkmatter",
      "followers_url": "https://api.github.com/users/darkmatter/followers",
      "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
      "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
      "organizations_url": "https://api.github.com/users/darkmatter/orgs",
      "repos_url": "https://api.github.com/users/darkmatter/repos",
      "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
      "received_events_url": "https://api.github.com/users/darkmatter/received_events",
      "type": "Organization",
      "user_view_type": "public",
      "site_admin": false
    },
    "html_url": "https://github.com/darkmatter/nixmac-web",
    "description": null,
    "fork": false,
    "url": "https://api.github.com/repos/darkmatter/nixmac-web",
    "forks_url": "https://api.github.com/repos/darkmatter/nixmac-web/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/nixmac-web/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/nixmac-web/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/nixmac-web/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/nixmac-web/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/nixmac-web/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/nixmac-web/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/nixmac-web/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/nixmac-web/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/nixmac-web/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/nixmac-web/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/nixmac-web/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/nixmac-web/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/nixmac-web/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/nixmac-web/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/nixmac-web/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/nixmac-web/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/nixmac-web/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/nixmac-web/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/nixmac-web/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/nixmac-web/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/nixmac-web/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/nixmac-web/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/nixmac-web/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/nixmac-web/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/nixmac-web/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/nixmac-web/deployments",
    "created_at": "2025-11-25T17:53:44Z",
    "updated_at": "2026-06-02T22:19:34Z",
    "pushed_at": "2026-06-04T21:37:10Z",
    "git_url": "git://github.com/darkmatter/nixmac-web.git",
    "ssh_url": "git@github.com:darkmatter/nixmac-web.git",
    "clone_url": "https://github.com/darkmatter/nixmac-web.git",
    "svn_url": "https://github.com/darkmatter/nixmac-web",
    "homepage": null,
    "size": 72846,
    "stargazers_count": 1,
    "watchers_count": 1,
    "language": "TypeScript",
    "has_issues": true,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": false,
    "has_discussions": false,
    "forks_count": 0,
    "mirror_url": null,
    "archived": false,
    "disabled": false,
    "open_issues_count": 3,
    "license": null,
    "allow_forking": false,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": [],
    "visibility": "internal",
    "forks": 0,
    "open_issues": 3,
    "watchers": 1,
    "default_branch": "main",
    "custom_properties": {}
  },
  "organization": {
    "login": "darkmatter",
    "id": 17834193,
    "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
    "url": "https://api.github.com/orgs/darkmatter",
    "repos_url": "https://api.github.com/orgs/darkmatter/repos",
    "events_url": "https://api.github.com/orgs/darkmatter/events",
    "hooks_url": "https://api.github.com/orgs/darkmatter/hooks",
    "issues_url": "https://api.github.com/orgs/darkmatter/issues",
    "members_url": "https://api.github.com/orgs/darkmatter/members{/member}",
    "public_members_url": "https://api.github.com/orgs/darkmatter/public_members{/member}",
    "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
    "description": ""
  },
  "enterprise": {
    "id": 469843,
    "slug": "darkmatter",
    "name": "darkmatter",
    "node_id": "E_kgDOAAcrUw",
    "avatar_url": "https://avatars.githubusercontent.com/b/469843?v=4",
    "description": "",
    "website_url": "darkmatter.io",
    "html_url": "https://github.com/enterprises/darkmatter",
    "created_at": "2025-09-07T16:01:00Z",
    "updated_at": "2026-05-09T15:34:55Z"
  },
  "sender": {
    "login": "Copilot",
    "id": 175728472,
    "node_id": "BOT_kgDOCnlnWA",
    "avatar_url": "https://avatars.githubusercontent.com/in/946600?v=4",
    "gravatar_id": "",
    "url": "https://api.github.com/users/Copilot",
    "html_url": "https://github.com/apps/copilot-pull-request-reviewer",
    "followers_url": "https://api.github.com/users/Copilot/followers",
    "following_url": "https://api.github.com/users/Copilot/following{/other_user}",
    "gists_url": "https://api.github.com/users/Copilot/gists{/gist_id}",
    "starred_url": "https://api.github.com/users/Copilot/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/Copilot/subscriptions",
    "organizations_url": "https://api.github.com/users/Copilot/orgs",
    "repos_url": "https://api.github.com/users/Copilot/repos",
    "events_url": "https://api.github.com/users/Copilot/events{/privacy}",
    "received_events_url": "https://api.github.com/users/Copilot/received_events",
    "type": "Bot",
    "user_view_type": "public",
    "site_admin": false
  },
  "installation": {
    "id": 131074261,
    "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
  }
}