Payload
{
"action": "created",
"comment": {
"url": "https://api.github.com/repos/darkmatter/himitsu/pulls/comments/3389621886",
"pull_request_review_id": 4469368416,
"id": 3389621886,
"node_id": "PRRC_kwDORZXrx87KCYZ-",
"diff_hunk": "@@ -43,6 +45,12 @@ use tracing::debug;\n \n use crate::error::{HimitsuError, Result};\n \n+/// Shared memo cell for the lazily-loaded project config. `Default` yields\n+/// an empty cell; `Context` clones share one cell, so the config loads (and\n+/// the legacy `envs:` migration warning fires) at most once per process.",
"path": "rust/src/cli/mod.rs",
"commit_id": "8f7ac2b66ef16f7b8bfc3f70ff68ca28351a46c1",
"original_commit_id": "8f7ac2b66ef16f7b8bfc3f70ff68ca28351a46c1",
"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": "The doc comment says the legacy `envs:` migration warning fires “at most once per process”, but this memo cell is per-invocation/per-Context-family (each new `ProjectConfigCell::default()` in the same process can trigger a new load + warning). Tightening this wording will prevent future confusion when multiple contexts are constructed in tests or long-lived processes.",
"created_at": "2026-06-10T15:42:20Z",
"updated_at": "2026-06-10T15:42:20Z",
"html_url": "https://github.com/darkmatter/himitsu/pull/20#discussion_r3389621886",
"pull_request_url": "https://api.github.com/repos/darkmatter/himitsu/pulls/20",
"_links": {
"self": {
"href": "https://api.github.com/repos/darkmatter/himitsu/pulls/comments/3389621886"
},
"html": {
"href": "https://github.com/darkmatter/himitsu/pull/20#discussion_r3389621886"
},
"pull_request": {
"href": "https://api.github.com/repos/darkmatter/himitsu/pulls/20"
}
},
"reactions": {
"url": "https://api.github.com/repos/darkmatter/himitsu/pulls/comments/3389621886/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"start_line": 48,
"original_start_line": 48,
"start_side": "RIGHT",
"line": 50,
"original_line": 50,
"side": "RIGHT",
"author_association": "NONE",
"original_position": 22,
"position": 22,
"subject_type": "line"
},
"pull_request": {
"url": "https://api.github.com/repos/darkmatter/himitsu/pulls/20",
"id": 3840584652,
"node_id": "PR_kwDORZXrx87k6qvM",
"html_url": "https://github.com/darkmatter/himitsu/pull/20",
"diff_url": "https://github.com/darkmatter/himitsu/pull/20.diff",
"patch_url": "https://github.com/darkmatter/himitsu/pull/20.patch",
"issue_url": "https://api.github.com/repos/darkmatter/himitsu/issues/20",
"number": 20,
"state": "closed",
"locked": false,
"title": "refactor: deepen seams from the 2026-06-09 architecture review",
"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 changed\n\nImplements all seven beads from the 2026-06-09 architecture review (design decisions recorded in `CONTEXT.md`; each bead's close note carries the full spec):\n\n- **`hm-x9r` — Context owns project-config resolution.** `ctx.project_config()` is lazy + memoized (clones share the memo; the dispatcher seeds it in project mode). Fixes the latent `--project` bug class at five sites that still cwd-walked: `generate`, `codegen` ×2, `export`, `check`, and the TUI health sidebar. The raw loaders are now `pub(crate)` internals; `migrate`'s multi-root scan is the one sanctioned direct caller.\n- **`hm-i9k` — OutputResolver** (`rust/src/cli/output_resolver.rs`). One module owns project `outputs:` map → candidates-with-decrypted-tags → selector/alias resolution → decoded values. `open()` is the single decrypt-once scan (zero I/O when no outputs are defined); tri-state `env_map()` replaces exec's ~105-line hand-rolled pipeline; `decode()` serves generate/codegen, which stop decrypting the store twice. Deletes `resolver_candidates_with_tags` and `SecretResolver::resolve_candidates`.\n- **`hm-y36` — exec accepts multiple refs.** `himitsu exec tag:pci prod/db -- cmd` injects the union; every ref must match; the same env var resolving to *different* values across refs is a hard error. The `--` separator is now required (all docs/tests already used it). The zsh completion generator is updated for the new positional shape — the existing test caught that the rename would have silently broken fuzzy completion.\n- **`hm-x7z` — ADR-0001** (`docs/adr/`). Keep last-wins duplicate-key collapse in the file generators (aliases resolve after selectors, so last-wins = \"the alias pins the binding\"); `codegen` gains `generate`'s warning instead of silently clobbering; `exec` stays strict.\n- **`hm-cpc` — StoreOps** (`rust/src/cli/store_ops.rs`). The mutation chain (append-only commit on success *and* failure, push, completions-cache refresh) now lives in one module with two callers: the CLI dispatcher (one finalize per command, so batches stay one commit) and silent TUI mutation cores. Fixes real drift: TUI delete/rekey left the store **dirty** (no commit at all), join `println!`'d into ratatui, and TUI sets skipped env-key validation, effective-store routing, and the cache refresh.\n- **`hm-dwr` — KeyRegistry.** One exhaustive-match row per `KeyAction` (a missing row is a compile error) drives dispatch, help screens (rendered from the **live** keymap, so rebinds show up), and palette shortcuts. The three hardcoded search chords (Ctrl+Space / Ctrl+T / Ctrl+O) became rebindable actions. The `envs` keymap field is renamed `outputs` with a serde alias for existing configs.\n- **`hm-a16` — search-view graduation.** `PathFolding` and `ResultSort` are now pure, terminal-free modules (`rust/src/tui/model/`); `StoreHealth` is a drawable widget (`rust/src/tui/widgets/store_health.rs`). Behavior-identical extraction; all pre-existing view tests pass through the moved code unchanged.\n\n## Bonus fixes (found by the new tests)\n\n- Completions cache invalidation used seconds-granularity max-mtime and missed deletions landing in the same second as the last write — the fingerprint now hashes nanosecond mtime + entry count (self-healing for existing caches).\n- `Ctrl+Space` chords serialized as a literal space and could never roundtrip the whitespace-separated chord config format — now renders as `space`.\n- The secret viewer's single-secret rekey ran against the ambient store instead of the secret's own store, and uncommitted.\n\n## Reviewer notes\n\n- **Deliberate behavior deltas:** exec without `--` (undocumented form) now errors with a clap usage message; `codegen` warns on duplicate keys (was silent); local undecryptable entries in generate/codegen now produce SecretResolver's rich \"no matching key\" diagnostic instead of the raw age error; TUI mutations now commit/push/refresh like their CLI equivalents.\n- **Documented deviation:** the review originally planned for the Outputs view to adopt PathFolding/ResultSort in this change, but its presumed duplication turned out to be two one-line alphabetical sorts — adoption would have added a hypothetical seam, so it was evaluated and skipped (recorded in `CONTEXT.md` and the bead close).\n- `demo/demo-vhs.gif` was modified by something outside this session and is intentionally **not** included in this PR.\n- Gates at HEAD, run twice: **691 lib + 155 integration tests green, clippy 0 warnings**.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)",
"created_at": "2026-06-10T15:15:51Z",
"updated_at": "2026-06-10T15:42:20Z",
"closed_at": "2026-06-10T15:41:44Z",
"merged_at": "2026-06-10T15:41:44Z",
"merge_commit_sha": "a17007abd4c42c51659fe163cf18b515ac432a10",
"assignees": [],
"requested_reviewers": [],
"requested_teams": [],
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/darkmatter/himitsu/pulls/20/commits",
"review_comments_url": "https://api.github.com/repos/darkmatter/himitsu/pulls/20/comments",
"review_comment_url": "https://api.github.com/repos/darkmatter/himitsu/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/darkmatter/himitsu/issues/20/comments",
"statuses_url": "https://api.github.com/repos/darkmatter/himitsu/statuses/8f7ac2b66ef16f7b8bfc3f70ff68ca28351a46c1",
"head": {
"label": "darkmatter:refactor/arch-review-deepening",
"ref": "refactor/arch-review-deepening",
"sha": "8f7ac2b66ef16f7b8bfc3f70ff68ca28351a46c1",
"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": 1167453127,
"node_id": "R_kgDORZXrxw",
"name": "himitsu",
"full_name": "darkmatter/himitsu",
"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/himitsu",
"description": "Age-based secrets with cross-repo sharing, recipient groups, and typed codegen",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/himitsu",
"forks_url": "https://api.github.com/repos/darkmatter/himitsu/forks",
"keys_url": "https://api.github.com/repos/darkmatter/himitsu/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/himitsu/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/himitsu/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/himitsu/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/himitsu/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/himitsu/events",
"assignees_url": "https://api.github.com/repos/darkmatter/himitsu/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/himitsu/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/himitsu/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/himitsu/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/himitsu/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/himitsu/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/himitsu/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/himitsu/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/himitsu/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/himitsu/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/himitsu/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/himitsu/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/himitsu/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/himitsu/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/himitsu/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/himitsu/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/himitsu/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/himitsu/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/himitsu/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/himitsu/merges",
"archive_url": "https://api.github.com/repos/darkmatter/himitsu/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/himitsu/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/himitsu/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/himitsu/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/himitsu/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/himitsu/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/himitsu/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/himitsu/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/himitsu/deployments",
"created_at": "2026-02-26T10:04:21Z",
"updated_at": "2026-06-09T13:22:19Z",
"pushed_at": "2026-06-10T15:41:44Z",
"git_url": "git://github.com/darkmatter/himitsu.git",
"ssh_url": "git@github.com:darkmatter/himitsu.git",
"clone_url": "https://github.com/darkmatter/himitsu.git",
"svn_url": "https://github.com/darkmatter/himitsu",
"homepage": "",
"size": 12820,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Rust",
"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": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"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": "ba602f44c2f7f65dc175a32d59e0317986c8d73f",
"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": 1167453127,
"node_id": "R_kgDORZXrxw",
"name": "himitsu",
"full_name": "darkmatter/himitsu",
"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/himitsu",
"description": "Age-based secrets with cross-repo sharing, recipient groups, and typed codegen",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/himitsu",
"forks_url": "https://api.github.com/repos/darkmatter/himitsu/forks",
"keys_url": "https://api.github.com/repos/darkmatter/himitsu/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/himitsu/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/himitsu/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/himitsu/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/himitsu/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/himitsu/events",
"assignees_url": "https://api.github.com/repos/darkmatter/himitsu/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/himitsu/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/himitsu/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/himitsu/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/himitsu/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/himitsu/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/himitsu/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/himitsu/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/himitsu/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/himitsu/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/himitsu/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/himitsu/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/himitsu/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/himitsu/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/himitsu/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/himitsu/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/himitsu/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/himitsu/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/himitsu/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/himitsu/merges",
"archive_url": "https://api.github.com/repos/darkmatter/himitsu/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/himitsu/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/himitsu/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/himitsu/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/himitsu/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/himitsu/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/himitsu/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/himitsu/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/himitsu/deployments",
"created_at": "2026-02-26T10:04:21Z",
"updated_at": "2026-06-09T13:22:19Z",
"pushed_at": "2026-06-10T15:41:44Z",
"git_url": "git://github.com/darkmatter/himitsu.git",
"ssh_url": "git@github.com:darkmatter/himitsu.git",
"clone_url": "https://github.com/darkmatter/himitsu.git",
"svn_url": "https://github.com/darkmatter/himitsu",
"homepage": "",
"size": 12820,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Rust",
"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": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"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/himitsu/pulls/20"
},
"html": {
"href": "https://github.com/darkmatter/himitsu/pull/20"
},
"issue": {
"href": "https://api.github.com/repos/darkmatter/himitsu/issues/20"
},
"comments": {
"href": "https://api.github.com/repos/darkmatter/himitsu/issues/20/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/darkmatter/himitsu/pulls/20/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/darkmatter/himitsu/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/darkmatter/himitsu/pulls/20/commits"
},
"statuses": {
"href": "https://api.github.com/repos/darkmatter/himitsu/statuses/8f7ac2b66ef16f7b8bfc3f70ff68ca28351a46c1"
}
},
"author_association": "MEMBER",
"auto_merge": null,
"assignee": null,
"active_lock_reason": null
},
"repository": {
"id": 1167453127,
"node_id": "R_kgDORZXrxw",
"name": "himitsu",
"full_name": "darkmatter/himitsu",
"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/himitsu",
"description": "Age-based secrets with cross-repo sharing, recipient groups, and typed codegen",
"fork": false,
"url": "https://api.github.com/repos/darkmatter/himitsu",
"forks_url": "https://api.github.com/repos/darkmatter/himitsu/forks",
"keys_url": "https://api.github.com/repos/darkmatter/himitsu/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/darkmatter/himitsu/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/darkmatter/himitsu/teams",
"hooks_url": "https://api.github.com/repos/darkmatter/himitsu/hooks",
"issue_events_url": "https://api.github.com/repos/darkmatter/himitsu/issues/events{/number}",
"events_url": "https://api.github.com/repos/darkmatter/himitsu/events",
"assignees_url": "https://api.github.com/repos/darkmatter/himitsu/assignees{/user}",
"branches_url": "https://api.github.com/repos/darkmatter/himitsu/branches{/branch}",
"tags_url": "https://api.github.com/repos/darkmatter/himitsu/tags",
"blobs_url": "https://api.github.com/repos/darkmatter/himitsu/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/darkmatter/himitsu/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/darkmatter/himitsu/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/darkmatter/himitsu/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/darkmatter/himitsu/statuses/{sha}",
"languages_url": "https://api.github.com/repos/darkmatter/himitsu/languages",
"stargazers_url": "https://api.github.com/repos/darkmatter/himitsu/stargazers",
"contributors_url": "https://api.github.com/repos/darkmatter/himitsu/contributors",
"subscribers_url": "https://api.github.com/repos/darkmatter/himitsu/subscribers",
"subscription_url": "https://api.github.com/repos/darkmatter/himitsu/subscription",
"commits_url": "https://api.github.com/repos/darkmatter/himitsu/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/darkmatter/himitsu/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/darkmatter/himitsu/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/darkmatter/himitsu/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/darkmatter/himitsu/contents/{+path}",
"compare_url": "https://api.github.com/repos/darkmatter/himitsu/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/darkmatter/himitsu/merges",
"archive_url": "https://api.github.com/repos/darkmatter/himitsu/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/darkmatter/himitsu/downloads",
"issues_url": "https://api.github.com/repos/darkmatter/himitsu/issues{/number}",
"pulls_url": "https://api.github.com/repos/darkmatter/himitsu/pulls{/number}",
"milestones_url": "https://api.github.com/repos/darkmatter/himitsu/milestones{/number}",
"notifications_url": "https://api.github.com/repos/darkmatter/himitsu/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/darkmatter/himitsu/labels{/name}",
"releases_url": "https://api.github.com/repos/darkmatter/himitsu/releases{/id}",
"deployments_url": "https://api.github.com/repos/darkmatter/himitsu/deployments",
"created_at": "2026-02-26T10:04:21Z",
"updated_at": "2026-06-09T13:22:19Z",
"pushed_at": "2026-06-10T15:41:44Z",
"git_url": "git://github.com/darkmatter/himitsu.git",
"ssh_url": "git@github.com:darkmatter/himitsu.git",
"clone_url": "https://github.com/darkmatter/himitsu.git",
"svn_url": "https://github.com/darkmatter/himitsu",
"homepage": "",
"size": 12820,
"stargazers_count": 1,
"watchers_count": 1,
"language": "Rust",
"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": true,
"is_template": false,
"web_commit_signoff_required": false,
"has_pull_requests": true,
"pull_request_creation_policy": "all",
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"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-06-07T16:53:26Z"
},
"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"
}
}