Payload
{
"action": "ready_for_review",
"number": 2,
"pull_request": {
"url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/2",
"id": 3133903257,
"node_id": "PR_kwDOQauchc66y5GZ",
"html_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/2",
"diff_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/2.diff",
"patch_url": "https://github.com/darkmatter/shadcn-ui-registry/pull/2.patch",
"issue_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/2",
"number": 2,
"state": "open",
"locked": false,
"title": "Add registry:ui entries for 18 UI components with proper dependencies and file paths",
"user": {
"login": "Copilot",
"id": 198982749,
"node_id": "BOT_kgDOC9w8XQ",
"avatar_url": "https://avatars.githubusercontent.com/in/1143301?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Copilot",
"html_url": "https://github.com/apps/copilot-swe-agent",
"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": "Added proper `registry:ui` entries to `registry.json` for all required UI components from nixmac and stackpanel. Component files already existed in `src/components/ui/`—only registry metadata was missing.\n\n## Changes\n\n- **Updated existing registry:ui entries** with correct file paths (`src/components/ui/{component}.tsx` → `components/ui/{component}.tsx`)\n- **Added 3 missing entries**: `label`, `progress`, `scroll-area`\n- **Set dependencies** based on component imports:\n - `radix-ui` for Radix UI primitives\n - `lucide-react` for icon components\n - `class-variance-authority` for variant-based components\n- **Removed circular registryDependencies** from all entries\n\n## Components Added (18 total)\n\n**From nixmac (17):** accordion, avatar, badge, button, card, checkbox, dialog, dropdown-menu, input, label, scroll-area, select, separator, skeleton, switch, tabs, tooltip\n\n**From stackpanel (1):** progress\n\n## Registry Structure\n\nEach component entry follows the shadcn/ui schema:\n\n```json\n{\n \"name\": \"label\",\n \"type\": \"registry:ui\",\n \"title\": \"Label\",\n \"description\": \"Form labels using Radix UI\",\n \"dependencies\": [\"radix-ui\"],\n \"files\": [{\n \"path\": \"src/components/ui/label.tsx\",\n \"type\": \"registry:ui\",\n \"target\": \"components/ui/label.tsx\"\n }]\n}\n```\n\nBuild output: 40 registry items → 41 JSON files in `public/r/` (gitignored per existing `.gitignore`)\n\n## Notes\n\nRepository uses `radix-ui` umbrella package (v1.4.3) rather than individual `@radix-ui/react-*` packages—all component imports reflect this architecture.\n\n> [!WARNING]\n>\n> <details>\n> <summary>Firewall rules blocked me from connecting to one or more addresses (expand for details)</summary>\n>\n> #### I tried to connect to the following addresses, but was blocked by firewall rules:\n>\n> - `ui.shadcn.com`\n> - Triggering command: `/usr/bin/curl curl -s REDACTED` (dns block)\n>\n> If you need me to access, download, or install something from one of these locations, you can either:\n>\n> - Configure [Actions setup steps](https://gh.io/copilot/actions-setup-steps) to set up my environment, which run before the firewall is enabled\n> - Add the appropriate URLs or hosts to the custom allowlist in this repository's [Copilot coding agent settings](https://github.com/darkmatter/shadcn-ui-registry/settings/copilot/coding_agent) (admins only)\n>\n> </details>\n\n<!-- START COPILOT ORIGINAL PROMPT -->\n\n\n\n<details>\n\n<summary>Original prompt</summary>\n\n> ## Summary\n> Add UI components from the `darkmatter/nixmac` and `darkmatter/stackpanel` repositories to this shadcn-ui registry.\n> \n> ## Components to Add\n> \n> ### From nixmac (`packages/ui/src/components/`):\n> The following components should be added as `registry:ui` items:\n> \n> 1. **Accordion** - Expandable content sections using `@radix-ui/react-accordion`\n> 2. **Avatar** - User profile images with fallback using `@radix-ui/react-avatar`\n> 3. **Badge** - Status indicators and labels with variants (default, secondary, destructive, outline)\n> 4. **Button** - Interactive button with variants (default, destructive, outline, secondary, ghost, link) and sizes\n> 5. **Card** - Container component with CardHeader, CardTitle, CardDescription, CardAction, CardContent, CardFooter\n> 6. **Checkbox** - Form checkbox input using `@radix-ui/react-checkbox`\n> 7. **Dialog** - Modal dialogs using `@radix-ui/react-dialog`\n> 8. **Dropdown Menu** - Contextual menus using `@radix-ui/react-dropdown-menu`\n> 9. **Input** - Text input field\n> 10. **Label** - Form labels using `@radix-ui/react-label`\n> 11. **Scroll Area** - Custom scrollable container using `@radix-ui/react-scroll-area`\n> 12. **Select** - Dropdown selection using `@radix-ui/react-select`\n> 13. **Separator** - Visual dividers using `@radix-ui/react-separator`\n> 14. **Skeleton** - Loading placeholders\n> 15. **Switch** - Toggle switches using `@radix-ui/react-switch`\n> 16. **Tabs** - Tabbed navigation using `@radix-ui/react-tabs`\n> 17. **Tooltip** - Contextual tooltips using `@radix-ui/react-tooltip`\n> \n> ### From stackpanel (`packages/ui-web/src/components/`):\n> 1. **Progress** - Progress bar indicator using `@radix-ui/react-progress` (unique component not in nixmac)\n> \n> ## Implementation Requirements\n> \n> 1. **Update `registry.json`**: Add entries for each component following the existing registry schema format. Each entry should include:\n> - `name`: Component name in kebab-case\n> - `type`: `\"registry:ui\"`\n> - `title`: Human-readable title\n> - `description`: Brief description of the component\n> - `dependencies`: Required npm packages (e.g., `@radix-ui/react-accordion`)\n> - `files`: Array of file objects with `path`, `type`, and `target`\n> \n> 2. **Create component files** in `src/registry/ui/` directory for each component\n> \n> 3. **Adapt imports**: Components should use standard shadcn/ui conventions:\n> - Import `cn` from `@/lib/utils` (not from custom packages)\n> - Use `class-variance-authority` for variant handling\n> - Use `lucide-react` for icons\n> \n> 4. **Follow existing patterns**: Match the style and structure of components already in the registry\n> \n> ## Reference Source Files\n> \n> ### nixmac components location:\n> - https://github.com/darkmatter/nixmac/tree/main/packages/ui/src/components/\n> \n> ### stackpanel Progress component:\n> - https://github.com/darkmatter/stackpanel/blob/main/packages/ui-web/src/components/progress.tsx\n> \n> ## Example Registry Entry Format\n> ```json\n> {\n> \"name\": \"button\",\n> \"type\": \"registry:ui\",\n> \"title\": \"Button\",\n> \"description\": \"A button component with multiple variants and sizes\",\n> \"dependencies\": [\"@radix-ui/react-slot\", \"class-variance-authority\"],\n> \"files\": [\n> {\n> \"path\": \"src/registry/ui/button.tsx\",\n> \"type\": \"registry:ui\",\n> \"target\": \"components/ui/button.tsx\"\n> }\n> ]\n> }\n> ```\n> \n\n\n</details>\n\n\n\n<!-- START COPILOT CODING AGENT SUFFIX -->\n\n*This pull request was created from Copilot chat.*\n>\n\n<!-- START COPILOT CODING AGENT TIPS -->\n---\n\n💬 We'd love your input! Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey).\n",
"created_at": "2025-12-29T08:56:01Z",
"updated_at": "2026-06-03T00:33:24Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "ea0c339a778ff523da8e4a07f2186eee417c6142",
"assignees": [
{
"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
},
{
"login": "Copilot",
"id": 198982749,
"node_id": "BOT_kgDOC9w8XQ",
"avatar_url": "https://avatars.githubusercontent.com/in/1143301?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Copilot",
"html_url": "https://github.com/apps/copilot-swe-agent",
"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
}
],
"requested_reviewers": [
{
"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
}
],
"requested_teams": [],
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/2/commits",
"review_comments_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/2/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/2/comments",
"statuses_url": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/dd2d18002a8fc65679feee3b66ba5b86896eff8c",
"head": {
"label": "darkmatter:copilot/add-ui-components-from-nixmac",
"ref": "copilot/add-ui-components-from-nixmac",
"sha": "dd2d18002a8fc65679feee3b66ba5b86896eff8c",
"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": "2025-12-29T02:23:22Z",
"pushed_at": "2025-12-29T09:07:40Z",
"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": 589,
"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": 1,
"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": 1,
"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": "3b461714383090fa9482b8dcb3da8094ead8089e",
"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": "2025-12-29T02:23:22Z",
"pushed_at": "2025-12-29T09:07:40Z",
"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": 589,
"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": 1,
"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": 1,
"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/2"
},
"html": {
"href": "https://github.com/darkmatter/shadcn-ui-registry/pull/2"
},
"issue": {
"href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/2"
},
"comments": {
"href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/issues/2/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/pulls/2/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/2/commits"
},
"statuses": {
"href": "https://api.github.com/repos/darkmatter/shadcn-ui-registry/statuses/dd2d18002a8fc65679feee3b66ba5b86896eff8c"
}
},
"author_association": "NONE",
"auto_merge": null,
"assignee": null,
"active_lock_reason": null,
"merged": false,
"mergeable": true,
"rebaseable": true,
"mergeable_state": "clean",
"merged_by": null,
"comments": 1,
"review_comments": 0,
"maintainer_can_modify": false,
"commits": 3,
"additions": 161,
"deletions": 169,
"changed_files": 1
},
"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": "2025-12-29T02:23:22Z",
"pushed_at": "2025-12-29T09:07:40Z",
"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": 589,
"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": 1,
"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": 1,
"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"
}
}