Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 1229583,
"has_wiki": true,
"homepage": null,
"languages": {
"C#": 5913,
"Go": 486184,
"Shell": 2800,
"Python": 20029,
"JavaScript": 21257,
"TypeScript": 9365
},
"pushed_at": "2026-07-22T15:17:50Z",
"created_at": "2026-03-17T14:32:48Z",
"owner_type": "User",
"updated_at": "2026-07-22T15:20:06Z",
"description": "net/http.Client like HTTP Client with options to select specific client TLS Fingerprints to use for requests. ",
"is_archived": false,
"is_disabled": false,
"license_spdx": "BSD-4-Clause",
"default_branch": "master",
"license_spdx_raw": "BSD-4-Clause",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "Albin Stman",
"type": "User",
"login": "albinstman",
"company": null,
"location": "Stockholm Sweden",
"followers": 0,
"avatar_url": "https://avatars.githubusercontent.com/u/24735159?v=4",
"created_at": "2016-12-23T14:54:52Z",
"is_verified": null,
"public_repos": 23,
"account_age_days": 3502
},
"license": {
"state": "standard",
"spdx_id": "BSD-4-Clause",
"raw_spdx": "BSD-4-Clause",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v1.15.1-albinstman.3",
"kind": "prerelease",
"published_at": "2026-07-19T17:45:41Z"
},
{
"tag": "v1.15.1-albinstman.2",
"kind": "prerelease",
"published_at": "2026-07-19T17:31:54Z"
},
{
"tag": "v1.17.1",
"kind": "patch",
"published_at": "2026-07-19T17:23:59Z"
},
{
"tag": "v1.15.1-albinstman.1",
"kind": "prerelease",
"published_at": "2026-07-19T17:15:19Z"
}
],
"recent_commits": [
{
"oid": "3e1eb7a83ad1423f2d496fdab795a0384c3e92b2",
"body": "…lt on it)\n\nfhttp now auto-decompresses based on the response Content-Encoding on\nboth HTTP/1.1 and HTTP/2 regardless of who set Accept-Encoding, and\nstrips Content-Encoding/Content-Length consistently on both paths.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Bump fhttp to v0.6.8-albinstman.2 (plus websocket, quic-go-utls rebui…",
"author_name": "albinmini",
"author_login": "albinstman",
"committed_at": "2026-07-22T15:17:48Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f10550bee502a9bc23ed58184e8d57f8b6944e80",
"body": "HTTP/3 (QUIC) is now off by default in this fork. The verified-egress auditor\ntaps TCP only and does not export QUIC secrets, so a QUIC connection would be\nuntapped and unverifiable — disabling it by default prevents an accidental\nunaudited egress path (pairs with the network-level UDP block).\n\nAdd \n[…]\n required alongside WithProtocolRacing,\nwhich now errors clearly if HTTP/3 is not re-enabled). WithDisableHttp3 is kept\nfor explicit/compat use.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Disable HTTP/3 by default; add WithEnableHttp3 opt-in",
"author_name": "albinstman",
"author_login": "albinstman",
"committed_at": "2026-07-19T23:33:14Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1822f7a99ddc94e2d7df0a124c7e01bd662d82ba",
"body": "Force the client session cache to nil in newRoundTripper so every outbound\nhandshake is a full handshake. This makes the exported TLS 1.3 handshake_secret\nalways anchored by the server Finished (no resumed/0-RTT sessions to account for)\nfor out-of-band verified-egress auditing. OmitEmptyPsk (already\n[…]\nt\nis unchanged.\n\nBump github.com/albinstman/utls to v1.7.7-albinstman.3, which exports\nhandshake_secret as a UTLS_HANDSHAKE_SECRET key-log line.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Disable TLS session resumption/0-RTT; bump utls to albinstman.3",
"author_name": "albinstman",
"author_login": "albinstman",
"committed_at": "2026-07-19T23:24:36Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "d58f0a75cf375f1b0e3b960300a649a596111bd0",
"body": "Ported from albinstman/antibot-print@25d074d, where this lived as a\nvendor patch against tls-client v1.14.0 (then the Chrome_133 profiles).\nRemoves the trust_anchors ClientHello extension (TLSEXT_TYPE 0xca34,\nhttps://issues.chromium.org/issues/398275713) from Chrome_146 and\nChrome_146_PSK.\n\nNote: this deliberately diverges the Chrome_146 fingerprint from real\nChrome 146, which does send this extension.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Drop Chrome trust_anchors extension (0xca34) from Chrome_146 profiles",
"author_name": "albinmini",
"author_login": "albinstman",
"committed_at": "2026-07-19T17:45:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "773c43fcd860b012b97da3da4a8d9049b9c1ed00",
"body": "Picks up the TLS 1.3 server-certificate fixes (uncompressed-cert\ntranscript hashing, >32 KB certificate decompression).\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Bump github.com/albinstman/utls to v1.7.7-albinstman.2",
"author_name": "albinmini",
"author_login": "albinstman",
"committed_at": "2026-07-19T17:31:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c8199cb633e01098d3deeecc7a8885e0d69191b1",
"body": "v1.15.0, v1.16.0 and v1.17.0 are leftover tags from a previous fork\nthat proxy.golang.org cached permanently; they otherwise shadow the\nv<upstream>-albinstman.<rev> prerelease tags in @latest resolution.\nv1.17.1 retracts itself and exists only to carry these retractions.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Retract stale versions cached by the Go module proxy",
"author_name": "albinmini",
"author_login": "albinstman",
"committed_at": "2026-07-19T17:23:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ddf8733ff3a8b03c297cf070ecd5df312409eae4",
"body": "Fork of github.com/bogdanfinn/tls-client at v1.15.1, maintained\nindependently. Depends on albinstman forks of utls, fhttp,\nquic-go-utls and websocket. Fork versions follow\nv<upstream>-albinstman.<rev>.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Rename module to github.com/albinstman/tls-client",
"author_name": "albinmini",
"author_login": "albinstman",
"committed_at": "2026-07-19T17:15:12Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b790a311273f26051935641120de169e497e5943",
"body": "* feat: fixed connection leak & logging format\n\n* feat: chrome150 profile",
"is_bot": false,
"headline": "Chrome150 (#259)",
"author_name": "combo23",
"author_login": "combo23",
"committed_at": "2026-07-02T07:18:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1522d2e36f596592e456717fff0b00d51025e160",
"body": null,
"is_bot": false,
"headline": "created new shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-06-08T19:51:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9921aa67ac94a61f66e7c0deeffb842371f09f9d",
"body": null,
"is_bot": false,
"headline": "fixed body reading on isByteRespnses;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-06-08T19:25:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cc3ab9c7f902311215aa6bb70b442756e6f910d",
"body": null,
"is_bot": false,
"headline": "updated shared library",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-06-05T19:08:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f768f95a757b44d74a4af4288f4ff1c92c060f54",
"body": null,
"is_bot": false,
"headline": "feat: fixed connection leak & logging format (#254)",
"author_name": "combo23",
"author_login": "combo23",
"committed_at": "2026-06-04T05:36:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0dee514a01fa3c5f0520f35a938d4d31c82ec00a",
"body": null,
"is_bot": false,
"headline": "fix: guard against nil logger before constructing proxy dialer (#250)",
"author_name": "desperatee",
"author_login": "desperatee",
"committed_at": "2026-05-25T08:58:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc9dc02968c8598e5c6cc49d66843e057a0fbec0",
"body": null,
"is_bot": false,
"headline": "fix: close idle connections when clearing session cache (#252)",
"author_name": "daiaji",
"author_login": "daiaji",
"committed_at": "2026-05-25T08:55:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac98975bd099823dd083c33502683a8c5ff0ffa6",
"body": "Chrome 133 is fairly outdated",
"is_bot": false,
"headline": "Update DefaultClientProfile to Chrome_146 (#243)",
"author_name": "LnsTchTps",
"author_login": "lnstchtped",
"committed_at": "2026-05-08T06:36:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58e5c06b3c8321d4f6826731e8d40f7e57d3a1e0",
"body": null,
"is_bot": false,
"headline": "add client certificate support (#244)",
"author_name": "dxasm",
"author_login": "dxasm",
"committed_at": "2026-05-08T06:36:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62aac6a95f6450507cc4f3fa7e829cc9902bae7c",
"body": null,
"is_bot": false,
"headline": "fix: http2Conn.Close should return both errors (#248)",
"author_name": "Ali",
"author_login": "z9z",
"committed_at": "2026-05-08T06:34:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8a10057e72af4474c3dfe2c53a6a736541e8836",
"body": "…es (#249)",
"is_bot": false,
"headline": "fix: don't send H3 SETTINGS_MAX_FIELD_SECTION_SIZE for Firefox profil…",
"author_name": "Ali",
"author_login": "z9z",
"committed_at": "2026-05-08T06:33:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a57772fb150c7a794c31f330eb1d4f38b802a11e",
"body": "Add Brave_146 and Brave_146_PSK TLS client profiles. Brave is based on\nChromium 146 but differs by randomizing TLS extension order on every\nconnection for anti-fingerprinting. Captured and verified from\ntls.peet.ws/api/all with 5 samples.\n\nCo-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add support for Brave Browser 146 profile (#241)",
"author_name": "sbyt3",
"author_login": "sbyt3",
"committed_at": "2026-03-29T21:17:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ed6427f96a3df630a6947f371fc87298dae443f4",
"body": "Updated TLS cipher suite constants to use uint16 literals directly. Removed the Firefox 148 client profile implementation.",
"is_bot": false,
"headline": "Remove FIREFOX 148 PSK since it is not working (#239)",
"author_name": "generalregulator",
"author_login": "generalregulator",
"committed_at": "2026-03-19T11:18:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "474eb8d2f42a6952d3375ffb316eb3a9a7f38f08",
"body": null,
"is_bot": false,
"headline": "Add support for Firefox 148 profile (#238)",
"author_name": "generalregulator",
"author_login": "generalregulator",
"committed_at": "2026-03-19T11:00:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82a0cb5f77f28f78bd343848dbd62d3267a87a90",
"body": null,
"is_bot": false,
"headline": "Add Firefox 148 and Firefox 148 PSK profiles FROM TLS.PEET.WS (#234)",
"author_name": "generalregulator",
"author_login": "generalregulator",
"committed_at": "2026-03-18T19:50:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0fc5950a914b860b5b00bd77b3859352fbb6ec7",
"body": "…e body whether at least one byte exists (#232)",
"is_bot": false,
"headline": "fix EOF errors caused by the charset reader by previewing the respons…",
"author_name": "DemBackfisch",
"author_login": "DemBackfisch",
"committed_at": "2026-03-12T09:10:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3807c967d5bb426bbe7ebfa8f826a2bcb3c038a7",
"body": null,
"is_bot": false,
"headline": "fix: header order for websockets (#230)",
"author_name": "combo23",
"author_login": "combo23",
"committed_at": "2026-03-03T08:32:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "674eaed248221e8dbc3d86d4014213a66f71dee2",
"body": "* updated pinner to update pins in case they change per pinner instance\n\n* added automatic charset detection and decoding for the response body\n\n* cleanup of euckrResponse client option to prevent decoding issues",
"is_bot": false,
"headline": "Automatic Charset Detection of Response Body (#227)",
"author_name": "DemBackfisch",
"author_login": "DemBackfisch",
"committed_at": "2026-02-26T06:52:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f081b53189856fd13dca4ca089d29814cbb6a25c",
"body": null,
"is_bot": false,
"headline": "omit nil check for maps (#224)",
"author_name": "Abdel",
"author_login": "aarock1234",
"committed_at": "2026-02-13T10:11:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07c86797ccb9266c71c0921cdc541ca35394032e",
"body": null,
"is_bot": false,
"headline": "Fix client_options.go syntax error (#222)",
"author_name": "蒟蒻",
"author_login": "patyhank",
"committed_at": "2026-02-09T13:53:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72504946a800d5d4c47646b8fa04fc434f361781",
"body": "* feat: prerequest hooks n postrequest hooks\n\n* feat: added new lock, changed hooks methods name\n\n* fix: posthooks are not run upon prehooks error\n\n* feat: wrapped Do() function into private one to simplify hook calls\n\n* fix: standarized post n pre hook panic handling & updated tests\n\n* feat: added methods to reset post n pre hooks\n\n* feat: continue on errors for prehooks\n\n* fix: added log for errors in posthooks\n\n* feat: continue on errors for posthook",
"is_bot": false,
"headline": "feat: prerequest hooks n postrequest hooks (#220)",
"author_name": "combo23",
"author_login": "combo23",
"committed_at": "2026-02-06T13:31:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3537d6cd9ceb266ea3b74a39f5bc5928ec2083c",
"body": "…dd WithInitialStreamID, WithAllowHTTP) (#218)\n\n* Update client.go - Add customContextDialer and expose DialContext to WithDialContext\n\nUpdate client.go - Add customContextDialer and expose DialContext to WithDialContext\n\n* Update client_options.go - Add WithDialContext, also recover lost WithInitia\n[…]\no warn about WithDialContext usage when combination with WithProxyUrl...\n\n* Update client_options.go - Update WithDialContext docs string\n\nUpdate client_options.go - Update WithDialContext docs string",
"is_bot": false,
"headline": "Add WithDialContext option for custom socket and DNS management (re-a…",
"author_name": "Gunir",
"author_login": "gunir",
"committed_at": "2026-02-06T09:08:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f4a46b29c051e16e81fa547a099560ef7008e24c",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-02-04T07:53:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "725955a87b5426693902ca6fccb6e5d036b2208c",
"body": "…\" (#217)",
"is_bot": false,
"headline": "print detected pins in error message in case of \"bad ssl pin detected…",
"author_name": "Andrea Vitale",
"author_login": "AndreaVitale",
"committed_at": "2026-02-03T15:11:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a1dc1679d4b772be2620ca2e96043b999ce3460",
"body": null,
"is_bot": false,
"headline": "updated dependencies;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-02-03T08:56:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f85e5c27f96b3f9ca97887f14668803e4e3a1d8f",
"body": "WebSocket uTLS:\n- Add GetTLSDialer() to use same fingerprinting as HTTP\n- Add dialTLSForWebsocket() method for WebSocket connections\n- Fix WebSocket to work with real servers (echo.websocket.org)",
"is_bot": false,
"headline": "fixed websocket connection; (#216)",
"author_name": "CaptainBarnius",
"author_login": "bogdanfinn",
"committed_at": "2026-01-26T08:13:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b516129c9e55d2ad8b633a62a50515f820e3033f",
"body": "Fixes #206",
"is_bot": false,
"headline": "[Bug]: ipv6 url error (#212)",
"author_name": "zephyr-profile",
"author_login": "zephyr-profile",
"committed_at": "2026-01-26T07:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "635d5fa49b585da14f7f31128089344c65ea9ddb",
"body": "* add Safari iOS 18.5 client profile\n\n* add header priority configuration for HTTP/2 in Safari iOS 18.5 client profile\n\n* add Chrome 130 PSK client profile\n\n* add Safari iOS 26 client profile\n\n* rename Safari iOS 26 client profile to 26.0\n\n* add Chrome 146 + PSK client profiles\n\n* add tests and fingerprints for Chrome 146, Safari iOS 18.5 and Safari iOS 26.0\n\n---------\n\nCo-authored-by: nihiloid <vibes-deny-triceps@duck.com>",
"is_bot": false,
"headline": "Add Safari iOS 26.0, Chrome 146, Chrome 146 PSK, tests (#214)",
"author_name": "nihiloid",
"author_login": "nihiloid",
"committed_at": "2026-01-26T07:39:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9046b9d3ce1d9ed0b0cd47287f39bae88d706cff",
"body": "- Implement correct Chrome 144 HTTP/3 fingerprint with PRIORITY_UPDATE frame (984832)\n - Implement correct Firefox 147 HTTP/3 fingerprint without SETTINGS_MAX_FIELD_SECTION_SIZE\n - Add GREASE frames and random GREASE settings (Chrome only)\n - Fix MaxResponseHeaderBytes handling (-1 for Firefox, positive values for Chrome)\n - Add HTTP/3 protocol racing support\n - All HTTP/3 fingerprint tests passing",
"is_bot": false,
"headline": "feat: HTTP/3 fingerprinting for Chrome 144 and Firefox 147 (#215)",
"author_name": "CaptainBarnius",
"author_login": "bogdanfinn",
"committed_at": "2026-01-26T07:38:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "145b2fdcf1c707b205162abc65d92ea86cdfee25",
"body": null,
"is_bot": false,
"headline": "updated fhttp dependency;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-21T07:27:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d4093b9354b47748781e8c9108165cbb73f75d3",
"body": "…ify;",
"is_bot": false,
"headline": "fixes #210: allow WithServerNameOverwrite without WithInsecureSkipVer…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-16T08:37:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41acb74230323b08f232ec4169f8254977846445",
"body": "…r profiles;",
"is_bot": false,
"headline": "added chrome 144, chrome 144 with PSK, firefox 147 without psk browse…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-16T08:35:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "514815fe60ff05cf28ccb86c8e2d4a087ab6afe7",
"body": "* Add EUC-KR encoding for Korean\n\n* remove fmt\n\n* fixed camelcase",
"is_bot": false,
"headline": "Add EUC-KR encoding for Korean (#207)",
"author_name": "iu",
"author_login": "ahnse0",
"committed_at": "2026-01-16T07:15:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6377e97f8639c7a574862ce4f529a3cd18364862",
"body": "Update contributed_browser_profiles.go - Add Firefox 146, 147",
"is_bot": false,
"headline": "Update contributed_browser_profiles.go - Add Firefox 146, 147 (#209)",
"author_name": "Gunir",
"author_login": "gunir",
"committed_at": "2026-01-16T07:13:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e129d5aebc031001979e57cc9753f3a5f5be5076",
"body": null,
"is_bot": false,
"headline": "fixed name of factory method for websockets;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-11T19:30:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32bdb7ee0b83ccfb2c41e51f6d6571d2e3db325b",
"body": null,
"is_bot": false,
"headline": "refs #95: implemented websocket support; (#208)",
"author_name": "CaptainBarnius",
"author_login": "bogdanfinn",
"committed_at": "2026-01-11T19:25:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e9faaf03bf143af13c1739c0ec5b369cb40a0c8",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-10T15:32:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6680ed303ed862e43889436ab9b8b21e6e6cd419",
"body": null,
"is_bot": false,
"headline": "fixed shared library code;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-10T15:30:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "264f9a97558c2f6476c774d78aea80508185bf4d",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-10T15:11:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af6c630869ff3e26f6c6d96c2de40eea0ef0a88d",
"body": "…ol to use;",
"is_bot": false,
"headline": "implemented chromes happy eyeballs approach to determine which protoc…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-10T15:03:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f8f25965411bb29fd07730bd0670665d598c2bd",
"body": null,
"is_bot": false,
"headline": "Updated utls and fhttp for fixing #194;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-10T14:58:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eb3c52ffd2feaa5bc996ed665f0eeb648f12f00",
"body": "* Add extra params to NewClientProfile\n\nAdd extra params to NewClientProfile\n\n* Add extra logics to expose AllowHTTP and StreamID\n\nAdd extra logics to expose AllowHTTP and StreamID\n\n* Add extra logics to expose AllowHTTP and StreamID\n\nAdd extra logics to expose AllowHTTP and StreamID\n\n* Add extra lo\n[…]\nlient.go - Remove redundant params\n\nUpdate client.go - Remove redundant params\n\n* Update roundtripper.go - remove redundant params\n\nUpdate roundtripper.go - remove redundant params\n\n* Update client.go",
"is_bot": false,
"headline": "Add AllowHTTP, set StreamID value (#205)",
"author_name": "Gunir",
"author_login": "gunir",
"committed_at": "2026-01-10T14:44:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dab03eed6c0b47cd31490e7d35a8488a8892f163",
"body": null,
"is_bot": false,
"headline": "fixes #191: fixed correct usage of PSK (41) extension in chrome_133;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2026-01-09T19:14:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1223f684b080b115bf4c21ac8948d17ee6d5b758",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-12-25T20:57:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71e7aa4e1775d6096eb3ac4f4ebffc6740917c5f",
"body": "…ttp cookiejar and not tls_client cookiejar anymore;",
"is_bot": false,
"headline": "Breaking Change: changed default cookiejar in shared library to be fh…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-12-25T20:30:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "365140655759292422a82d699666e8a22573d2cc",
"body": null,
"is_bot": false,
"headline": "updated dependencies to use latest quic-go-utls",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-12-25T20:13:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "96ae9bb218f4c10228669f4cb63fa6d782458bbd",
"body": null,
"is_bot": false,
"headline": "fixed failing test;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-12-25T12:54:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7d4154ba34b013347be6a687714503c1d73ed61",
"body": null,
"is_bot": false,
"headline": "updated dependencies;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-11-03T21:34:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01d4bf77f817a0072a13399b08c9cf78a90d2159",
"body": "* Add 'keep_compressed' test\n\n* Modify 'keep_compressed' test",
"is_bot": false,
"headline": "Add 'keep_compressed' test (#201)",
"author_name": "Yuri Papouski",
"author_login": "ypapouski",
"committed_at": "2025-11-03T21:02:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06f597ec2234f3cdf2f54397770bc97c8827fd7c",
"body": null,
"is_bot": false,
"headline": "refs #196: implemented support for socks4 proxies;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-21T20:59:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c102fc070fa7ef740b03140a673459f3aca6495c",
"body": null,
"is_bot": false,
"headline": "updated readme;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-17T14:59:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "620da6615a002a73362d41c3124d9c8e6a6b4400",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-11T22:05:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6575904725c0abf0765013088e726522bbb9414",
"body": null,
"is_bot": false,
"headline": "added possibility to disable http3 to shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-11T22:04:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "438e771f44374bae47f45104fe5a1f88ad9ebdfc",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-11T21:52:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6763158108ed623545a970ab5f3f55af84aaaee",
"body": null,
"is_bot": false,
"headline": "switched quic-go-utls fork from dharmey to own; (#195)",
"author_name": "CaptainBarnius",
"author_login": "bogdanfinn",
"committed_at": "2025-09-11T21:45:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "977660901cbc91d2b0fa53a8d02c49a28687c93c",
"body": null,
"is_bot": false,
"headline": "added option to disable http3;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-11T21:36:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee133aa27e844de2086d6e086ed47d1940f618ae",
"body": null,
"is_bot": false,
"headline": "updated readme;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-09-08T19:27:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "974499ad9c57a510919e1493babfe60ec558d12b",
"body": null,
"is_bot": false,
"headline": "added tests for content-length header order",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-07-31T21:30:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f692401bca576732a27cc949de4fbab3ada98ec",
"body": null,
"is_bot": false,
"headline": "added go 1.24 Dockerfiles;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-07-18T20:56:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2ba361e0dbdf6504d188cd11b136a6d3245cb56",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-07-18T20:34:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c162eebc4160d8370b13687e34995ecb5462af56",
"body": null,
"is_bot": false,
"headline": "added h3 to chrome_133 psk;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-07-18T20:25:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2deda34dcec4bccd7d7c48f8ce84fb26ae82dbc",
"body": null,
"is_bot": false,
"headline": "add HTTP3 (QUIC) support (#189)",
"author_name": "dharmey",
"author_login": "Dharmey747",
"committed_at": "2025-07-18T20:21:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1655cdb30be87157c6f83beef3bcbde581a716b3",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-06-17T07:53:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edbaebc1bd863464cc1897acb1e7440383889abc",
"body": null,
"is_bot": false,
"headline": "updated utls dependencies and go to 1.24;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-06-17T07:02:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6eb23f99510e05798e88fd2e0f800361a6860da6",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-06-14T19:41:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d704c12210816fb90deeb2ef68f9afbbdb50f2ce",
"body": null,
"is_bot": false,
"headline": "some formatting;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-06-14T19:20:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6499b7c980cf8e9006df013d66604ae5afa099fc",
"body": "* add Safari iOS 18.5 client profile\n\n* add header priority configuration for HTTP/2 in Safari iOS 18.5 client profile\n\n* add Chrome 130 PSK client profile\n\n---------\n\nCo-authored-by: nihiloid <vibes-deny-triceps@duck.com>",
"is_bot": false,
"headline": "add Safari iOS 18.5 client profile (#182)",
"author_name": "nihiloid",
"author_login": "nihiloid",
"committed_at": "2025-06-01T18:07:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a71edbf6e05acd4ade8e910e4c29c968003e27b",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-04-02T10:01:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f015f606063e359878f0ff5e19c5c53b3e81fd76",
"body": null,
"is_bot": false,
"headline": "updated examples and mapper;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-04-02T06:46:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27775327a7931f4ded373869c450d6ae3d0160fb",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-04-02T06:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5433afb9e6acd542ffc7b9c801adc76465b872f6",
"body": null,
"is_bot": false,
"headline": "fixed example;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-04-02T06:15:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43c56a24f06efaf8629f4d6eec6b16ed872cac64",
"body": "* updated SpecFactory to support an array of certCompressionAlgos\n\nThe SpecFactory has been missing some recent stuff. Updated it to take a\nlist of certCompressionAlgorithms.\n\n* added X25519MLKEM768 key share\n\n* update ja3 tests\n\n* add record size limit extension to the ja3 spec factory",
"is_bot": false,
"headline": "Update the spec factory (#166)",
"author_name": "Stanislav Milchev",
"author_login": "stanislav-milchev",
"committed_at": "2025-03-25T08:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be47dc4d727215e8b6d01e16ad0ea7b1f27c02b3",
"body": null,
"is_bot": false,
"headline": "added tests for connection reuse;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-03-14T20:08:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae8b387d77d40fb8658711307911b5cf67c2ec8f",
"body": null,
"is_bot": false,
"headline": "refs #160: added option to supply custom proxy dialer to http client;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-03-14T07:50:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3cc71980303a3a563459ed177cf8ddc0c3295442",
"body": null,
"is_bot": false,
"headline": "added firefox_135",
"author_name": "Larina",
"author_login": "Larinax999",
"committed_at": "2025-03-10T07:23:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a7e6f6ec2d4af6639cdbdcc2891fdc2bfe1fae2",
"body": null,
"is_bot": false,
"headline": "added firefox_135",
"author_name": "Larina",
"author_login": "Larinax999",
"committed_at": "2025-03-10T07:23:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a767ea2ca31e652ff4cc04da5416dcebd1e71b0",
"body": "This reverts commit 416cb6b144a4c6008ade81764dc5710f9d95468d.",
"is_bot": false,
"headline": "Revert \"adjusted wrong WINDOW_UPDATE Frames compared to real browser;\"",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-02-26T21:24:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "416cb6b144a4c6008ade81764dc5710f9d95468d",
"body": null,
"is_bot": false,
"headline": "adjusted wrong WINDOW_UPDATE Frames compared to real browser;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-02-26T20:48:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "faa2449f66f5381053e9cee66925c2a33265346a",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-02-07T08:52:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09c96a76f84141ec4a06c142f3effb0b931589c2",
"body": null,
"is_bot": false,
"headline": "implemented chrome 133 with new alps extension code point 17613;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-02-07T08:45:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3867ea388546509d2ff29e5fb8f63cea88ad84cf",
"body": null,
"is_bot": false,
"headline": "Create FUNDING.yml",
"author_name": "CaptainBarnius",
"author_login": "bogdanfinn",
"committed_at": "2025-01-29T23:20:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e305063b50c73be760be2cde61c5646c28cbe6cd",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-01-29T21:26:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36992904806be7af96681781704a7f304ab8663e",
"body": null,
"is_bot": false,
"headline": "updated fhttp to avoid possible nil pointer dereference;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2025-01-29T21:18:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "760050816faa18b0d6611a700c2217ed73eebce6",
"body": "… (#153)",
"is_bot": false,
"headline": "updated pinner to update pins in case they change per pinner instance…",
"author_name": "DemBackfisch",
"author_login": "DemBackfisch",
"committed_at": "2025-01-21T12:46:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bef62602e06e61322d148b1c2957cd75de247b4",
"body": "…GFILE env variable;",
"is_bot": false,
"headline": "updated dependencies to not have logs to stdout when setting SSLKEYLO…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2024-12-08T20:07:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81198afcf1826a2fd2b50620977b6788f86485a7",
"body": "…nt map read write;",
"is_bot": false,
"headline": "fixes #148: clone default headers on usage in order to avoid concurre…",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2024-12-08T19:53:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cdc3803a916fc58491a73d9931898759efbd18ae",
"body": null,
"is_bot": false,
"headline": "updated shared library;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2024-12-03T07:46:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b0a010797d19135f9f0c8acbb73bc0f257c0435",
"body": null,
"is_bot": false,
"headline": "updated fhttp dependency;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2024-12-03T07:44:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b39f43545f85b5a84b1138989d21be6b3d029858",
"body": null,
"is_bot": false,
"headline": "feat(profiles): added firefox_133 (#144)",
"author_name": "snekROmonoro",
"author_login": "snekROmonoro",
"committed_at": "2024-12-02T07:04:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cee9dd7d85f907b2a83f20e3f5988b388cd6988",
"body": null,
"is_bot": false,
"headline": "fix: unassigned error in example (#142)",
"author_name": "Jesse Johnson",
"author_login": null,
"committed_at": "2024-11-25T06:47:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d517d31c830b0ec6e37838eb6d56f8bc7585fb9",
"body": "…cker (#141)\n\n* feat(profiles): updated default client profile\r\n\r\n* feat(bandwidth-tracker): added Reset()",
"is_bot": false,
"headline": "Updated default client profile; Added Reset() method in bandwidth tra…",
"author_name": "snekROmonoro",
"author_login": "snekROmonoro",
"committed_at": "2024-11-20T18:12:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2449d9897aa68f6aeec0e2da04de7627dd3d6abf",
"body": null,
"is_bot": false,
"headline": "updated dockerfiles for build process;",
"author_name": "Bogdan Finn",
"author_login": "bogdanfinn",
"committed_at": "2024-11-19T10:02:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2f89484058b768b21b4a3a906440f1ef6369e61",
"body": null,
"is_bot": false,
"headline": "updated tls-client version for shared library;",
"author_name": "Bogdan Finn",
"author_login": null,
"committed_at": "2024-11-19T07:41:09Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 65,
"latest_release_at": "2026-07-19T17:45:41Z",
"latest_release_tag": "v1.15.1-albinstman.3",
"releases_from_tags": false,
"days_since_last_push": 4,
"active_weeks_last_year": 23,
"days_since_latest_release": 7,
"mean_days_between_releases": 0
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/albinstman/tls-client",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/albinstman/tls-client",
"is_deprecated": false,
"latest_version": "v1.15.1",
"repository_url": "https://github.com/albinstman/tls-client",
"versions_count": 97,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-06-08T19:25:13Z",
"latest_version_yanked": null,
"days_since_latest_publish": 48
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example",
"samples"
],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"cffi_dist/example_typescript/tsconfig.json"
],
"toolchain_manifests": [
"cffi_dist/go.mod",
"go.mod"
],
"largest_source_bytes": 83136,
"source_files_sampled": 63,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"cffi_dist/go.mod",
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/albinstman/fhttp",
"manifest": "cffi_dist/go.mod",
"ecosystem": "go",
"version_constraint": "v0.6.8"
},
{
"name": "github.com/albinstman/tls-client",
"manifest": "cffi_dist/go.mod",
"ecosystem": "go",
"version_constraint": "v1.15.1"
},
{
"name": "github.com/google/uuid",
"manifest": "cffi_dist/go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/albinstman/fhttp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.6.8-albinstman.2"
},
{
"name": "github.com/albinstman/quic-go-utls",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.0.9-albinstman.2"
},
{
"name": "github.com/albinstman/utls",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.7.7-albinstman.3"
},
{
"name": "github.com/albinstman/websocket",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.5.5-albinstman.2"
},
{
"name": "github.com/bdandy/go-socks4",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.2.3"
},
{
"name": "github.com/google/uuid",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.1"
},
{
"name": "github.com/tam7t/hpkp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20160821193359-2b70b4024ed5"
},
{
"name": "golang.org/x/net",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.48.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "bogdanfinn",
"commits": 291,
"avatar_url": "https://avatars.githubusercontent.com/u/17678241?v=4"
},
{
"type": "User",
"login": "albinstman",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/24735159?v=4"
},
{
"type": "User",
"login": "justhyped",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/97669684?v=4"
},
{
"type": "User",
"login": "combo23",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/55195605?v=4"
},
{
"type": "User",
"login": "DemBackfisch",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/74070823?v=4"
},
{
"type": "User",
"login": "gunir",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/134402102?v=4"
},
{
"type": "User",
"login": "generalregulator",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/261768117?v=4"
},
{
"type": "User",
"login": "snekROmonoro",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/54446189?v=4"
},
{
"type": "User",
"login": "fidraC",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/144536228?v=4"
},
{
"type": "User",
"login": "ManuCiao10",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/89024276?v=4"
}
],
"contributors_sampled": 41,
"top_contributor_share": 0.799
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [
".eslintrc.js"
],
"has_editorconfig": false,
"has_linter_config": true,
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": "18 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": "no SAST tool detected",
"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": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "24 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "3e1eb7a83ad1423f2d496fdab795a0384c3e92b2",
"ran_at": "2026-07-27T07:27:17Z",
"aggregate_score": 2.6,
"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": null,
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/albinstman/tls-client",
"host": "github.com",
"name": "tls-client",
"owner": "albinstman"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 42,
"inputs": {
"security": 26,
"vitality": 87,
"community": 12,
"governance": 40,
"engineering": 34
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "excellent",
"name": "Vitality",
"value": 87,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 78,
"inputs": {
"commits_last_year": 65,
"human_commit_share": 1,
"days_since_last_push": 4,
"active_weeks_last_year": 23
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 4
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "23/52 weeks with commits",
"points": 15.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 23
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "65 commits in the last year",
"points": 16.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 65
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "18 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": 4,
"latest_release_tag": "v1.15.1-albinstman.3",
"releases_from_tags": false,
"days_since_latest_release": 7,
"mean_days_between_releases": 0
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 7 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 7
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 12,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (BSD-4-Clause)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "BSD-4-Clause"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 40,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 41,
"top_contributor_share": 0.799
},
"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 80% of commits",
"points": 4.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 80
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "41 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 41
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"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": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 40,
"inputs": {
"followers": 0,
"owner_type": "User",
"is_verified": null,
"owner_login": "albinstman",
"public_repos": 23,
"account_age_days": 3502
},
"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": "0 followers of albinstman",
"points": 0,
"status": "missed",
"details": [
{
"code": "owner_followers",
"params": {
"count": 0,
"login": "albinstman"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "23 public repos, account ~9 yr old",
"points": 22.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 23
}
},
{
"code": "account_age_years",
"params": {
"years": 9
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/albinstman/tls-client"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 48
},
"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 48 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 48
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "97 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 97
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 34,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 50,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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": ".eslintrc.js",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".eslintrc.js"
}
}
],
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "critical",
"name": "Documentation",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": false,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 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": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "critical",
"name": "Security",
"value": 26,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Dangerous-Workflow, Packaging, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"dangerous_workflow",
"packaging",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 26,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 2.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "18 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": "no SAST tool detected",
"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": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "24 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 59,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.47,
"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": "47 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 25.1,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 47,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": true,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [
"cffi_dist/example_typescript/tsconfig.json"
],
"agent_commit_share": 0.08,
"toolchain_manifests": [
"cffi_dist/go.mod",
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "cffi_dist/go.mod, go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "cffi_dist/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": ".eslintrc.js",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".eslintrc.js"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "cffi_dist/example_typescript/tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "cffi_dist/example_typescript/tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile, lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "8 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 8,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "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": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 83136,
"source_files_sampled": 63,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/63 source files over 60KB",
"points": 54.1,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 63,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example",
"samples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "example, samples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example, samples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Community profile unavailable",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-27T07:27:34.880248Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/albinstman/tls-client.svg",
"full_name": "albinstman/tls-client",
"license_state": "standard",
"license_spdx": "BSD-4-Clause"
}