Payload
{
"action": "requested",
"check_suite": {
"id": 72331534594,
"node_id": "CS_kwDOSB6EzM8AAAAQ10uhAg",
"head_branch": "gh-readonly-queue/develop/pr-292-dd78e5f8fc4d85c062a07b3c39703d07cf8b6e8a",
"head_sha": "670aa9857843993f87ba667a2e7b6de4ef400185",
"status": "queued",
"conclusion": null,
"url": "https://api.github.com/repos/darkmatter/nixmac/check-suites/72331534594",
"before": "0000000000000000000000000000000000000000",
"after": "670aa9857843993f87ba667a2e7b6de4ef400185",
"pull_requests": [],
"app": {
"id": 3663660,
"client_id": "Iv23lifA2SLzhklKJM5M",
"slug": "darkmatter",
"node_id": "A_kwHOARAg0c4AN-cs",
"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
},
"name": "darkmatter",
"description": "",
"external_url": "https://dm.sh",
"html_url": "https://github.com/apps/darkmatter",
"created_at": "2026-05-10T08:36:27Z",
"updated_at": "2026-05-22T23:47:35Z",
"permissions": {
"actions": "write",
"actions_variables": "read",
"checks": "write",
"contents": "write",
"custom_properties_for_organizations": "write",
"deployments": "write",
"discussions": "write",
"issues": "write",
"issue_fields": "read",
"issue_types": "read",
"members": "read",
"metadata": "read",
"organization_actions_variables": "write",
"organization_agent_secrets": "read",
"organization_agent_variables": "read",
"organization_codespaces": "write",
"organization_codespaces_secrets": "write",
"organization_copilot_agent_settings": "read",
"organization_custom_properties": "write",
"organization_dependabot_dismissal_requests": "read",
"organization_dependabot_secrets": "read",
"organization_events": "read",
"organization_hooks": "write",
"organization_personal_access_tokens": "write",
"organization_personal_access_token_requests": "write",
"organization_private_registries": "write",
"organization_secrets": "write",
"organization_self_hosted_runners": "write",
"org_copilot_content_exclusion": "read",
"pull_requests": "write",
"repository_hooks": "write",
"secrets": "read",
"statuses": "write",
"user_events": "read",
"workflows": "write"
},
"events": [
"commit_comment",
"create",
"deployment",
"deployment_review",
"deployment_status",
"discussion",
"discussion_comment",
"issues",
"issue_comment",
"pull_request",
"pull_request_review",
"pull_request_review_comment",
"pull_request_review_thread",
"push",
"status",
"sub_issues",
"workflow_job"
]
},
"created_at": "2026-06-04T11:12:41Z",
"updated_at": "2026-06-04T11:12:41Z",
"rerequestable": true,
"runs_rerequestable": true,
"latest_check_runs_count": 0,
"check_runs_url": "https://api.github.com/repos/darkmatter/nixmac/check-suites/72331534594/check-runs",
"head_commit": {
"id": "670aa9857843993f87ba667a2e7b6de4ef400185",
"tree_id": "47e9a6fc42bbe2d5d666343b728382a40cdeacc2",
"message": "chore: fix merge pr 255 (#292)\n\n* feat(console): add resizable log panel\n\n* feat(state): wire runtime slices and summarizer\n\n* chore(fmt): add treefmt wiring\n\n* chore(credentials): remove legacy plaintext fallback\n\n* ci: add evaluate workflow\n\n* fix(theme): scope Minted to Monaco diffs\n\n* feat(settings): split backup and tuning panels\n\n* refactor(frontend): move backend mirrors to viewmodel\n\n* chore(beads): update state migration issues\n\n* fix: repair branch-wide breakage so the merge compiles & tests pass\n\nPrior to this commit, both this branch (since a92e61b3) and the merge\nresult failed `cargo check` with 22 errors. The user asked for cargo +\nbun validation against the merge resolution, so this commit fixes the\npreexisting structural breakage that the merge inherited, plus a few\nfollow-ups uncovered by the test suites.\n\nRust:\n- git/mod.rs: restore the develop-side mod.rs that declares\n `pub mod query` / `pub mod init` and re-exports the right names from\n each. The orphan query.rs / init.rs files were already on disk; only\n the mod entry was missing after a92e61b3 accidentally gutted it.\n- evolve/mod.rs: route `repo_root` through `git::query` (its new home),\n pull `FileEdit` from `shared_types`, re-export `Evolution` from\n `shared_types::Evolution` (types.rs only imports it, doesn't re-export\n it), and fix the `made_edit_or_build_check` typo that develop's PR\n #272 introduced (variable never defined; should be\n `made_edit || made_build_check`).\n- shared_types/git.rs: re-add `WatcherEvent` alongside the unused\n `GitState` slice type — `state/watcher.rs` still constructs it and\n needs the symbol back. Marked `GitState` `#[allow(dead_code)]` until\n the watcher migration finishes.\n- summarize/queue_summarizer.rs: `#[allow(dead_code)]` on the\n not-yet-wired worker scaffolding (a92e61b3 carryover).\n- commands/settings_io.rs: update an EvolutionLimits test fixture to\n include the new `max_token_budget` / `max_output_tokens` fields.\n\nFrontend (post-merge tweaks):\n- ipc/api.ts: drop the duplicate `devConfigs` entry the auto-merge\n produced (it appeared once near `settings` and again after\n `promptHistory`).\n- ipc/types.ts: regenerated via `cargo run --example specta_gen_ts` to\n drop duplicated `ConfigField` / `ConfigurableSchema` / `EnumVariant`\n / `FieldType` blocks the auto-merge dual-inserted.\n- viewmodel/git.ts + viewmodel.test.ts: switch the\n `git_state_changed` payload type from `GitState` (unused TS-side) to\n `WatcherEvent` (what the Rust watcher actually emits).\n- hooks/use-evolve.ts: drop the eager `mirrorChangeMapState(null)` at\n the top of `handleEvolve`. Line 109 already correctly avoids\n overwriting the change map for conversational responses; the eager\n clear contradicted that and broke develop's PR #243 test that\n exercises conversational follow-ups.\n- Tests (`use-evolve.test.ts`, `use-rollback.test.ts`,\n `prompt-input.test.tsx`, `system-defaults-cta.test.tsx`): swap the\n removed `setGitStatus` / `setEvolveState` / `setChangeMap` /\n `setSummaryAvailable` widget-store setters for the viewmodel mirror\n fns (`mirrorGitState`, `mirrorEvolveState`, `mirrorChangeMapState`).\n `summaryAvailable` no longer exists on the widget store; the\n related assertions are dropped.\n- Storybook snapshots: 30 stories were regenerated after the\n AI Models tab field split, the system-defaults icon swap, and the\n hunk-pill render going through `DiffLineStatsBadge`.\n\nValidation:\n- `cargo check`: clean\n- `cargo test`: 366 passed\n- `bun run test:unit`: 116 passed\n- `bun run test:storybook`: 165 passed\n- `bun run build` (tsc + vite): clean\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>\n\n* fix signing\n\n* refactor: restore slice-event-per-slice contract in watcher\n\nThe earlier repair commit (8a19689e) brought back `WatcherEvent` to make\nstate/watcher.rs compile, but that struct bundles four slices' worth of\nstate (git_status, change_map, evolve_state, error) onto the\n`git_state_changed` channel. The intended architecture is one event per\nslice, each carrying just that slice's state.\n\nWatcher now emits:\n- `git_state_changed` → GitState { git_status, external_build_detected }\n- `change_map_changed` → SemanticChangeMap (unchanged)\n- `evolve_state_changed` is no longer emitted from the watcher at all;\n evolve_state::set() writes through Slice<EvolveState>, whose\n write-guard already emits the event on drop. The watcher was emitting\n it twice.\n\nDrop WatcherEvent from shared_types/git.rs and from the specta\nregistration; the `#[allow(dead_code)]` on GitState becomes unnecessary.\n\nSeparately, queue_summarizer's three #[allow(dead_code)] annotations\nwere honest: the commit a92e61b3 (\"feat: wire runtime slices and\nsummarizer\") never actually wired the worker — `app.manage(start_worker(handle)?)`\nwas missing from main.rs. Adding it now so the pipelines'\n`try_state::<SummarizerState>()` path is actually used instead of always\nfalling back to inline processing.\n\nFrontend follow-ups:\n- viewmodel/git.ts subscribes `git_state_changed` as `GitState` now.\n- viewmodel.test.ts constructs `GitState` (2 fields), not the made-up\n 5-field WatcherEvent.\n- types.ts regenerated via `cargo run --example specta_gen_ts`.\n\nValidation: cargo check clean, 366 cargo tests pass, 116 unit tests\npass, tsc + vite build clean.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>\n\n* fix: some permission tests would fail on CI\n\nReplace with more effective and reproducible tests.\n\n---------\n\nCo-authored-by: Cooper Maruyama <me@cooperm.com>\nCo-authored-by: cooper <1325802+czxtm@users.noreply.github.com>\nCo-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"timestamp": "2026-06-04T11:12:20Z",
"author": {
"name": "Juanpe Bolívar",
"email": "raskolnikov@gnu.org"
},
"committer": {
"name": "GitHub",
"email": "noreply@github.com"
}
}
},
"repository": {
"id": 1209959628,
"node_id": "R_kgDOSB6EzA",
"name": "nixmac",
"full_name": "darkmatter/nixmac",
"private": false,
"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",
"description": "Home manager and nix-darwin that understands plain English",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/nixmac",
"forks_url": "https://api.github.com/repos/darkmatter/nixmac/forks",
"keys_url": "https://api.github.com/repos/darkmatter/nixmac/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/nixmac/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/nixmac/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/nixmac/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/nixmac/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/nixmac/events",
"assignees_url": "https://api.github.com/repos/darkmatter/nixmac/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/nixmac/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/nixmac/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/nixmac/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/nixmac/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/nixmac/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/nixmac/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/nixmac/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/nixmac/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/nixmac/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/nixmac/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/nixmac/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/nixmac/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/nixmac/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/nixmac/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/nixmac/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/nixmac/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/nixmac/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/nixmac/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/nixmac/merges",
"archive_url": "https://api.github.com/repos/darkmatter/nixmac/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/nixmac/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/nixmac/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/nixmac/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/nixmac/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/nixmac/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/nixmac/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/nixmac/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/nixmac/deployments",
"created_at": "2026-04-14T00:37:13Z",
"updated_at": "2026-06-03T12:43:14Z",
"pushed_at": "2026-06-04T11:12:36Z",
"git_url": "git://github.com/darkmatter/nixmac.git",
"ssh_url": "git@github.com:darkmatter/nixmac.git",
"clone_url": "https://github.com/darkmatter/nixmac.git",
"svn_url": "https://github.com/darkmatter/nixmac",
"homepage": "https://nixmac.com",
"size": 679121,
"stargazers_count": 5,
"watchers_count": 5,
"language": "Rust",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 1,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 87,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [
"home-manager",
"nix",
"nix-darwin",
"nix-flake",
"opencode"
],
"visibility": "public",
"forks": 1,
"open_issues": 87,
"watchers": 5,
"default_branch": "develop",
"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": "github-merge-queue[bot]",
"id": 118344674,
"node_id": "BOT_kgDOBw3L4g",
"avatar_url": "https://avatars.githubusercontent.com/u/9919?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-merge-queue%5Bbot%5D",
"html_url": "https://github.com/apps/github-merge-queue",
"followers_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-merge-queue%5Bbot%5D/received_events",
"type": "Bot",
"user_view_type": "public",
"site_admin": false
},
"installation": {
"id": 131074261,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
}
}