原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [
"circuit-breaker",
"golang",
"library"
],
"is_fork": false,
"size_kb": 130,
"has_wiki": false,
"homepage": null,
"languages": {
"Go": 58692
},
"pushed_at": "2026-07-23T16:32:48Z",
"created_at": "2023-03-09T20:07:35Z",
"owner_type": "Organization",
"updated_at": "2026-07-23T16:41:19Z",
"description": "Simple low-overhead circuit breaker library for go",
"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://engineering.waipu.tv",
"name": "Exaring AG",
"type": "Organization",
"login": "exaring",
"company": null,
"location": "Muenchen",
"followers": 15,
"avatar_url": "https://avatars.githubusercontent.com/u/4588038?v=4",
"created_at": "2013-06-01T15:25:10Z",
"is_verified": null,
"public_repos": 69,
"account_age_days": 4804
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2026-07-23T16:34:33Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-15T15:05:49Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-03-26T13:09:15Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2025-12-19T13:48:54Z"
},
{
"tag": "v0.2.3",
"kind": "patch",
"published_at": "2024-07-02T13:52:17Z"
},
{
"tag": "v0.2.2",
"kind": "patch",
"published_at": "2024-02-15T16:18:03Z"
},
{
"tag": "extensions/prometheus/v0.1.0",
"kind": "other",
"published_at": "2024-02-15T15:38:08Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2024-01-25T08:34:48Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2023-12-29T15:35:59Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2023-11-22T17:08:13Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2023-11-10T14:50:21Z"
}
],
"recent_commits": [
{
"oid": "bf71950229d1772dfde519f81d86806c4dcf261b",
"body": null,
"is_bot": false,
"headline": "refactor: bump go to 1.25 and use synctest",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-23T16:31:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cc0bb2122ad766d857f8a4e43c3f1f5de0acc77",
"body": null,
"is_bot": false,
"headline": "chore(actions): update steps v7",
"author_name": "Thomas Lercher",
"author_login": "tlercher",
"committed_at": "2026-07-23T16:15:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38b5ca1980681c2e0185ad8753185008868ecbe8",
"body": null,
"is_bot": false,
"headline": "test(prometheus): ensure native histograms are present",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-23T16:14:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1f0bece95c8c79c29822e8b38b93a47f7a85181",
"body": null,
"is_bot": false,
"headline": "feat(prometheus): enable native histograms",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-23T16:14:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f7cfe0f77ff0a8d6ec80cbd0659aaa1ae4d4b4f",
"body": "SlidingWindowBreaker.observe returns stateChangeClose on every call below\nthreshold, so a healthy closed circuit executed openedAt.Store(0) on every\nsingle call - an unconditional atomic write to one shared cache line that is\nalready 0. Under concurrency this bounces the cache line between cores (ME\n[…]\nore count\nexactly as the contention hypothesis predicts; single-threaded SlidingWindow\nshows no change (no contention to relieve).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "perf: avoid hot-path atomic write when circuit state is unchanged",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-15T15:03:48Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9b76c66adb7173e634aa941181b8129205ee54eb",
"body": "Every call spawned a watchdog goroutine plus a context.WithCancelCause\nallocation, and wrapped the observer in a dedup layer (a second allocation)\nto guard against that goroutine racing the deferred observe.\n\nThe watchdog only exists to record a context cancellation/deadline promptly.\nWhen the incom\n[…]\na goroutine and drops the\nper-call allocation count from 2 to 1. Callers passing a cancellable or\ndeadline context are unaffected.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "perf: skip watchdog goroutine and dedup for uncancellable contexts",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-15T15:02:45Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "811346527eed3f2030ba6ef564b201ddc62f3fd3",
"body": "The smoothing factor was computed as 2/(N/2+1), which is the span formula\nwith N halved. For sampleCount == 1 this yields decay == 1.333 - a smoothing\nfactor greater than 1, giving the previous failure rate a negative weight so\nthe rate can go below 0 or above 1. It also contradicted the documented\n\n[…]\nys allowed and never opens, as documented.\n\nThis changes convergence speed for existing sample counts, so it is a\nbehavior change.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: correct EWMA decay formula and reject sample count of 0",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-15T15:02:28Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2462cd1201c5f37597c5093b767c1ce84faaa26c",
"body": "The unconditional CompareAndSwap updated currentStart on every\nobservation, making it track the last call instead of the window start.\nUnder steady traffic the windows never rotated, so old failures never\ndecayed and the breaker degraded to a lifetime failure rate.\n\nPre-existing bug on main, surfaced by review on the monotonic clock\nchange.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: only advance sliding window start when actually rotating windows",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-09T17:18:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "16125bf426600b1097c323c573d91e7f062b0ff7",
"body": "Backdate the monotonic reference point by one nanosecond so nowNanos is\nalways > 0 even on platforms with coarse timer resolution, where\nopen()/reopen() could otherwise store 0 and leave the circuit closed.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: guarantee nowNanos never returns the zero sentinel",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-09T17:18:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c38f681ea3e5faffca94453ca2503c5a1677d502",
"body": "State timing (Circuit.openedAt and SlidingWindowBreaker.currentStart)\npreviously stored time.Now().UnixMicro() and measured elapsed time with\ntime.Since(time.UnixMicro(...)), which strips the monotonic clock reading\nand falls back to wall-clock subtraction. Wall-clock jumps (NTP steps,\nmanual clock \n[…]\n. openedAt/currentStart are now monotonic-since-start\nnanoseconds and no longer wall-clock meaningful (they are unexported state).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: use monotonic clock for state timing",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-07-09T17:18:37Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "121d79a58f4fc7f14dd3fbf3d09dd2d518dc7262",
"body": "Two subtests in TestBreaker_Observe_State were named \"(EWMA flaky)\" and\nfailed intermittently (~13% of runs). The flakiness had two causes: the\nunseeded global math/rand source, and t.Parallel() subtests all drawing\nfrom that shared global source, so even a fixed global seed would interleave\nnondete\n[…]\nstical scenarios now exercise the same\nrealistic mixed traffic on every run, deterministically, so the \"flaky\"\nlabels are dropped.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "test: make EWMA failure-rate cases deterministic with a seeded RNG",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-06-29T18:48:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7a76497837d5c8cbd257e2894b5820187f9e0512",
"body": "SlidingWindowBreaker.apply silently clamped halfOpenDelay to windowSize\nwhenever it was 0 OR greater than windowSize. Defaulting an unset (0) value\nis fine, but silently shrinking an explicit value (e.g. 30s -> 10s) discards\nthe caller's configuration without any signal, violating least-astonishment\n[…]\npen configuration loudly at\nconstruction. WithHalfOpenDelay and NewSlidingWindowBreaker docs are updated\nto describe the behavior.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: reject half-open delay exceeding the sliding window size",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-06-26T19:00:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3cb255f6067c42254b72e1d7d3920c5647fed4c5",
"body": "… nil error\n\nCo-authored-by: costela <94699+costela@users.noreply.github.com>\nAgent-Logs-Url: https://github.com/exaring/hoglet/sessions/62208c78-9047-4dc5-9ff2-e590c8dd3af3",
"is_bot": true,
"headline": "test: add regression test that failure condition is never called with…",
"author_name": "copilot-swe-agent[bot]",
"author_login": "Copilot",
"committed_at": "2026-03-26T11:50:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ad0c459b4b085cfb6ed20659202884f20612e27",
"body": "Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>",
"is_bot": false,
"headline": "doc: avoid mention of non-existant Circuit.Call",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-03-26T11:50:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8c18e76f613dfa37e7d3ee45c09c2ff0f3cf5f57",
"body": "… receive nil errors\n\nNil errors are now always treated as successes before calling the user-provided\nfailure condition function. This simplifies failure condition implementations\n(e.g. IgnoreContextCanceled) by removing the need to handle the nil case.\n\nAlso applies minor Go style cleanups: rename sentinel → errSentinel, use `any`\ninstead of `interface{}`, and remove unnecessary loop variable copies (Go 1.22+).\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: guard isFailure calls with nil check so failure conditions don't…",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2026-03-26T11:50:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8a606f3ff4f9c98bd76b69e25309bf1a8a0f038d",
"body": "Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>",
"is_bot": false,
"headline": "refactor(docs): better wording for Wrap",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2025-12-12T20:17:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "02ef26a3356cb7243fc5ac525bea015e094fb1db",
"body": "This makes the circuit itself type-agnostic, allowing reuse of circuits for multiple functions with different types.\n\nBREAKING CHANGE: circuit initialization now does not require the function and does not provide the Call() method\nanymore, instead relying on the package-level Wrap().",
"is_bot": false,
"headline": "feat!: move the type parameters to a separate wrapper",
"author_name": "Leo Antunes",
"author_login": null,
"committed_at": "2025-12-12T20:17:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6d4be821cd79cb92a810ffa5e28aafe766f138b",
"body": null,
"is_bot": false,
"headline": "chore: bump min go version + x/sync",
"author_name": "Leo Antunes",
"author_login": null,
"committed_at": "2025-12-12T20:17:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "237b647b42e4bf2be1ba7f321b5c2663101c5944",
"body": "Co-authored-by: costela <94699+costela@users.noreply.github.com>",
"is_bot": true,
"headline": "Update go.mod to require Go 1.23 to match CI test matrix",
"author_name": "copilot-swe-agent[bot]",
"author_login": "Copilot",
"committed_at": "2025-12-12T19:55:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0e9b71088dddcdc400e2ad0f6c94a465a599c96",
"body": "Co-authored-by: costela <94699+costela@users.noreply.github.com>",
"is_bot": true,
"headline": "Update CI to test against Go 1.25, 1.24, and 1.23",
"author_name": "copilot-swe-agent[bot]",
"author_login": "Copilot",
"committed_at": "2025-12-12T19:55:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a465910deadffeeb27183effee3faf4e58aa4a3",
"body": null,
"is_bot": false,
"headline": "feat: add user input check on threshold (#17)",
"author_name": "Alexander Knipping",
"author_login": "obitech",
"committed_at": "2024-07-02T13:51:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c9d5edd9856fde4802a2f188f225403e548d900",
"body": null,
"is_bot": false,
"headline": "fix: bump protobuf (#18)",
"author_name": "Alexander Knipping",
"author_login": "obitech",
"committed_at": "2024-07-02T10:25:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1db7a062fa3a05abbd1ab5ee4cb320079e42adc0",
"body": "This makes integration with the \"recursive collectors\" pattern easier, since no additional registerer is necessary.\nUsers who already have a prometheus.Registerer in scope can explicitly register the middleware.\n\nBREAKING CHANGE: all prometheus usage must be refactored",
"is_bot": false,
"headline": "feat!: turn prometheus middleware into collector",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-02-14T17:22:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2c081058c1c18e8659a59b27bdeabfd9f2f39c6",
"body": null,
"is_bot": false,
"headline": "fix(docs): use duration as sliding window argument",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-01-28T20:25:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e31cdf5664cfce2ab777eefbbc4b7d51e014460e",
"body": null,
"is_bot": false,
"headline": "refactor: also move ewma+half-open check into option",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-01-25T08:33:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4ef83dd9e541ad2ffa02e847149c52745428f79",
"body": "A previous refactoring of the circuit+breaker meant a sliding window circuit without explicit half-open would never leave the open state, unlike the docs indicated.",
"is_bot": false,
"headline": "fix(sliding window): implicitly set half-open delay",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-01-25T08:33:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae5e784e2eea515a9b3a8a32b065341afe49e99d",
"body": null,
"is_bot": false,
"headline": "refactor: clarify sliding window calculations",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-01-25T08:33:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aeea64a886c14445c859d9b7c88c438121035368",
"body": "We were avoiding the call in the open-case, so any wrapper expecting it would not work (e.g. prom metrics)",
"is_bot": false,
"headline": "fix: actually call ObserverForCall like the docs say",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2024-01-25T08:33:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ced27ed5abf502f2804ccdf6fe0cc75d93af271",
"body": "BREAKING: also rename IgnoreContextCancellation to IgnoreContextCancelled",
"is_bot": false,
"headline": "fix!: use errors.Is for context.Cancelled check",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:29:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b42546aef848968c22a34e9ee3710db1cfdf8da",
"body": "This caused once-half-opened circuits to never fully re-open.",
"is_bot": false,
"headline": "fix: always reset open time on half-open",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ff3d473c0c241966ca52f779cd066e57d6e395c",
"body": null,
"is_bot": false,
"headline": "fix(test): actually put circuit at half-open",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a6d7887a9e70aa07521a024347ca04cd5f11b5b",
"body": null,
"is_bot": false,
"headline": "refactor(tests): be more specific when testing breaker state transitions",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7d09611078307532bcf28c1b29f2ae5e1b89cb0",
"body": null,
"is_bot": false,
"headline": "fix(tests): run tests for all modules in repo",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0940d1c1ef72a6416b2f94934818794748252e91",
"body": null,
"is_bot": false,
"headline": "refactor(test): move maybeAssertPanic to own function",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-12-29T15:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aaac6deb4e122ea83fc1fa5b0e2945b9dcbefc8a",
"body": null,
"is_bot": false,
"headline": "perf: avoid closures that cause allocations",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-22T17:02:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5dbc5e7f26a26dd79a174019d34d5f39048b142",
"body": "that should save us moving the values to the heap on store",
"is_bot": false,
"headline": "perf(ewma): use atomic uint64 instead of value",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-22T17:02:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdd4b09048d56b0be034cf8ef7807d3c52cda1ad",
"body": null,
"is_bot": false,
"headline": "fix(test): limiter should not skew benchmarks",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-22T17:02:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ed0180e1bdaf916d98feefa74b0c31055555e35",
"body": null,
"is_bot": false,
"headline": "feat(docs/tests): clarify WithFailureCondition behavior",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-14T14:55:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d3bc35f085a0c5d7ba9d86916a4f0b3a106ac52",
"body": null,
"is_bot": false,
"headline": "fix(test): new ctx test was not rebased on newest",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-10T14:36:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8f9d9eac2b5bc4cf81dc7cf917734a2abbda37f",
"body": "Co-authored-by: Alexander Knipping <ajknipping@mailbox.org>",
"is_bot": false,
"headline": "refactor: adjust naming",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-10T14:27:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "413f21c1badce7f6d690f4e6b0474160c01004ec",
"body": null,
"is_bot": false,
"headline": "feat: add prometheus metrics extension",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-10T14:27:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a26cb07da2a291f796e24fb0cc02af20d95845d",
"body": null,
"is_bot": false,
"headline": "feat: expose more inner API for extensibility",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-10T14:27:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1e94cb3ec3870368f936b3bf112254588f4a21e",
"body": null,
"is_bot": false,
"headline": "fix: do not cancel inbound context after call",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-11-10T14:26:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc253709e0ec92a6c9de7dbab7f24288320d74bb",
"body": null,
"is_bot": false,
"headline": "fix(docs): update method docs after refactor",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-28T19:49:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ada16a1a9c4644455a6a4f7284daf0509d30d7cd",
"body": null,
"is_bot": false,
"headline": "fix: release semaphore on panic",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-28T19:49:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "086656a562bf153ff2afdc0e49b35ccbbae1dd84",
"body": null,
"is_bot": false,
"headline": "refactor(limiter): make blocking/non-blocking code more similar",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-28T19:49:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f51053c6fe2eda4916cd1dd1bfcff2620329a69f",
"body": null,
"is_bot": false,
"headline": "feat: add option to limit concurrency",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-28T19:49:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1e1e09225ef89374855b8bb10933cc281d618dc",
"body": "This should make the code less surprising: calling a nil function\nvariable panics, so calling a zero value circuit is analogous to that.",
"is_bot": false,
"headline": "refactor: do not allow zero valued circuits",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ddd3721372713ba0aece2c722faa3093a55e48d",
"body": "Co-authored-by: Alexander Knipping <ajknipping@mailbox.org>",
"is_bot": false,
"headline": "Update breaker.go",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87dcb1f430ea5998ae6e713a239bb8d7cd01f50e",
"body": null,
"is_bot": false,
"headline": "refactor: hide more internal API; move half-open delay to option",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6455f6c74b87211dd6dbe3f53bd6f8a307d45a5d",
"body": null,
"is_bot": false,
"headline": "fix(ci): only run once per push",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "590d05afc37fd2a22721b9b60d2aa91f132665a4",
"body": null,
"is_bot": false,
"headline": "refactor: move observe once logic to breaker",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba9028eeb09364e6e315202a68a0ea52def51be7",
"body": null,
"is_bot": false,
"headline": "chore: rename trigger → breaker",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92da4e671d71a04285a4023564830a1a406838f3",
"body": null,
"is_bot": false,
"headline": "feat!: refactor breaker to bind calls to their results",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-10-11T16:35:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a462c2c4cdd4b54489a2d025034d1af922d1d2a",
"body": null,
"is_bot": false,
"headline": "feat: add example for sliding window",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-15T22:09:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "344010a5e001890a956995724aa22119ced1ad2d",
"body": null,
"is_bot": false,
"headline": "feat: add sliding window trigger",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-15T21:54:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0cbe028b5bb9de4719c082a9ae9cd4a5a3bb8ae5",
"body": null,
"is_bot": false,
"headline": "feat(tests): check value of repanic",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-15T21:53:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6324fc54cecf840921ea63296b77980d809508f0",
"body": "This should make the API slightly more consistent (the triggers expect a\n\"failure\" bool).",
"is_bot": false,
"headline": "feat!: invert trigger threshold into failure rate",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-12T08:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d7f5896df8eb15f24fb26932e2cd66526587198",
"body": null,
"is_bot": false,
"headline": "feat(test): add test case for fast re-open",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-09T22:31:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e54ffda07fec5e9dba3976c4e5de12863879b41a",
"body": null,
"is_bot": false,
"headline": "feat: first working version",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-09T22:18:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dac0e5fad3c00bf2b48b4b585d16bccae7c12c7",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Leo Antunes",
"author_login": "costela",
"committed_at": "2023-03-09T20:07:35Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 20,
"latest_release_at": "2026-07-23T16:34:33Z",
"latest_release_tag": "v0.4.1",
"releases_from_tags": false,
"days_since_last_push": 3,
"active_weeks_last_year": 7,
"days_since_latest_release": 3,
"mean_days_between_releases": 108.2
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/exaring/hoglet",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/exaring/hoglet",
"is_deprecated": false,
"latest_version": "v0.4.1",
"repository_url": "https://github.com/exaring/hoglet",
"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-07-23T16:26:57Z",
"latest_version_yanked": null,
"days_since_latest_publish": 3
}
]
},
"popularity": {
"forks": 1,
"stars": 18,
"watchers": 6,
"fork_history": {
"days": [
{
"date": "2024-02-09",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 1
},
"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": [
"extensions/prometheus/go.mod",
"go.mod"
],
"largest_source_bytes": 12116,
"source_files_sampled": 12,
"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": [
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.30.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 65
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 22,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.8.2"
},
{
"name": "golang.org/x/sync",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.22.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "v1.10.0",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "v1.8.2",
"ecosystem": "go"
},
{
"name": "golang.org/x/sync",
"direct": true,
"version": "v0.22.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/sync",
"direct": true,
"version": "v0.7.0",
"ecosystem": "go"
},
{
"name": "github.com/beorn7/perks",
"direct": false,
"version": "v1.0.1",
"ecosystem": "go"
},
{
"name": "github.com/cespare/xxhash/v2",
"direct": false,
"version": "v2.3.0",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "v1.1.1",
"ecosystem": "go"
},
{
"name": "github.com/exaring/hoglet",
"direct": false,
"version": "v0.0.0-20231028194910-dc253709e0ec",
"ecosystem": "go"
},
{
"name": "github.com/kr/pretty",
"direct": false,
"version": "v0.3.1",
"ecosystem": "go"
},
{
"name": "github.com/kr/text",
"direct": false,
"version": "v0.2.0",
"ecosystem": "go"
},
{
"name": "github.com/kylelemons/godebug",
"direct": false,
"version": "v1.1.0",
"ecosystem": "go"
},
{
"name": "github.com/munnerz/goautoneg",
"direct": false,
"version": "v0.0.0-20191010083416-a7dc8b61c822",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "v1.0.0",
"ecosystem": "go"
},
{
"name": "github.com/prometheus/client_golang",
"direct": false,
"version": "v1.22.0",
"ecosystem": "go"
},
{
"name": "github.com/prometheus/client_model",
"direct": false,
"version": "v0.6.2",
"ecosystem": "go"
},
{
"name": "github.com/prometheus/common",
"direct": false,
"version": "v0.62.0",
"ecosystem": "go"
},
{
"name": "github.com/prometheus/procfs",
"direct": false,
"version": "v0.15.1",
"ecosystem": "go"
},
{
"name": "github.com/rogpeppe/go-internal",
"direct": false,
"version": "v1.10.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "v0.30.0",
"ecosystem": "go"
},
{
"name": "google.golang.org/protobuf",
"direct": false,
"version": "v1.36.6",
"ecosystem": "go"
},
{
"name": "gopkg.in/check.v1",
"direct": false,
"version": "v1.0.0-20201130134442-10cb98267c6c",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "v3.0.1",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 22,
"direct_count": 4,
"indirect_count": 18
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 28,
"open_issues": 1,
"closed_ratio": 0.5,
"closed_issues": 1,
"closed_unmerged_prs": 4
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "costela",
"commits": 53,
"avatar_url": "https://avatars.githubusercontent.com/u/94699?v=4"
},
{
"type": "User",
"login": "obitech",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/18530438?v=4"
},
{
"type": "User",
"login": "tlercher",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/73792?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.946
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"main.yaml"
],
"has_docs_dir": false,
"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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 5,
"reason": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"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": 10,
"reason": "all changesets reviewed",
"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": 0,
"reason": "no 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": "12 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": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "bf71950229d1772dfde519f81d86806c4dcf261b",
"ran_at": "2026-07-27T15:28:08Z",
"aggregate_score": 5.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-23T16:32:28Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-23T16:31:41Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 1,
"created_at": "2023-04-25T15:50:00Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/exaring/hoglet",
"host": "github.com",
"name": "hoglet",
"owner": "exaring"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 58 is calibrated to 62 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 58,
"calibrated": 62,
"calibration": "2026-08-02"
}
}
],
"value": 62,
"inputs": {
"security": 62,
"vitality": 75,
"community": 36,
"governance": 59,
"calibration": "2026-08-02",
"engineering": 55,
"ai_readiness": 63,
"weighted_overall_raw": 58
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 75,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"commits_last_year": 20,
"human_commit_share": 0.951,
"days_since_last_push": 3,
"active_weeks_last_year": 7
},
"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": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "20 commits in the last year",
"points": 11.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 20
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "12 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": 92,
"inputs": {
"releases_count": 11,
"latest_release_tag": "v0.4.1",
"releases_from_tags": false,
"days_since_latest_release": 3,
"mean_days_between_releases": 108.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~108.2 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 108.2
}
}
],
"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": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 10,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 10 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 10
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "weak",
"name": "Community & Adoption",
"value": 36,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"forks": 1,
"stars": 18,
"watchers": 6,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "18 stars",
"points": 20,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 18
}
}
],
"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": "6 watchers",
"points": 3.9,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 6
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"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": 59,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 17,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.946
},
"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.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 95
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"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": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 71,
"inputs": {
"merged_prs": 28,
"open_issues": 1,
"closed_issues": 1,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.5,
"closed_unmerged_prs": 4,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "50% of issues closed",
"points": 21,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 50
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "28/32 decided PRs merged",
"points": 26.2,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 28,
"decided": 32
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"followers": 15,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "exaring",
"public_repos": 69,
"account_age_days": 4804
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "15 followers of exaring",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 15,
"login": "exaring"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "69 public repos, account ~13 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 69
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/exaring/hoglet"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 3
},
"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 3 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 3
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "10 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 10
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 55,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 58,
"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": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"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": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"points": 10,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [
"circuit-breaker",
"golang",
"library"
],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"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": 0,
"status": "missed",
"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": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"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): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 52,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 5.1
},
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "11 out of 19 merged PRs checked by a CI test -- score normalized to 5",
"points": 1.2,
"status": "partial",
"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": "all changesets reviewed",
"points": 7.5,
"status": "met",
"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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "12 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": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "exceptional",
"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 22 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": 22
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 22,
"unassessed_packages": 0,
"affected_by_severity": "unknown 1",
"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": "exceptional",
"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": 22,
"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": "exceptional",
"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"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 7
},
"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": 63,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.966,
"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": "56 of 58 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 56,
"sampled": 58
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.18,
"toolchain_manifests": [
"extensions/prometheus/go.mod",
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "extensions/prometheus/go.mod, go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "extensions/prometheus/go.mod, 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": 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": "11 of the last 61 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 11,
"sampled": 61
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"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": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 12116,
"source_files_sampled": 12,
"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/12 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 12,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 10
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 6
},
{
"tier": "description",
"label": "library",
"source": "description:library",
"weight": 2
},
{
"tier": "tags",
"label": "library",
"source": "tag:library",
"weight": 2
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-27T15:28:26.142921Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/e/exaring/hoglet.svg",
"full_name": "exaring/hoglet",
"license_state": "standard",
"license_spdx": "MIT"
}