JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [
"auto-update",
"crash-recovery",
"desktop-application",
"go",
"golang",
"launcher",
"process-supervisor",
"rollback",
"self-update"
],
"is_fork": false,
"size_kb": 247,
"has_wiki": true,
"homepage": "https://razvandimescu.github.io/go-launcher/",
"languages": {
"C": 349,
"Go": 128078,
"Shell": 4248,
"Makefile": 510,
"Objective-C": 7610
},
"pushed_at": "2026-07-23T13:49:07Z",
"created_at": "2026-03-11T23:16:42Z",
"owner_type": "User",
"updated_at": "2026-07-23T11:43:04Z",
"description": "Crash-safe auto-updates for Go applications — versioned deployments with automatic rollback when the new version fails.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "dimescu.ro",
"name": "Razvan Dimescu",
"type": "User",
"login": "razvandimescu",
"company": "Rinkt.com",
"location": "Craiova, Romania",
"followers": 47,
"avatar_url": "https://avatars.githubusercontent.com/u/168745?v=4",
"created_at": "2009-12-17T02:38:39Z",
"is_verified": null,
"public_repos": 26,
"account_age_days": 6067
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.7",
"kind": "patch",
"published_at": "2026-07-23T13:49:08Z"
},
{
"tag": "v0.4.6",
"kind": "patch",
"published_at": "2026-07-20T11:08:37Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-04-27T14:39:51Z"
}
],
"recent_commits": [
{
"oid": "c052230bb8b0fac53f0c32e6e9e34ed19f8818eb",
"body": "fix(splash/windows): make Hide/Error/repurpose delivery guaranteed",
"is_bot": false,
"headline": "Merge pull request #22 from razvandimescu/fix/splash-stuck-on-screen",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-23T11:10:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c767f4eadaa7f29b2ead7803c526662fd97f869",
"body": "… (#24)\n\n* fix(logging): stop invalid GUI-mode stderr from blocking the log file\n\nIn a windowsgui-subsystem binary os.Stderr is an invalid handle whose\nwrites fail, and io.MultiWriter aborts at the first writer error — with\nstderr listed first, the log file was never written, leaving launcher.log\npe\n[…]\n).\n- New TestSetupFileLoggingSurvivesDeadStderr pins the actual wiring via an\n injectable stderr seam — reverting to an unwrapped stderr now fails the\n suite instead of passing on healthy-stderr CI.",
"is_bot": false,
"headline": "fix(logging): stop invalid GUI-mode stderr from blocking the log file…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-23T11:02:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "99b894eda4170c97124c93ddea9b1060d7adddfd",
"body": "…ctions/setup-go-7\n\nci: bump actions/setup-go from 6 to 7",
"is_bot": false,
"headline": "Merge pull request #23 from razvandimescu/dependabot/github_actions/a…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-23T07:29:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9551c03eff3e73a9f377cdf40a5d3ebe6ca070ac",
"body": "Bumps [actions/setup-go](https://github.com/actions/setup-go) from 6 to 7.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "ci: bump actions/setup-go from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-22T01:13:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cc1998ca7536999263f5b11364045450d8b2f86",
"body": "…ng-check, scope timeout per-instance\n\n- ShowSplash: restructure into two self-contained locked branches instead of\n computing a running var and branching after unlock.\n- Extract isRunning() to remove the duplicated lock/read dance sendGuaranteed\n had reinvented.\n- Move sendGuaranteedTimeout from \n[…]\n to a per-instance\n field defaulted in newPlatform, avoiding cross-test isolation risk.\n- Simplify TestSendGuaranteedNoOpWhenNotRunning to a direct synchronous call\n since that path can never block.",
"is_bot": false,
"headline": "refactor(splash/windows): simplify ShowSplash branching, dedupe runni…",
"author_name": "Alex",
"author_login": "alexgoaga",
"committed_at": "2026-07-21T16:44:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "95e1865dddf3b9e96905f1200a1a2b6bb986f4d0",
"body": "The splash window sometimes never went away, staying topmost\nindefinitely. HideSplash/ShowError/ShowSplash's repurpose-window path\nall shared UpdateProgress's non-blocking \"send or drop\" pattern on a\n16-slot channel — fine for progress updates (fired ~1,500-2,500 times\nper download via progressReade\n[…]\nted directly to\ns.hwnd and could target an already-destroyed window if a Hide/Error\nwas mid-teardown; it now goes through the same guaranteed path.\nUpdateProgress is unchanged — still correctly lossy.",
"is_bot": false,
"headline": "fix(splash/windows): make Hide/Error/repurpose delivery guaranteed",
"author_name": "Alex",
"author_login": "alexgoaga",
"committed_at": "2026-07-21T16:37:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ee689de21a7a98908656de3ad640fbd7bcefb762",
"body": "fix(fetch): honor proxy environment variables in the default client",
"is_bot": false,
"headline": "Merge pull request #21 from razvandimescu/fix/fetch-honor-proxy-env",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-21T12:14:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d62f12ec8588b42bdb6fc6f2e318f5ff0f8b2580",
"body": "newDefaultClient builds its own http.Transport to bound dial, TLS and\nresponse-header stalls. A hand-built Transport does not inherit\nhttp.DefaultTransport's ProxyFromEnvironment, so its zero Proxy field\nmeant HTTP_PROXY, HTTPS_PROXY and NO_PROXY were silently ignored by both\nbuilt-in fetchers (GitH\n[…]\n\nway to reach the network short of replacing the client via\nWithHTTPClient. Proxy policy beyond the standard env vars (Windows\nregistry, WPAD/PAC) stays with the consumer, as the Fetcher seam intends.",
"is_bot": false,
"headline": "fix(fetch): honor proxy environment variables in the default client",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-21T12:11:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4ead3167504a1d10744bb64205b30ef2be3d9286",
"body": "…nimal\n\nAlternative to #18: back off failed updates, bound fetch network stalls",
"is_bot": false,
"headline": "Merge pull request #20 from razvandimescu/prototype/update-backoff-mi…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-20T10:36:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7609c7ca3cb89e0a2577e39b89f46d7adf86139f",
"body": "Alternative to PR #18, scoped to the two real failure modes:\n\n1. The tight loop: handleUpdate returns a three-state updateAction so the\n supervisor can distinguish \"no pending update\" (clean shutdown) from\n \"download failed\" (back off) instead of resetting the backoff index.\n TestFailedUpdateB\n[…]\nCP timeout on every\n attempt. Bound dial/TLS/response-header without capping total transfer.\n\nNo cooldown state machine: no new Config knobs, no new State fields, and\nno launcher.json schema change.",
"is_bot": false,
"headline": "prototype(update): back off failed updates; bound fetch network stalls",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-20T10:34:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "113a11c0a43d6e50a038f2eff021c5ead5c0b311",
"body": "…ncheck\n\nchore: bump Go toolchain to 1.26.5 to clear govulncheck",
"is_bot": false,
"headline": "Merge pull request #19 from razvandimescu/chore/bump-go-toolchain-vul…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-20T09:12:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6779309fa96e304a17644edfc2aa74699263414",
"body": "make lint failed on three stdlib advisories reachable from fetch/:\n GO-2026-5856 crypto/tls fixed in go1.26.5\n GO-2026-5039 net/textproto fixed in go1.26.4\n GO-2026-5037 crypto/x509 fixed in go1.26.4\n\n1.26.5 is the lowest patch covering all three. CI already uses go-version:\nstable, so this only realigns the local toolchain pin; make all is green.",
"is_bot": false,
"headline": "chore: bump Go toolchain to 1.26.5 to clear govulncheck",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-20T09:07:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddf95e4bc8996dcd48500909294614a61ed5ec3b",
"body": null,
"is_bot": false,
"headline": "chore: gitignore Claude Code local config and CLAUDE.md",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-18T21:46:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bfb8681adfeca52a2ad3064374072a234e13e21",
"body": "…g.org/x/sys-0.47.0\n\ndeps: bump golang.org/x/sys from 0.45.0 to 0.47.0",
"is_bot": false,
"headline": "Merge pull request #16 from razvandimescu/dependabot/go_modules/golan…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-18T19:14:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "535814df17ba24d3e1b2bf6e52f339192dc07cbe",
"body": "…ctions/checkout-7\n\nci: bump actions/checkout from 6 to 7",
"is_bot": false,
"headline": "Merge pull request #15 from razvandimescu/dependabot/github_actions/a…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-07-18T19:13:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d53e9a81130fde87b1b595e9a3bc3253c81f910b",
"body": "Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.45.0 to 0.47.0.\n- [Commits](https://github.com/golang/sys/compare/v0.45.0...v0.47.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/sys\n dependency-version: 0.47.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 golang.org/x/sys from 0.45.0 to 0.47.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-15T01:13:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3b5a634105093a4d45bf91c970a25cbad9a7f7a",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.\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/v6...v7)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "ci: bump actions/checkout from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-24T01:13:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1937d4feaff6f5c035ac27723075db2747a7de5f",
"body": "…ersions (#13)\n\nThe launcher logged only to stderr, which is discarded on a console-less\nGUI/login-item process — so when bootstrap silently fails (e.g. a network\nthat reaches the metadata host but not the asset host), the one line\nnaming the failure was lost. It could also brick permanently when a\n\n[…]\n \"\", so \"RolledBackFrom != PreviousVersion\" skipped a perfectly good\n previous/ and exited forever. Treat \"\" as \"never rolled back\".\n\nTests cover startup rotation and empty-version rollback recovery.",
"is_bot": false,
"headline": "fix(launcher): persist logs to file and fix rollback guard on empty v…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-06-15T14:45:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "56e75c1c26e7f3b49aa4bc77953e0fc66966ed3c",
"body": "…ow (#12)\n\nThe launcher calls ShowSplash repeatedly across phases (bootstrap →\n\"Starting\", crash-before-heartbeat restart loops, update/recovery)\nwithout a HideSplash between. On Windows each call spawned a fresh\nrun() goroutine + window on the shared winSplash struct: the second\nwindow clobbered s.\n[…]\nble windows).\n\nAdds cmd/splash-ghosttest, a Windows repro/regression tool\n(-headless = exit 0 clean / 1 ghost; default = narrated visual test).\nReproduced and fix confirmed on a Windows/amd64 machine.",
"is_bot": false,
"headline": "fix(splash): make ShowSplash idempotent to stop ghost window on re-sh…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-05-27T09:29:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "13e2999e6e26eb6b9edbacf8717089b93ca5fab0",
"body": "Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.43.0 to 0.45.0.\n- [Commits](https://github.com/golang/sys/compare/v0.43.0...v0.45.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/sys\n dependency-version: 0.45.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/sys from 0.43.0 to 0.45.0 (#11)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-05-27T09:27:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76db20d357c1fed25b77b1baaab6410ed112852e",
"body": "The splash window combines CS_DROPSHADOW, WS_EX_TOPMOST and a custom\nSetWindowRgn rounded region. Destroying it synchronously left the\nshadow plus rounded outline visible on the desktop until something\nunderneath happened to repaint, producing a \"ghost\" silhouette where\nthe splash had been.\n\nCall ShowWindow(SW_HIDE) before DestroyWindow on both hide and error\npaths so DWM dismisses the shadow and invalidates the underlying\nregion first.",
"is_bot": false,
"headline": "fix(splash/windows): hide before destroy to clear DWM shadow residue",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-05-12T19:44:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a920eb679ddbc14645c2a1dbc1dd6864924d43a",
"body": "…(#9)\n\n* fix: expire stale crash window at launcher startup\n\nA saturated crash_count from a prior session permanently bricked the\nlauncher: handleCrashThreshold ran before any new crash, so the\nwindow-expiry check inside recordCrash never had a chance to clear\nstale state. Result was \"crash loop wit\n[…]\nss\nand layout on each supported platform — cross-compile with\n\n GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build ./cmd/splash-demo\n\nAlso ignore built demo binaries so they don't show up as untracked.",
"is_bot": false,
"headline": "v0.4.1: crash-window expiry + Windows spinner smoothness + toolchain …",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-05-12T15:45:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4b4436e993da8afee7ffbda7bbcca95ed83cff28",
"body": "* fix: handle empty current/ dir during bootstrap\n\nA previously interrupted install can leave an empty versions/current/\ndirectory behind. hasCurrentVersion() returns false in that case (it\nonly checks for non-empty dirs), so the launcher routes through\nbootstrapDownload — which then fails with \"mov\n[…]\ne test with currentVersionDir helper.\n- Swap os.MkdirAll(filepath.Dir(cur), ...) for ensureVersionDirs in\n bootstrapDownload, matching the rest of the codebase.\n- Shorten the WHY-comment to one line.",
"is_bot": false,
"headline": "fix: handle empty current/ dir during bootstrap (#8)",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-05-12T15:13:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ee664d0514a6dcb2bbaaeff32b92225ea4522d44",
"body": "Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.42.0 to 0.43.0.\n- [Commits](https://github.com/golang/sys/compare/v0.42.0...v0.43.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/sys\n dependency-version: 0.43.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/sys from 0.42.0 to 0.43.0 (#5)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-27T14:38:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "514e122699c5a8365aa5a602f6245caad8b06d10",
"body": "* fix: eliminate spawnTime race causing TestUICallbacks flake\n\nspawnTime was captured after cmd.Start(), which lets a fast child\ncreate the heartbeat file before the parent records the timestamp.\nheartbeatTouchedAfter then sees mtime <= spawnTime and returns false\n(strict After), so HideSplash is ne\n[…]\nfficient signal: if the file is\npresent during waitForChild, the child created it during this\nrun. Replace heartbeatTouchedAfter with heartbeatExists at both\ncall sites (waitForChild, checkProbation).",
"is_bot": false,
"headline": "fix: eliminate TestUICallbacks flake; tighten PR #6 plumbing (#7)",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-04-27T14:31:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2b200f84738324e95aa43bb1d7c90efd6463f658",
"body": "…d-binary-name\n\nfeat: v0.4.0 lifecycle hooks + stable launcher filename",
"is_bot": false,
"headline": "Merge pull request #6 from razvandimescu/feat/v0.4-lifecycle-hooks-an…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-04-27T13:57:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84903a45978e3b1d8990d7ed8d23ba9796a51805",
"body": "Three additive Config fields targeting v0.4.0:\n\n- LauncherBinaryName: override for the relocated filename. Today the\n installed launcher inherits filepath.Base(os.Executable()), so a\n binary launched as MyApp-1.0-installer.exe lands at that name in\n InstallDir permanently. Setting LauncherBinaryN\n[…]\ncy\n installer protocols whose args should not propagate.\n\nAdds .gitignore for working notes and a private-docs/improvements.md\nbacklog (gitignored) tracking v0.5.0 SeedBinary work and smaller\nquirks.",
"is_bot": false,
"headline": "feat: lifecycle hooks and stable launcher filename",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-04-27T13:54:08Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "504202524fd2f2c2b2695366b03c641daea5fa07",
"body": "ci: add govulncheck to lint pipeline",
"is_bot": false,
"headline": "Merge pull request #4 from razvandimescu/add-govulncheck",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-25T04:18:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56969cbf6521994969b8539f6a9b3ba026a023ac",
"body": "Add vulnerability scanning via govulncheck to both the Makefile and CI\nworkflow. Catches known vulnerabilities in dependencies at build time.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: add govulncheck to lint pipeline",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-25T03:46:17Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "63166b459f6bf6c1009a8ba37073df20ee3480ae",
"body": "TestUICallbacks was failing on CI because the hardcoded 500ms heartbeat\nticker sometimes didn't fire before the child exited on slow runners.\nAdd HeartbeatPoll config field (default 500ms), set to 50ms in tests.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: make heartbeat poll interval configurable to fix flaky CI test",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-24T21:09:05Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4b6405145e5c8daf9db7a99bb953a6899ecda17f",
"body": "Move repo from RinktLtd org to personal account. Updates module path,\nall import references, badges, docs URLs, and LICENSE copyright. Fixes\nstaticcheck U1000 by moving platform-only hex helpers behind build tag.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: migrate module path to github.com/razvandimescu/go-launcher",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-24T20:48:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e19cb4ff72a76dca99417265669d49a563dc5293",
"body": "Platform-native implementations:\n- Windows: HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\n- macOS: ~/Library/LaunchAgents/ plist with RunAtLoad\n- Other: no-op stub\n\nRegistration is called idempotently after self-relocation in\nLauncher.Run(), ensuring the registered path is always correct.\nService registration methods are stubbed for future implementation.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add registrar package for OS login item registration",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-17T10:07:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b3761d008a8009744d3ff6222c56c39ee705a4aa",
"body": "Extract dispatchCommands and messageLoop from winSplash.run to bring\ncyclomatic complexity under the threshold of 15. Add compile-time\ninterface assertion for headless to satisfy staticcheck on darwin+cgo.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: resolve gocyclo and staticcheck lint failures in splash package",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-17T09:38:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c1784d2aac95204e4db1fd4780b43965be1f21ab",
"body": "Add GIF demo to features grid and \"Built-in UI\" column to comparison\ntable on the GitHub Pages landing page.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add splash screen showcase to landing page",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-17T08:35:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ca0ec80beb541b80be359290cede160c78f628e0",
"body": "Add ui/splash package with native splash screen implementations:\n- macOS: Cocoa/AppKit with vibrancy, Core Animation spinner (CGo)\n- Windows: GDI+ owner-drawn with animated arc spinner (pure Go)\n- Headless fallback for Linux and macOS without CGo\n\nConsumer API reduces 760 lines of platform code to 4\n[…]\noBytes})\n\nAlso includes splash-demo example with GIF capture script,\nREADME hero image, and comparison table \"Built-in UI\" column.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add built-in native splash screen UI for macOS and Windows",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-17T08:13:22Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9ec352a9313b050915d0aae0fbd5b7c56eef433b",
"body": "Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add website and docs links to README",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-16T07:37:21Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f634cf0ab7aa60de50ad71d20ec5801dfac19a60",
"body": "The 1s sleep was not enough for the 500ms heartbeat ticker to fire\non slow GitHub Actions runners, causing flaky failures.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: increase TestUICallbacks sleep for slow CI runners",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-16T07:20:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7480ca968baf4ec06054657caa446e54a0375738",
"body": "- Sharpen positioning: \"Squirrel.Windows pattern for Go\"\n- Add badges (CI, Go Report Card, pkg.go.dev, MIT license)\n- Reorder: Quick Start before comparison table\n- Fix duplicate heading, honest Registrar docs\n- Extract architecture internals to docs/architecture.md\n- Add MIT LICENSE file\n- Add update demo (_example/update-demo/) with v1→v2 flow\n- Add static landing page (docs/index.html) for GitHub Pages\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: restructure README, add landing page and update demo",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-16T07:17:29Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9f74740cdef4500aeba6b0ac46bfee486a1ed7e1",
"body": "refactor: simplify test suite, add integration tests",
"is_bot": false,
"headline": "Merge pull request #3 from RinktLtd/refactor/test-simplification",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-12T00:02:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef1f0426f17b00dc4c5f980dafce05a5eedb712e",
"body": "…/checkout-6\n\nci: Bump actions/checkout from 4 to 6",
"is_bot": false,
"headline": "Merge pull request #2 from RinktLtd/dependabot/github_actions/actions…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-12T00:02:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "093dc4da4d308b88836571f3f56a79f4949998fd",
"body": "…/setup-go-6\n\nci: Bump actions/setup-go from 5 to 6",
"is_bot": false,
"headline": "Merge pull request #1 from RinktLtd/dependabot/github_actions/actions…",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-12T00:02:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4fdd413d6207ede0d3c3f9e0b44f6487618ab85a",
"body": "- Extract baseTestConfig helper to eliminate repeated Config literals\n- Replace testChild with buildChildFromSource + installChild helpers\n- Migrate os.Setenv/os.Unsetenv to t.Setenv in legacy tests\n- Remove unused fakeUI.progressCalls field\n- Add 6 integration tests: rollback on crash loop, update flow,\n bootstrap download, UI callbacks, crash loop error display,\n context cancellation\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: simplify test suite, add integration tests",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-12T00:00:10Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "96da675e74d56235446137ce96f0ad06d5d12f0d",
"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[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "ci: Bump actions/checkout from 4 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-11T23:33:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b6c40d2b437ec5c9536fcb21d75fed7d0a05d645",
"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 dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "ci: Bump actions/setup-go from 5 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-11T23:33:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d40faac9780c2ae8e8e16e5ea9aef8d6c9efde6",
"body": "- Makefile with build/test/lint targets (gofmt, vet, gocyclo,\n ineffassign, misspell, staticcheck)\n- CI workflow on push/PR, release quality gate on tags\n- Dependabot for gomod and github-actions (weekly)\n- Fix gofmt alignment in const blocks\n- Refactor supervisorLoop to reduce cyclomatic complexity from 20 to\n under 15 by extracting handleCrashThreshold, checkProbation,\n and handleUpdate methods\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: add Makefile, CI workflows, dependabot, fix lint issues",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-11T23:32:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bc46a9c12310220c450bd0d8cbe061cf8b327285",
"body": "Demonstrates the full supervisor lifecycle: spawn, heartbeat detection,\nclean shutdown. Includes instructions for crash-loop detection demo.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add runnable example (launcher + child)",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-11T23:29:05Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6d7dd67d417403d3c6f9f791f8436934fe429b2d",
"body": "External process supervisor implementing the Squirrel.Windows pattern\nfor Go applications: versioned side-by-side directories, crash-based\nrollback, update orchestration, and file-based IPC.\n\nCore packages:\n- launcher: supervisor loop, state management, version rotation\n- child: zero-dependency helpers for managed applications\n- fetch: GitHub and HTTP fetcher implementations\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement go-launcher library",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-11T23:17:02Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "3664581012d625352755dd99aca62d66b7baea6a",
"body": "Go library providing Squirrel.Windows-style versioned deployments,\ncrash-based rollback, and process supervision — filling a gap where\nevery existing Go updater library relies on binary self-surgery.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Initial README: process supervisor library for Go applications",
"author_name": "Razvan Dimescu",
"author_login": "razvandimescu",
"committed_at": "2026-03-11T21:36:01Z",
"body_truncated": false,
"is_coding_agent": true
}
],
"releases_count": 3,
"commits_last_year": 48,
"latest_release_at": "2026-07-23T13:49:08Z",
"latest_release_tag": "v0.4.7",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 10,
"days_since_latest_release": 5,
"mean_days_between_releases": 43.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/razvandimescu/go-launcher",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/razvandimescu/go-launcher",
"is_deprecated": false,
"latest_version": "v0.4.7",
"repository_url": "https://github.com/razvandimescu/go-launcher",
"versions_count": 11,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-23T11:10:50Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 1,
"stars": 3,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-07-18",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": 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": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 26280,
"source_files_sampled": 44,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 1,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "golang.org/x/sys",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.47.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "golang.org/x/sys",
"direct": true,
"version": "v0.47.0",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 1,
"direct_count": 1,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 20,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 4
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "razvandimescu",
"commits": 39,
"avatar_url": "https://avatars.githubusercontent.com/u/168745?v=4"
},
{
"type": "User",
"login": "alexgoaga",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/12981991?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.951
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"quality.yml",
"release.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"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": 3,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "17 out of 17 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 1/15 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": 10,
"reason": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"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": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"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": 0,
"reason": "security policy file not 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": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "c052230bb8b0fac53f0c32e6e9e34ed19f8818eb",
"ran_at": "2026-07-29T00:23:23Z",
"aggregate_score": 5.2,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-23T13:49:45Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-23T11:10:51Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/razvandimescu/go-launcher",
"host": "github.com",
"name": "go-launcher",
"owner": "razvandimescu"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"security": 62,
"vitality": 81,
"community": 26,
"governance": 54,
"engineering": 81
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 81,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"commits_last_year": 48,
"human_commit_share": 0.854,
"days_since_last_push": 5,
"active_weeks_last_year": 10
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "10/52 weeks with commits",
"points": 6.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 10
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "48 commits in the last year",
"points": 15.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 48
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"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": 100,
"inputs": {
"releases_count": 3,
"latest_release_tag": "v0.4.7",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 43.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "3 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 3
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~43.5 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 43.5
}
}
],
"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": 26,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 5,
"inputs": {
"forks": 1,
"stars": 3,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "3 stars",
"points": 4.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 3
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"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": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"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": 22.5,
"status": "met",
"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": "moderate",
"name": "Sustainability & Governance",
"value": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.951
},
"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 95% of commits",
"points": 1.1,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 95
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"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": 60,
"inputs": {
"merged_prs": 20,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 4
},
"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": "20/24 decided PRs merged",
"points": 31.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 20,
"decided": 24
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/15 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"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": 56,
"inputs": {
"followers": 47,
"owner_type": "User",
"is_verified": null,
"owner_login": "razvandimescu",
"public_repos": 26,
"account_age_days": 6067
},
"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": "47 followers of razvandimescu",
"points": 12.1,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 47,
"login": "razvandimescu"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "26 public repos, account ~16 yr old",
"points": 22.4,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 26
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/razvandimescu/go-launcher"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 5
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "11 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 11
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 81,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"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": "17 out of 17 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"topics": [
"auto-update",
"crash-recovery",
"desktop-application",
"go",
"golang",
"launcher",
"process-supervisor",
"rollback",
"self-update"
],
"has_wiki": true,
"homepage": "https://razvandimescu.github.io/go-launcher/",
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"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": "https://razvandimescu.github.io/go-launcher/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "9 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 9
}
}
],
"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": "moderate",
"name": "Security",
"value": 62,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"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": 52,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 5.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 is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "17 out of 17 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 1/15 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"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": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"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 not detected",
"points": 0,
"status": "missed",
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 1 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 1
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 1,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 1,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"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": 2
},
"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": "moderate",
"name": "AI Readiness",
"value": 69,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"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": "41 of 41 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 41,
"sampled": 41
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.312,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.146
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"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": 0,
"status": "missed",
"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": "15 of the last 48 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 15,
"sampled": 48
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "7 of the last 48 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 7,
"sampled": 48
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 26280,
"source_files_sampled": 44,
"oversized_source_files": 0
},
"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": "0/44 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 44,
"oversized": 0
}
}
],
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-29T00:23:37.251994Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/razvandimescu/go-launcher.svg",
"full_name": "razvandimescu/go-launcher",
"license_state": "standard",
"license_spdx": "MIT"
}