原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 11162,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 255842
},
"pushed_at": "2026-07-25T04:49:24Z",
"created_at": "2026-06-19T19:12:01Z",
"owner_type": "User",
"updated_at": "2026-07-25T04:49:28Z",
"description": "Read Markdown docs in your terminal with Mermaid diagrams rendered inline (iTerm2/Kitty/Ghostty). PDF export, pager, and STDIN support.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://scholar.google.com/citations?user=jKNXCW0AAAAJ&hl=en",
"name": "Kyle M. Kovary",
"type": "User",
"login": "kkovary",
"company": "@octantbio",
"location": "Berkeley, CA",
"followers": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/6601956?v=4",
"created_at": "2014-02-06T05:33:54Z",
"is_verified": null,
"public_repos": 31,
"account_age_days": 4555
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-06-11T04:27:11Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2026-06-06T00:53:40Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-06-03T02:16:40Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-04-23T23:57:09Z"
},
{
"tag": "v0.2.2",
"kind": "patch",
"published_at": "2026-03-27T05:08:37Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-01-19T23:25:21Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-01-19T14:54:44Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2026-01-19T03:10:06Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-01-18T04:55:11Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-01-18T04:46:52Z"
}
],
"recent_commits": [
{
"oid": "7829d629c56357a7efa8ced3cf405276a8daa3e4",
"body": "feat: render markdown images inline in the terminal",
"is_bot": false,
"headline": "Merge pull request #1 from kkovary/feat/inline-markdown-images",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-07-25T04:49:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0612af51f89df958d4d3d8581e089f3a77a91666",
"body": "The Chrome-backed PDF tests fail on this fork's CI with \"websocket url\ntimeout reached\" after exactly the 20s chromedp default, meaning chromedp\nnever sees Chrome's DevTools endpoint. The failure reproduces on a branch\ncontaining no other changes, so it is not specific to any feature work.\n\nUpstream\n[…]\nd the\ndifference is this dependency: upstream is on chromedp 0.16.0 while this fork\nis still pinned to 0.15.1. Bumping to 0.16.0 (with the cdproto revision that\ngoes with it) matches upstream exactly.",
"is_bot": false,
"headline": "deps: bump chromedp to 0.16.0 to fix Chrome startup on CI",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-07-25T03:48:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c6ce472ffdc8b2ae92d1135f20fdf9d675b19f04",
"body": "The dependency graph the action queries is not populated for forks, so the\njob fails on every fork pull request with \"Dependency review is not supported\non this repository\" no matter what the change contains. Skipping on forks\nkeeps the gate in place upstream, where the graph exists.",
"is_bot": false,
"headline": "ci: skip dependency review on forks",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-07-25T03:40:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e053490d2a4d7e1ee8970a980f1a6b1644c679f1",
"body": "Standalone markdown image references now render as inline terminal images\nalongside mermaid diagrams, on the same terminals (iTerm2, Kitty, Ghostty).\n\nThe marker/replace machinery in internal/termimage already worked on plain\nPNG bytes, so this adds a second producer for it rather than a second\npipe\n[…]\n width, and scaling one up keeps\nits labels legible.\n\nAdds testdata/media-demo.md, which exercises diagrams, all three image\nformats, downscaling, every text-fallback position, and both failure cases.",
"is_bot": false,
"headline": "feat: render markdown images inline in the terminal",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-07-25T03:40:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "228544f0dc5b30c9b40be143691e1b0ecf42479a",
"body": "Watch the input file and refresh the pager in place when it changes, for an\nedit-in-one-pane / preview-in-another workflow.\n\n- internal/watch: mtime+size polling with debounce, coalescing rapid saves.\n- Event-driven less pagers (text and smooth-Kitty): a goroutine pumps terminal\n bytes into a chann\n[…]\noads keep the initial\n theme instead of re-querying the terminal mid-pager.\n- Docs and unit tests (watcher change-detection/debounce, applyContent scroll\n preservation, segment rebuild, chanReader).",
"is_bot": false,
"headline": "feat: add --watch mode for live file reload",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-06-19T21:15:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b87d91175461451a4f067f5585d7790483a5a6df",
"body": "…al background\n\n- Make 'less' the default pager mode so new installs get line-by-line\n scrolling (with smooth inline images on Kitty/Ghostty) out of the box.\n- Add an 'auto' Mermaid theme (now the default) that queries the terminal\n background via OSC 11 and renders dark diagrams on a dark background, light\n otherwise. Falls back to light when the background can't be detected (e.g.\n PDF export to a file).\n- Document pager.mode and mermaid.theme options in the README.",
"is_bot": false,
"headline": "feat: default to less pager and auto-detect Mermaid theme from termin…",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-06-19T19:24:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5db7bb1a725fc9c534f1e14c401c3f792a383f08",
"body": "Wrap each redraw in synchronized output (DEC mode 2026) so the terminal\npresents the clear-then-repaint as one atomic frame, coalesce already-\nbuffered input (fast key-repeat / mouse wheel) into a single repaint, and\nskip repaints when the visible frame would not change.",
"is_bot": false,
"headline": "perf(pager): eliminate less-mode flicker on scroll",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-06-19T19:24:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "304853b53700a8156f8110e735a2dd6671aec7bd",
"body": "…id theme config\n\nPager:\n- Add a 'less' pager mode that scrolls by line (j/k, arrows), half-page\n (d/u), page (space/b), g/G, and / ? n N search, instead of more's page\n jumps.\n- On Kitty-graphics terminals (Kitty, Ghostty), less mode scrolls images\n smoothly: scroll position is tracked in displa\n[…]\nid theme and page background for inline images and PDF.\n Unknown values warn and fall back to default.\n\nIncludes unit tests for crop pixel math, row-scroll/segment math, search,\nand theme resolution.",
"is_bot": false,
"headline": "feat: add less pager mode with smooth Kitty image scrolling and Merma…",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-06-19T19:12:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dea18af63e2448654ada6a937135a1701ec5e2b7",
"body": null,
"is_bot": false,
"headline": "chore: add pre-commit hooks (gofmt, go vet, go build)",
"author_name": "Kyle M. Kovary",
"author_login": "kkovary",
"committed_at": "2026-06-19T19:12:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7ea97bb9133827945d8ce5dcb1652506f4f83ba",
"body": "Bumps [github.com/mattn/go-sixel](https://github.com/mattn/go-sixel) from 0.0.9 to 0.0.11.\n- [Commits](https://github.com/mattn/go-sixel/compare/v0.0.9...v0.0.11)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mattn/go-sixel\n dependency-version: 0.0.11\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump github.com/mattn/go-sixel from 0.0.9 to 0.0.11 (#65)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-15T22:00:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6e6f12deb8e5a70a1ad2fb4fa014f1bfc07eb34",
"body": "Bumps [golang.org/x/term](https://github.com/golang/term) from 0.43.0 to 0.44.0.\n- [Commits](https://github.com/golang/term/compare/v0.43.0...v0.44.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/term\n dependency-version: 0.44.0\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/term from 0.43.0 to 0.44.0 (#66)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-15T22:00:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a733a4a52ef2e43b00f66199e6b993e1d643973",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(main): release 0.4.0 (#64)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-06-11T04:27:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4eb66c9c7ba18f7dd988bfdb3f148e909ccde47a",
"body": "* feat: render markdown links as text-only OSC 8 hyperlinks on a TTY\n\nglamour appends the raw URL after a link's text. So `[text](url)` rendered\nas `text url`, and bare URLs came out duplicated.\n\nOn a TTY the link text already carries an OSC 8 hyperlink, so the appended\nURL is redundant. Hide it by \n[…]\nthe non-TTY x ShowLinkURLs matrix.\n- README: note the OSC 8 spoofing tradeoff. Recommend --show-link-urls for\n untrusted docs.\n- README: list the now-reachable built-in styles, including tokyo-night.",
"is_bot": false,
"headline": "feat: render markdown links as text-only OSC 8 hyperlinks on a TTY (#63)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-06-11T04:25:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2234bb7ffc4e24bef45f4abac15ed63e9bac6007",
"body": "Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.5.1 to 7.0.0.\n- [Release notes](https://github.com/codecov/codecov-action/releases)\n- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/codecov/codecov-action/c\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump codecov/codecov-action from 5.5.1 to 7.0.0 (#61)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-08T22:00:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f3609f3caac32a61e7bc9799f003a8641e1a7f6f",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/checkout from 6.0.2 to 6.0.3 (#62)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-08T22:00:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "928768b33d9a28ebf3499e15f3d3ffc9312ece5a",
"body": "Release 0.3.2.",
"is_bot": true,
"headline": "chore(main): release 0.3.2",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-06-06T00:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d509574eea0cc18943a4166e8eda4dd41e52cf3d",
"body": "Account for rendered Mermaid image height in more mode. Add tests for pager row metadata and page-boundary behavior.",
"is_bot": false,
"headline": "fix: account for Mermaid image height in more pager",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-06-06T00:52:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "099f3deac38e230ff20449ff47beacafcce94056",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(main): release 0.3.1 (#48)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-06-03T02:16:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b60c79c79381cb6eae473426a67d82af9f8f58b",
"body": "* test: raise coverage to >=80% and add Codecov\n\n* test: replace flaky Chrome PDF test with deterministic pager coverage",
"is_bot": false,
"headline": "test: raise coverage to >=80% and add Codecov (#57)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-06-03T00:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c8aba3ee143fb0fca7a42da65ffd2ea03c5301f",
"body": "Reposition README, add launch docs, license, and OSS community files.",
"is_bot": false,
"headline": "Prepare glowm for global OSS launch",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-06-02T22:53:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0d389113ed45fe2643aa652eba52e0e9a62cc4c",
"body": "Bumps [suzuki-shunsuke/pinact-action](https://github.com/suzuki-shunsuke/pinact-action) from 2.0.0 to 3.0.0.\n- [Release notes](https://github.com/suzuki-shunsuke/pinact-action/releases)\n- [Commits](https://github.com/suzuki-shunsuke/pinact-action/compare/cf51507d80d4d6522a07348e3d58790290eaf0b6...89\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump suzuki-shunsuke/pinact-action from 2.0.0 to 3.0.0 (#54)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-02T22:00:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "057ba6bbb74b1259a6c180381292d0b58aaa7bf4",
"body": "Bumps [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) from 0.0.23 to 0.0.24.\n- [Commits](https://github.com/mattn/go-runewidth/compare/v0.0.23...v0.0.24)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mattn/go-runewidth\n dependency-version: 0.0.24\n dependency-type:\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump github.com/mattn/go-runewidth from 0.0.23 to 0.0.24 (#55)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-02T22:00:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4f84f6370fb28f8cb6327f467e1cb4405b7c549f",
"body": "Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 7.2.1 to 7.2.2.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8...5daf1e\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump goreleaser/goreleaser-action from 7.2.1 to 7.2.2 (#53)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-25T22:01:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1962cf4497588835449ecc59226ea87f222528cb",
"body": "Co-authored-by: OpenClaw ci-autofix <openclaw-ci-autofix@users.noreply.github.com>",
"is_bot": false,
"headline": "fix(ci): auto-fix Auto-merge Dependabot PRs failure (#47)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-05-19T22:51:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8132a87139c1f335ca6919f0b514d8adf52f58b",
"body": "Co-authored-by: OpenClaw ci-autofix <openclaw-ci-autofix@users.noreply.github.com>",
"is_bot": false,
"headline": "fix(ci): auto-fix go_modules in /. - Update #1372506406 failure (#52)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-05-19T22:51:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f8c825bb3332f6264523b80b7e4f0da199d5cd0",
"body": "Bumps [golang.org/x/term](https://github.com/golang/term) from 0.42.0 to 0.43.0.\n- [Commits](https://github.com/golang/term/compare/v0.42.0...v0.43.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/term\n dependency-version: 0.43.0\n dependency-type: direct:production\n update-type: vers\n[…]\ninor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/term from 0.42.0 to 0.43.0 (#51)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-12T22:11:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "28cc7309462addd4f7d27a575cbdf491c672d3ba",
"body": "Bumps [browser-actions/setup-chrome](https://github.com/browser-actions/setup-chrome) from 2.1.1 to 2.1.2.\n- [Release notes](https://github.com/browser-actions/setup-chrome/releases)\n- [Changelog](https://github.com/browser-actions/setup-chrome/blob/master/CHANGELOG.md)\n- [Commits](https://github.co\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump browser-actions/setup-chrome from 2.1.1 to 2.1.2 (#49)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-11T15:31:17Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b41f5f989219fbe29cf17af34e111a61000f887e",
"body": "Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.9.0 to 5.0.0.\n- [Release notes](https://github.com/actions/dependency-review-action/releases)\n- [Commits](https://github.com/actions/dependency-review-action/compare/2031cfc080254a8a887f58cffee85186f\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/dependency-review-action from 4.9.0 to 5.0.0 (#50)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-11T15:28:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1e1814e54825162c6b25662fc0ab08c839c80f21",
"body": null,
"is_bot": false,
"headline": "fix(ci): ignore glamour v2.0.0 Dependabot update (#46)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-05-11T14:13:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c2404be825b8898999864e53fd6864f05a8f777",
"body": "Bumps [github.com/mattn/go-sixel](https://github.com/mattn/go-sixel) from 0.0.8 to 0.0.9.\n- [Commits](https://github.com/mattn/go-sixel/compare/v0.0.8...v0.0.9)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mattn/go-sixel\n dependency-version: 0.0.9\n dependency-type: direct:production\n \n[…]\natch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump github.com/mattn/go-sixel from 0.0.8 to 0.0.9 (#43)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-29T15:48:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8cd94ff06252fac60f20b254e51f8005296fedf4",
"body": "Bumps [googleapis/release-please-action](https://github.com/googleapis/release-please-action) from 4.4.1 to 5.0.0.\n- [Release notes](https://github.com/googleapis/release-please-action/releases)\n- [Changelog](https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md)\n- [Commits](htt\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump googleapis/release-please-action from 4.4.1 to 5.0.0 (#45)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-27T11:57:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2724a3a7cab34bdcf50591c9157edd4dafb12a48",
"body": "Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 7.1.0 to 7.2.1.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/e24998b8b67b290c2fa8b7c14fcfa7de2c5c9b8c...1a8083\n[…]\nirect:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump goreleaser/goreleaser-action from 7.1.0 to 7.2.1 (#44)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-27T11:55:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "869a70160ec8cc3fe70113b0a8547675932c7d05",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(main): release 0.3.0 (#42)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-04-23T23:57:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "964a56cae73c113f75f37df4639c8e7021feaec8",
"body": "* feat: 支持 Ghostty 终端渲染 Mermaid 图表\n\nGhostty 实现了 Kitty 图形协议,因此可以复用 Kitty 的图片编码逻辑。\n通过检测 TERM_PROGRAM=ghostty 环境变量来识别 Ghostty 终端。\n\n🤖 Generated with [CodeBuddy Code]\n\nCo-Authored-By: CodeBuddy Code\n\n* fix: 支持 tmux 下的 Ghostty 终端检测\n\ntmux 会覆盖 TERM_PROGRAM 为 \"tmux\",导致 Ghostty 检测失败。\n新增 GHOSTTY_RESOURCES_DIR \n[…]\nstDetect_GhosttyResourcesDirLeakedWithoutTmux\n\n---------\n\nCo-authored-by: maxyu <maxyu@tencent.com>\nCo-authored-by: atani <atani@users.noreply.github.com>\nCo-authored-by: atani <a.taniwaki@pepabo.com>",
"is_bot": false,
"headline": "feat: support Ghostty terminal for Mermaid image rendering (#39)",
"author_name": "MaxYu",
"author_login": "kvmaker",
"committed_at": "2026-04-23T23:45:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "af01c5b5419ff9323cdc162a34947f1cb4af715f",
"body": "* add sixel\n\n* update go version\n\n* Address review feedback for Sixel support\n\n- Cache Detect/isSixel results via sync.Once to avoid repeated 200 ms DA1 probes\n- Split DA1 response reader into its own helper\n- Rename accumulated -> responseBuf; use bytes.ContainsRune\n- Extract sixelDebugEnabled() he\n[…]\nport with 14 and 40 cases\n- Add serveHTML HTTP tests (content, cleanup, arbitrary path)\n\n---------\n\nCo-authored-by: atani <atani@users.noreply.github.com>\nCo-authored-by: atani <a.taniwaki@pepabo.com>",
"is_bot": false,
"headline": "Add sixel support (#30)",
"author_name": "kazto",
"author_login": "kazto",
"committed_at": "2026-04-23T17:12:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6e5401eba0cec177a65eb26ae1dff05c1e016fa5",
"body": "Bumps [googleapis/release-please-action](https://github.com/googleapis/release-please-action) from 4.4.0 to 4.4.1.\n- [Release notes](https://github.com/googleapis/release-please-action/releases)\n- [Changelog](https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md)\n- [Commits](htt\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump googleapis/release-please-action from 4.4.0 to 4.4.1 (#40)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-20T11:43:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8c1214dd592261025853857801bdbe4e78c74cfc",
"body": "Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 7.0.0 to 7.1.0.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/ec59f474b9834571250b370d4735c50f8e2d1e29...e24998\n[…]\nirect:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump goreleaser/goreleaser-action from 7.0.0 to 7.1.0 (#41)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-20T11:41:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "97bc113233fe25e9d5903d93e5f282e4af8c4755",
"body": "Bumps [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) from 0.0.22 to 0.0.23.\n- [Commits](https://github.com/mattn/go-runewidth/compare/v0.0.22...v0.0.23)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mattn/go-runewidth\n dependency-version: 0.0.23\n dependency-type:\n[…]\nirect:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump github.com/mattn/go-runewidth from 0.0.22 to 0.0.23 (#38)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-14T07:10:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "08c8540e4cc86b77ccadc985f85f02a78dfcc48d",
"body": "Bumps [golang.org/x/term](https://github.com/golang/term) from 0.41.0 to 0.42.0.\n- [Commits](https://github.com/golang/term/compare/v0.41.0...v0.42.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/term\n dependency-version: 0.42.0\n dependency-type: direct:production\n update-type: vers\n[…]\ninor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/term from 0.41.0 to 0.42.0 (#37)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-14T07:07:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "81e37eefd3f12b9b02073ba273275e42ada174ee",
"body": "Bumps [actions/github-script](https://github.com/actions/github-script) from 8.0.0 to 9.0.0.\n- [Release notes](https://github.com/actions/github-script/releases)\n- [Commits](https://github.com/actions/github-script/compare/ed597411d8f924073f98dfc5c65a23a2325f34cd...3a2844b7e9c422d3c10d287c895573f710\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/github-script from 8.0.0 to 9.0.0 (#36)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-13T10:59:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1ea318c29a2711623d7641cd1448ba57df746dd5",
"body": null,
"is_bot": false,
"headline": "deps: golang.org/x/net を v0.52.0、golang.org/x/text を v0.35.0 に更新する (#35)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-04-08T11:46:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c74eb2180cc1be2d6be5db26c9aef498812b8e70",
"body": "Bumps [golang.org/x/net](https://github.com/golang/net) from 0.33.0 to 0.38.0.\n- [Commits](https://github.com/golang/net/compare/v0.33.0...v0.38.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/net\n dependency-version: 0.38.0\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/net from 0.33.0 to 0.38.0 (#34)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-08T11:42:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9305a16df5d85a0e64dda6089a1258bb42e905e",
"body": "Bumps [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) from 0.0.21 to 0.0.22.\n- [Commits](https://github.com/mattn/go-runewidth/compare/v0.0.21...v0.0.22)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/mattn/go-runewidth\n dependency-version: 0.0.22\n dependency-type:\n[…]\natch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump github.com/mattn/go-runewidth from 0.0.21 to 0.0.22 (#33)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-08T11:32:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "abde141dcfff6f63c34f1d78b7bc2bc7b6e0b8d4",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.2.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4.2.2...de0fac2e4500da\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/checkout from 4.2.2 to 6.0.2 (#32)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-06T10:30:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6f2a2d5415caf46eb0d08bdac54f9a2289c2fc84",
"body": "- dependabot.ymlにcooldown(7日間)を追加\n- 全GitHub ActionsのusesをSHAピン留め(pinact)\n- dependency-review-actionワークフローを追加\n- pinact検証ワークフローを追加",
"is_bot": false,
"headline": "chore: サプライチェーン攻撃対策を追加 (#31)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-04-01T20:40:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33277f631d39d8f4d8b0d239983d8665ffc961b4",
"body": "chore(main): release 0.2.2",
"is_bot": false,
"headline": "Merge pull request #25 from atani/release-please--branches--main",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:08:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b27437dab2e14d18f5d8b4ac355df21ce4ec830c",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into release-please--branches--main",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:07:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7bea3ae83c7e4b4e5d4e5523c03eea16bba9778",
"body": "…romedp/chromedp-0.15.0\n\ndeps: bump github.com/chromedp/chromedp from 0.14.2 to 0.15.0",
"is_bot": false,
"headline": "Merge pull request #27 from atani/dependabot/go_modules/github.com/ch…",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:06:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "452a71202f83b03c74dcbb1683a266ec2441ff51",
"body": null,
"is_bot": true,
"headline": "chore(main): release 0.2.2",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-03-27T05:04:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f24f517d0f70f10915a25d3f29a6fdd43960a4e3",
"body": "…romedp-0.15.0",
"is_bot": false,
"headline": "Merge branch 'main' into dependabot/go_modules/github.com/chromedp/ch…",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:04:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "875e39babac43383c2d69228ee867cc667e34982",
"body": "fix(ci): update Go version from 1.25 to 1.26",
"is_bot": false,
"headline": "Merge pull request #28 from atani/fix/ci-go-1.26",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:04:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27afd79b14764214c28ddbbd6eb6462b3114b692",
"body": "chromedp 0.15.0 requires go >= 1.26.",
"is_bot": false,
"headline": "fix(ci): update Go version from 1.25 to 1.26",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T05:02:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f86fa8f1c7d1a36b761114103bdd5d557b028c4b",
"body": "Bumps [github.com/chromedp/chromedp](https://github.com/chromedp/chromedp) from 0.14.2 to 0.15.0.\n- [Release notes](https://github.com/chromedp/chromedp/releases)\n- [Commits](https://github.com/chromedp/chromedp/compare/v0.14.2...v0.15.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/chromedp/chromedp\n dependency-version: 0.15.0\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "deps: bump github.com/chromedp/chromedp from 0.14.2 to 0.15.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-27T04:56:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ca325dbeae8e2491840f6ee66b72690de04aa96",
"body": "Merge after review-fix-loop (2 rounds, all CI green)",
"is_bot": false,
"headline": "Merge pull request #19 from atani/feature/default-pager-vim-like",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:55:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c966369da69ac8742c79124d32aa3819a1041f6",
"body": "…-vim-like\n\n# Conflicts:\n#\tcmd/glowm/main.go\n#\tinternal/pager/pager.go",
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/main' into feature/default-pager…",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:53:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1aa9510907db35f121ee2588d473f342fa0bfb1",
"body": "- Use go-runewidth for display width calculation in trimPlainToWidth\n and trimANSIToWidth, fixing CJK full-width character overflow\n- Remove pager package dependency from config package; config now\n stores mode as plain string, main.go handles validation/conversion\n- Add CJK test cases for both trim functions\n- Add configPathFunc error test case",
"is_bot": false,
"headline": "Add CJK display width support and decouple config from pager",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:34:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22a8fd3023cff7d40a7f8df06dc0778acf3c87c1",
"body": "- Fix goroutine leak: use done channel so signal handler goroutine\n exits cleanly on normal pager quit\n- Extract shared setupSignalHandler helper for both more and vim modes\n- Add signal handler to more mode for SIGINT/SIGTERM terminal restore\n- Unify searchForward/searchBackward into single search\n[…]\nWidth() call\n- Remove unused Page() and ParseMode() functions\n- Document -p overrides --no-pager in README\n- Add tests: keyTop, keySearch dispatch, searchDir.reverse,\n ANSI word lookup, empty history",
"is_bot": false,
"headline": "Fix signal handler leak, unify search, remove dead code",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:29:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f9a946f256e87421e5c3a731b317172352906e62",
"body": "Split pager.go (852 lines) into 4 focused files:\n- pager.go: Mode type, dispatch, terminal helpers\n- more.go: more-style pager with raw mode for single-key input\n- vim.go: vim-style pager with alternate screen buffer\n- ansi.go: ANSI escape sequence utilities with shared parser\n\nStructural improvemen\n[…]\ntor\n- skipEscapeSequence, clampCursor, handleKey, searchForward/Backward\n- wordUnderCursor, history, linesPerPage, ValidMode, ParseMode\n- config.Load (defaults, vim, empty, invalid JSON, unknown mode)",
"is_bot": false,
"headline": "Refactor pager into focused modules and add comprehensive tests",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:23:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4dda3e06d5f29e4a8545ac14d34f6914f305e260",
"body": "- Fix infinite loop in findAllMatches when search pattern is empty\n- Fix openTTYReader closing os.Stdin by returning ownership flag\n- Add signal handler to restore terminal state on SIGINT/SIGTERM\n- Warn on invalid config JSON or unknown pager mode\n- Fix README config path to show OS-specific locations\n- Remove unused truncateStatus function",
"is_bot": false,
"headline": "Fix bugs and improve robustness in pager",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-27T04:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66a48f84bd0d09b41697f811f0009f64cde78051",
"body": "Bumps [golang.org/x/term](https://github.com/golang/term) from 0.40.0 to 0.41.0.\n- [Commits](https://github.com/golang/term/compare/v0.40.0...v0.41.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/term\n dependency-version: 0.41.0\n dependency-type: direct:production\n update-type: vers\n[…]\ninor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/term from 0.40.0 to 0.41.0 (#21)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-21T05:40:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b52b79f0afb0c6a00b717a7559438faa040a6bef",
"body": "fix(ci): Go 1.24 -> 1.25 に更新",
"is_bot": false,
"headline": "Merge pull request #26 from atani/fix/ci-go-version",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-21T05:35:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03ae4bdaf4986babb281659bcb4d79df6b2dc67f",
"body": "golang.org/x/term v0.41.0 が go >= 1.25.0 を要求するため、\nCI の Go バージョンを 1.25 に上げる。",
"is_bot": false,
"headline": "fix(ci): Go 1.24 -> 1.25 に更新",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-21T05:32:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3369eca98bc773233a7700791f8105f2e4966ca",
"body": "Automated fix by ci-autofix. Run ID: 23372722008\nDependabot以外のPRで `core.setFailed()` の代わりに `core.info()` を使用し、非Dependabot PRを失敗ではなくスキップとして扱うように修正。",
"is_bot": false,
"headline": "fix(ci): auto-fix Auto-merge Dependabot PRs failure (#24)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-21T05:26:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3872e7b9d70a4083ee6bfb5ffbce50c27c756d9",
"body": "* Fix critical bugs, security hardening, and improve test coverage\n\n- Fix pager using terminal width instead of height (term.GetSize return order)\n- Fix Kitty graphics protocol: use c= for columns, send control params only on first chunk\n- Fix orphan marker text for unclosed mermaid fences (defer wr\n[…]\ne for GitHub Actions\n\nGitHub Actions runners lack unprivileged user namespaces required by\nChrome's sandbox. Set GLOWM_CHROME_NO_SANDBOX=1 in the Test step to\nallow headless Chrome tests to run in CI.",
"is_bot": false,
"headline": "Fix critical bugs, security hardening, and improve test coverage (#20)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-03-08T07:20:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "530899c335b11b98a4ffcd17bc9da21a009d3e22",
"body": null,
"is_bot": false,
"headline": "Make more mode match classic behavior",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:53:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1b4984d5b23a26eb3cae8ac049b02abba4fe572",
"body": null,
"is_bot": false,
"headline": "Add config-based pager mode and default to more",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:31:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38851cb3c8b8936e315a50d715f01458c422b290",
"body": null,
"is_bot": false,
"headline": "Fix pager line starts in raw mode",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:25:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f2c42d959c13d481146cffe5798b46f07d95bf1",
"body": null,
"is_bot": false,
"headline": "Fix terminal size usage in pager",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:23:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71b6504651185abe61622bc9f596a6a204e1b0a4",
"body": null,
"is_bot": false,
"headline": "Trim pager lines to terminal width",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:21:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba8c2d00fea3d14618c0d4f27a71bcc7fb9a6243",
"body": null,
"is_bot": false,
"headline": "Fix pager status line placement",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T08:19:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1937902d264649d2619819d498f5fee6428be756",
"body": null,
"is_bot": false,
"headline": "Enable default pager with vim-like controls",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-24T07:58:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "673d31200f20efcf9417ecb44ba11dd7f9081506",
"body": "Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 6 to 7.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: go\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump goreleaser/goreleaser-action from 6 to 7 (#18)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-23T11:05:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "985e85cd2c0c56f1a9e93335a67393b081545f6d",
"body": "Bumps [golang.org/x/term](https://github.com/golang/term) from 0.39.0 to 0.40.0.\n- [Commits](https://github.com/golang/term/compare/v0.39.0...v0.40.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/term\n dependency-version: 0.40.0\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "deps: bump golang.org/x/term from 0.39.0 to 0.40.0 (#17)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-16T11:10:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b00119d5fbbca171e45aa6266b0dbc60c321a6e2",
"body": "- Update bundled mermaid.min.js to latest version\n- Fix markdown list style in CHANGELOG.md (* -> -)\n- Normalize quote style in .goreleaser.yaml\n- Add missing blank lines in README.md sections",
"is_bot": false,
"headline": "Update mermaid.min.js and fix markdown formatting (#15)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-06T12:55:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11fa13fb7334c4680986fbec4f90129f8184d4bd",
"body": "- Use PR number with --repo flag instead of html_url (which doesn't\n exist on workflow_run.pull_requests)\n- Consolidate PR fetch and Dependabot check into a single step",
"is_bot": false,
"headline": "Fix auto-merge workflow for Dependabot PRs (#16)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-02-06T12:54:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "282b96c758b48dd48c751b757b05ddb69ec3677b",
"body": "Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8.\n- [Release notes](https://github.com/actions/github-script/releases)\n- [Commits](https://github.com/actions/github-script/compare/v7...v8)\n\n---\nupdated-dependencies:\n- dependency-name: actions/github-script\n depend\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/github-script from 7 to 8 (#13)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-02-06T12:51:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2ceaafae77eb05963ee176c253564c171f47cd12",
"body": null,
"is_bot": false,
"headline": "Update README demo assets",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-20T09:51:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de00f21ea1c2823ac1926dc46d5e6bd43a27f913",
"body": null,
"is_bot": false,
"headline": "Remove demo video download link",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-20T09:43:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4afc606c6871fcd5ca21770ee5affe458eef9469",
"body": null,
"is_bot": false,
"headline": "Use MP4 demo video in README",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-20T09:40:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e09ba51acc4ed1fbb04a15cb6c887ab8e577eb42",
"body": null,
"is_bot": false,
"headline": "Add demo movie to README",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-20T09:37:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b380becef0648e8165bc8487222f53c20d9f80e0",
"body": "Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add GitHub Sponsors support (#12)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-20T05:14:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b616ccd6e72884211d4307a3745ae0f552943cc8",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>\nCo-authored-by: atani <atani@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(main): release 0.2.1 (#10)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-01-19T23:25:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb4bd807ae9e1d6b131aeff8b489ef914ff55ae5",
"body": "Release Please PRs don't trigger pull_request events because they use\nGITHUB_TOKEN. Adding the release-please branch to push triggers ensures\nCI runs when Release Please creates or updates PRs.\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: trigger CI on release-please branch (#11)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T23:14:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9b99ba8ddf1aaf5f9668ad8c4fa3e4025b3d14ce",
"body": "The 'Tag major and minor versions' step was failing because actions/checkout\ndoesn't fetch tags by default. Adding fetch-tags: true allows the step to\nresolve the release tag created by release-please.\n\nCo-authored-by: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: add fetch-tags to checkout for tag creation (#9)",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T16:52:48Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1f1292171bf528f5006c97aad2cec4ea7f21c41f",
"body": null,
"is_bot": false,
"headline": "ci: move dependabot auto-merge to workflow_run",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T15:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bb07477e68c93e31d95e46c4ae3fc2843402a8f",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4...v6)\n\n---\nupdated-dependenc\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: Bump actions/checkout from 4 to 6 (#7)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-19T15:04:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ee41d36876f1611dc10d117221bf1daf3499e05f",
"body": null,
"is_bot": false,
"headline": "ci: use PAT for auto-merge of dependabot workflow changes",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T15:03:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9c40bd0c8511c2c28a01442fdfe17e487482826",
"body": "Bumps [browser-actions/setup-chrome](https://github.com/browser-actions/setup-chrome) from 1 to 2.\n- [Release notes](https://github.com/browser-actions/setup-chrome/releases)\n- [Changelog](https://github.com/browser-actions/setup-chrome/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/browse\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: Bump browser-actions/setup-chrome from 1 to 2 (#8)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-19T15:02:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "71ff45d88cd3d8daafb62c4e73b9430af434b269",
"body": "chore(main): release 0.2.0",
"is_bot": false,
"headline": "Merge pull request #5 from atani/release-please--branches--main",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T14:54:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e94caddee35570eb7e948deabb0124c3f244eb8",
"body": null,
"is_bot": false,
"headline": "Merge branch 'main' into release-please--branches--main",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T14:53:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39fa40e0bf89edeeb6e08554e1e7efab1cc9aa8d",
"body": "Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n dependency-version: '6'\n depen\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: Bump actions/setup-go from 5 to 6 (#6)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-19T11:44:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2d318eaaeaec3b1251d115881ebcc18fb9c12134",
"body": null,
"is_bot": true,
"headline": "chore(main): release 0.2.0",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-01-19T04:46:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37ac7b6d5a39e42d6027d3c4ba6a7be0bce5c07f",
"body": "feat: add GoReleaser for automated releases",
"is_bot": false,
"headline": "Merge pull request #4 from atani/feat/auto-release",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T04:41:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be573e683c1e128223b957f9b23aeb854079cf38",
"body": "- Add .goreleaser.yaml for building and publishing releases\n- Update release-please.yml to trigger GoReleaser on release\n- Add --version flag to show version information\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add GoReleaser for automated releases and homebrew-tap updates",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T04:37:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ff24b795a6e0d3082e94c316ec6d650141766699",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4...v6)\n\n---\nupdated-dependenc\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/checkout from 4 to 6 (#3)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-19T04:24:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ecfa1293790efff699c8a11bc2ad5d4423977b6",
"body": "Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n dependency-version: '6'\n depen\n[…]\nirect:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/setup-go from 5 to 6 (#2)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-01-19T04:23:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0f81951bbab0f7d7a8f92ebf7761648a33bd4347",
"body": "Chrome WebSocket connection is unreliable in GitHub Actions.\nSkip PDF rendering tests when CI=true environment variable is set.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(ci): Skip chrome-dependent tests in CI environment",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T04:21:26Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "db8c0273550db8165dccd704c33c279fdb2c2732",
"body": "- Add browser-actions/setup-chrome to CI and auto-merge workflows\n- Add chromium-browser and google-chrome-stable to chrome detection\n\nFixes CI failures due to missing Chrome in GitHub Actions runner.\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(ci): Add Chrome setup for mermaid tests",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T04:19:33Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c58b595bce2a28a5206aa633095ffc1ffb5bedc2",
"body": "- Add release-please workflow for automatic version bumps\n- Configure changelog sections (feat, fix, deps)\n- Set current version to 0.1.2\n\nCommit prefixes and version changes:\n- feat: → minor version bump\n- fix: → patch version bump\n- deps: → patch version bump\n- feat!: → major version bump\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: Add Release Please for automated versioning",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T03:27:21Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "fae2981771853945d591bf3c222691bc861d2d08",
"body": "- Add Dependabot config for Go modules and GitHub Actions\n - Weekly updates on Monday 19:00 JST\n- Add CI workflow for build and test\n- Add auto-merge workflow for Dependabot PRs\n - Runs build/test before enabling auto-merge\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: Add Dependabot and auto-merge workflow",
"author_name": "atani",
"author_login": "atani",
"committed_at": "2026-01-19T03:18:18Z",
"body_truncated": false,
"is_coding_agent": true
}
],
"releases_count": 10,
"commits_last_year": 103,
"latest_release_at": "2026-06-11T04:27:11Z",
"latest_release_tag": "v0.4.0",
"releases_from_tags": true,
"days_since_last_push": 3,
"active_weeks_last_year": 21,
"days_since_latest_release": 47,
"mean_days_between_releases": 16
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/atani/glowm",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": false,
"registry_url": "https://pkg.go.dev/github.com/atani/glowm",
"is_deprecated": false,
"latest_version": "v0.4.0",
"repository_url": "https://github.com/atani/glowm",
"versions_count": 10,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-06-11T04:27:11Z",
"latest_version_yanked": null,
"days_since_latest_publish": 47
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 7836703,
"source_files_sampled": 51,
"oversized_source_files": 1,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 0
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/charmbracelet/glamour/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.0.0-20250327182001-9fa948b57fe4"
},
{
"name": "github.com/chromedp/cdproto",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20260714215040-dc233986426f"
},
{
"name": "github.com/chromedp/chromedp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.16.0"
},
{
"name": "github.com/mattn/go-runewidth",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.24"
},
{
"name": "github.com/mattn/go-sixel",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.11"
},
{
"name": "github.com/muesli/termenv",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.16.0"
},
{
"name": "golang.org/x/term",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.44.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 1,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "atani",
"commits": 54,
"avatar_url": "https://avatars.githubusercontent.com/u/76104?v=4"
},
{
"type": "User",
"login": "kkovary",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/6601956?v=4"
},
{
"type": "User",
"login": "kvmaker",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1370930?v=4"
},
{
"type": "User",
"login": "kazto",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/992340?v=4"
}
],
"contributors_sampled": 4,
"top_contributor_share": 0.831
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"auto-merge-deps.yml",
"ci.yml",
"dependency-review.yml",
"pinact.yml",
"release-please.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "1 out of 1 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/27 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 10,
"reason": "all dependencies are pinned",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 4,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "10 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "7829d629c56357a7efa8ced3cf405276a8daa3e4",
"ran_at": "2026-07-28T23:58:18Z",
"aggregate_score": 4.2,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-25T04:50:53Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-25T04:49:03Z",
"ci_last_conclusion": "SKIPPED",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/kkovary/glowm",
"host": "github.com",
"name": "glowm",
"owner": "kkovary"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"security": 42,
"vitality": 76,
"community": 12,
"governance": 35,
"engineering": 70
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 76,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"commits_last_year": 103,
"human_commit_share": 0.62,
"days_since_last_push": 3,
"active_weeks_last_year": 21
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "21/52 weeks with commits",
"points": 14.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 21
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "103 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 103
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"releases_count": 10,
"latest_release_tag": "v0.4.0",
"releases_from_tags": true,
"days_since_latest_release": 47,
"mean_days_between_releases": 16
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "10 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 10
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 47 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 47
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~16 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 16
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 12,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 35,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 4,
"top_contributor_share": 0.831
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 83% of commits",
"points": 3.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 83
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "4 contributors",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 4
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"merged_prs": 1,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "1/2 decided PRs merged",
"points": 19.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 1,
"decided": 2
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 48,
"inputs": {
"followers": 5,
"owner_type": "User",
"is_verified": null,
"owner_login": "kkovary",
"public_repos": 31,
"account_age_days": 4555
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "5 followers of kkovary",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 5,
"login": "kkovary"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "31 public repos, account ~12 yr old",
"points": 23,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 31
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 70,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 94,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "5 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 5
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 16,
"status": "met",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 9.6,
"status": "met",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "1 out of 1 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": false,
"has_docs_dir": true,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 42,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 42,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.2
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "1 out of 1 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/27 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 2,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "10 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 83,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "moderate",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.742,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 0
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md (stub)",
"points": 18,
"status": "partial",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md"
}
},
{
"code": "agent_instructions_stub",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "46 of 62 human commits state their intent (structured subject or explanatory body)",
"points": 39.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 46,
"sampled": 62
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "excellent",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 95,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.08,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.31
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 11,
"status": "met",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "8 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 8,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "31 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 31,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 7836703,
"source_files_sampled": 51,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/51 source files over 60KB",
"points": 53.9,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 51,
"oversized": 1
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Community profile unavailable",
"go package 'github.com/atani/glowm' points at a different repository (https://github.com/atani/glowm); excluded from ecosystem scoring",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-28T23:58:29.420453Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/k/kkovary/glowm.svg",
"full_name": "kkovary/glowm",
"license_state": "standard",
"license_spdx": "MIT"
}