Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
75574
Ignored
75538
Jobs dispatched
36

Event 76994950…

← All events

Event

Delivery
76994950-6030-11f1-9673-131e5c45cb3d
Event
pull_request
Action
closed
Received
2026-06-04T16:14:30.515Z
Signature
valid
Parsed
yes
Sender
czxtm
Repo
darkmatter/shadcn-ui-registry
Status
ignored — unsupported_event

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.253",
  "cf-ipcountry": "US",
  "cf-ray": "a0683b20799ec9bb",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "30422",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/c3988e2",
  "x-forwarded-proto": "https",
  "x-github-delivery": "76994950-6030-11f1-9673-131e5c45cb3d",
  "x-github-event": "pull_request",
  "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.253"
}

Payload

{
  "action": "closed",
  "number": 6,
  "pull_request": {
    "url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/6",
    "id": 3803674691,
    "node_id": "PR_kwDOQauchc7it3hD",
    "html_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/6",
    "diff_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/6.diff",
    "patch_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/6.patch",
    "issue_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/6",
    "number": 6,
    "state": "closed",
    "locked": false,
    "title": "feat(registry): add 12 Native wallet UI blocks",
    "user": {
      "login": "czxtm",
      "id": 1325802,
      "node_id": "MDQ6VXNlcjEzMjU4MDI=",
      "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/czxtm",
      "html_url": "https://github.com/czxtm",
      "followers_url": "https://api.github.com/users/czxtm/followers",
      "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
      "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
      "organizations_url": "https://api.github.com/users/czxtm/orgs",
      "repos_url": "https://api.github.com/users/czxtm/repos",
      "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
      "received_events_url": "https://api.github.com/users/czxtm/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "body": "## What\n\nAdds **12 new `registry:block` items** to the blocks section, porting the \"Native\" desktop web3 wallet prototype into the registry. The blocks section goes from 3 → 15.\n\n| Block | Screen |\n|---|---|\n| `native-positions` | Cross-wallet positions overview with live wallet-scope switcher + range/health visualizers |\n| `native-uniswap` | Uniswap V4 LP manager — liquidity histogram, fees, actions rail |\n| `native-aave` | Aave V3 — radial health gauge, supply/borrow ledgers |\n| `native-node` | Reth node inspector — RPC log, latency/mempool sparklines |\n| `native-send` | Send flow: compose → review → sign → success (stateful) |\n| `native-receive` | Receive — deterministic SVG QR, network switcher |\n| `native-onboarding` | Welcome + create-wallet wizard (stateful) |\n| `native-import` | Import flow: method picker → seed grid (stateful) |\n| `native-browser` | Tauri-style browser window with tabs, rendering the dapp |\n| `native-dapp` | \"Harbor\" lending dapp dashboard |\n| `native-wallet` | Detached wallet panel |\n| `native-sheets` | Sign / Send / Passkey modal sheets (switchable) |\n\n## Why\n\nBrings a full desktop-wallet design language into the registry as installable, `Open in v0`-friendly blocks. The source was a no-build, inline-styled prototype; this rewrites every screen to idiomatic **Tailwind + shadcn/ui** so the blocks compose with the rest of the registry.\n\n## How it works\n\n- **Theming via a `.native` scope** ([`globals.css`](../blob/feat/wallet-blocks/src/app/globals.css)): remaps shadcn semantic tokens (`--background`, `--card`, `--primary`, …) to the wallet's warm-neutral OKLCH palette and adds a few named utilities (`bg-surface-1`, `text-up`/`down`/`warn`/`info`). shadcn primitives inside a wallet block adopt the wallet look automatically, and the existing **Nature theme blocks (`dashboard`, `store`) are untouched**.\n- **Shared modules** under `src/components/native/` (`app-shell`, `icons` mapped to lucide-react, `wallet-avatar`, `harbor-dapp`), a `src/lib/native-wallets.ts` data lib, and `src/layouts/native-layout.tsx` for installed blocks.\n- Each block is registered in `registry.json` with its files **bundled so it installs standalone** via the shadcn CLI, and previews are wired into the demo index.\n\n## Reviewer notes\n\n- ✅ `tsc --noEmit` clean · ✅ Biome clean (0 errors / 0 warnings) · ✅ `next build` green (103 static pages)\n- All 12 screens were **visually verified** rendering faithfully. Fixed two issues found in QA: a hydration error (#418) from nested `<button>`s in the browser tabs, and clipped CTAs in the sheets showcase.\n- `public/r/*.json` are gitignored build artifacts (regenerated by `pnpm build` / `registry:build`) and intentionally not committed.\n- AppShell-based blocks each bundle the shared shell + full icon set — intentional (design-system style) so each installs standalone; minor per-block bundle cost.\n- Out of scope (not ported): the prototype's design-canvas / tweaks-panel / Storybook harness and `stories-*.jsx`.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n<!-- codesmith:footer -->\n---\n<a href=\"https://app.blacksmith.sh/darkmatter/codesmith/shadcn-ui-registry/pr/6\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-light-v2.svg\"><img alt=\"View with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"></picture></a> <a href=\"https://backend.blacksmith.sh/track/enable-autofix?expires=1783174998&installation_id=137091173&pr_number=6&repository=darkmatter%2Fshadcn-ui-registry&return_to=https%3A%2F%2Fgithub.com%2Fdarkmatter%2Fshadcn-ui-registry%2Fpull%2F6&signature=0515dd9f88bed51ef37982d75a64a9fc14304956dcc05b9a4d6d1e6a68de544d\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-light.svg\"><img alt=\"Autofix with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"></picture></a>\n<sup>Need help on this PR? Tag <code>@codesmith</code> with what you need. Autofix is disabled.</sup>\n\n<!-- codesmith:autofix:disabled -->\n<!-- /codesmith:footer -->",
    "created_at": "2026-06-04T14:23:15Z",
    "updated_at": "2026-06-04T16:14:28Z",
    "closed_at": "2026-06-04T16:14:28Z",
    "merged_at": "2026-06-04T16:14:28Z",
    "merge_commit_sha": "849fc1d4c80276fa5e9aed47a1667323ba8627e3",
    "assignees": [],
    "requested_reviewers": [],
    "requested_teams": [],
    "labels": [],
    "milestone": null,
    "draft": false,
    "commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/6/commits",
    "review_comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/6/comments",
    "review_comment_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/comments{/number}",
    "comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/6/comments",
    "statuses_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/afc0329374cd4872fdf07f8291c453ee66b2f34b",
    "head": {
      "label": "darkmatter:feat/wallet-blocks",
      "ref": "feat/wallet-blocks",
      "sha": "afc0329374cd4872fdf07f8291c453ee66b2f34b",
      "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": 1101765765,
        "node_id": "R_kgDOQauchQ",
        "name": "shadcn-ui-registry",
        "full_name": "darkmatter/shadcn-ui-registry",
        "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/shadcn-ui-registry",
        "description": null,
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry",
        "forks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/deployments",
        "created_at": "2025-11-22T07:34:56Z",
        "updated_at": "2026-06-04T13:04:00Z",
        "pushed_at": "2026-06-04T14:28:19Z",
        "git_url": "git://github.com/darkmatter/shadcn-ui-registry.git",
        "ssh_url": "git@github.com:darkmatter/shadcn-ui-registry.git",
        "clone_url": "https://github.com/darkmatter/shadcn-ui-registry.git",
        "svn_url": "https://github.com/darkmatter/shadcn-ui-registry",
        "homepage": "https://shadcn-ui-registry-smoky.vercel.app",
        "size": 710,
        "stargazers_count": 0,
        "watchers_count": 0,
        "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": 0,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "private",
        "forks": 0,
        "open_issues": 0,
        "watchers": 0,
        "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": "6ff8f00572bc0259184011a485737208188cd3af",
      "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": 1101765765,
        "node_id": "R_kgDOQauchQ",
        "name": "shadcn-ui-registry",
        "full_name": "darkmatter/shadcn-ui-registry",
        "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/shadcn-ui-registry",
        "description": null,
        "fork": false,
        "url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry",
        "forks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/forks",
        "keys_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/keys{/key_id}",
        "collaborators_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/collaborators{/collaborator}",
        "teams_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/teams",
        "hooks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/hooks",
        "issue_events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/events{/number}",
        "events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/events",
        "assignees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/assignees{/user}",
        "branches_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/branches{/branch}",
        "tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/tags",
        "blobs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/blobs{/sha}",
        "git_tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/tags{/sha}",
        "git_refs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/refs{/sha}",
        "trees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/trees{/sha}",
        "statuses_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/{sha}",
        "languages_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/languages",
        "stargazers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/stargazers",
        "contributors_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contributors",
        "subscribers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscribers",
        "subscription_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscription",
        "commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/commits{/sha}",
        "git_commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/commits{/sha}",
        "comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/comments{/number}",
        "issue_comment_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/comments{/number}",
        "contents_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contents/{+path}",
        "compare_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/compare/{base}...{head}",
        "merges_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/merges",
        "archive_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/{archive_format}{/ref}",
        "downloads_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/downloads",
        "issues_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues{/number}",
        "pulls_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls{/number}",
        "milestones_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/milestones{/number}",
        "notifications_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/notifications{?since,all,participating}",
        "labels_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/labels{/name}",
        "releases_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/releases{/id}",
        "deployments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/deployments",
        "created_at": "2025-11-22T07:34:56Z",
        "updated_at": "2026-06-04T13:04:00Z",
        "pushed_at": "2026-06-04T14:28:19Z",
        "git_url": "git://github.com/darkmatter/shadcn-ui-registry.git",
        "ssh_url": "git@github.com:darkmatter/shadcn-ui-registry.git",
        "clone_url": "https://github.com/darkmatter/shadcn-ui-registry.git",
        "svn_url": "https://github.com/darkmatter/shadcn-ui-registry",
        "homepage": "https://shadcn-ui-registry-smoky.vercel.app",
        "size": 710,
        "stargazers_count": 0,
        "watchers_count": 0,
        "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": 0,
        "license": null,
        "allow_forking": false,
        "is_template": false,
        "web_commit_signoff_required": false,
        "has_pull_requests": true,
        "pull_request_creation_policy": "all",
        "topics": [],
        "visibility": "private",
        "forks": 0,
        "open_issues": 0,
        "watchers": 0,
        "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/shadcn-ui-registry/pulls/6"
      },
      "html": {
        "href": "https://github.com/darkmatter/shadcn-ui-registry/pull/6"
      },
      "issue": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/6"
      },
      "comments": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/6/comments"
      },
      "review_comments": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/6/comments"
      },
      "review_comment": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/comments{/number}"
      },
      "commits": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/6/commits"
      },
      "statuses": {
        "href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/afc0329374cd4872fdf07f8291c453ee66b2f34b"
      }
    },
    "author_association": "MEMBER",
    "auto_merge": null,
    "assignee": null,
    "active_lock_reason": null,
    "merged": true,
    "mergeable": null,
    "rebaseable": null,
    "mergeable_state": "unknown",
    "merged_by": {
      "login": "czxtm",
      "id": 1325802,
      "node_id": "MDQ6VXNlcjEzMjU4MDI=",
      "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/czxtm",
      "html_url": "https://github.com/czxtm",
      "followers_url": "https://api.github.com/users/czxtm/followers",
      "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
      "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
      "organizations_url": "https://api.github.com/users/czxtm/orgs",
      "repos_url": "https://api.github.com/users/czxtm/repos",
      "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
      "received_events_url": "https://api.github.com/users/czxtm/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "comments": 1,
    "review_comments": 0,
    "maintainer_can_modify": false,
    "commits": 2,
    "additions": 8599,
    "deletions": 0,
    "changed_files": 34
  },
  "repository": {
    "id": 1101765765,
    "node_id": "R_kgDOQauchQ",
    "name": "shadcn-ui-registry",
    "full_name": "darkmatter/shadcn-ui-registry",
    "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/shadcn-ui-registry",
    "description": null,
    "fork": false,
    "url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry",
    "forks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/deployments",
    "created_at": "2025-11-22T07:34:56Z",
    "updated_at": "2026-06-04T13:04:00Z",
    "pushed_at": "2026-06-04T14:28:19Z",
    "git_url": "git://github.com/darkmatter/shadcn-ui-registry.git",
    "ssh_url": "git@github.com:darkmatter/shadcn-ui-registry.git",
    "clone_url": "https://github.com/darkmatter/shadcn-ui-registry.git",
    "svn_url": "https://github.com/darkmatter/shadcn-ui-registry",
    "homepage": "https://shadcn-ui-registry-smoky.vercel.app",
    "size": 710,
    "stargazers_count": 0,
    "watchers_count": 0,
    "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": 0,
    "license": null,
    "allow_forking": false,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": [],
    "visibility": "private",
    "forks": 0,
    "open_issues": 0,
    "watchers": 0,
    "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": "czxtm",
    "id": 1325802,
    "node_id": "MDQ6VXNlcjEzMjU4MDI=",
    "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
    "gravatar_id": "",
    "url": "https://api.github.com/users/czxtm",
    "html_url": "https://github.com/czxtm",
    "followers_url": "https://api.github.com/users/czxtm/followers",
    "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
    "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
    "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
    "organizations_url": "https://api.github.com/users/czxtm/orgs",
    "repos_url": "https://api.github.com/users/czxtm/repos",
    "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
    "received_events_url": "https://api.github.com/users/czxtm/received_events",
    "type": "User",
    "user_view_type": "public",
    "site_admin": false
  },
  "installation": {
    "id": 131074261,
    "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
  }
}