Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 169,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 188542,
"Shell": 547
},
"pushed_at": "2026-07-27T14:30:49Z",
"created_at": "2020-06-22T11:15:58Z",
"owner_type": "Organization",
"updated_at": "2026-07-15T08:17:58Z",
"description": "Utilities to redact Go strings for confidentiality",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://www.cockroachlabs.com/",
"name": "CockroachDB",
"type": "Organization",
"login": "cockroachdb",
"company": null,
"location": null,
"followers": 953,
"avatar_url": "https://avatars.githubusercontent.com/u/6748139?v=4",
"created_at": "2014-02-21T13:26:24Z",
"is_verified": null,
"public_repos": 225,
"account_age_days": 4542
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.1.8",
"kind": "patch",
"published_at": "2026-03-13T17:37:20Z"
},
{
"tag": "v1.1.5",
"kind": "patch",
"published_at": "2023-06-12T16:09:57Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2021-06-25T13:11:14Z"
}
],
"recent_commits": [
{
"oid": "d01e85010e9f95833fecbc181692d82929e074f3",
"body": "markers: replace regexp with scanning in StripMarkers and EscapeMarkers",
"is_bot": false,
"headline": "Merge pull request #37 from cockroachdb/davidh/strip-markers-perf",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2026-03-13T17:31:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccab926cf1d12976cfbc5d8daa13d74d8d7c3382",
"body": "Replace the regexp-based implementation of StripMarkers() and\nEscapeMarkers() with manual byte scanning using a shared\nstripMarkersBytes() function.\n\nThe new implementation exploits the fact that all three marker\ncharacters (‹ U+2039, › U+203A, † U+2020) are 3-byte UTF-8 sequences\nsharing the prefix\n[…]\n.00 ± 0% 0.00 ± 0% -100.00% (p=0.000 n=8)\nEscapeMarkers-10 3.00 ± 0% 1.00 ± 0% -66.67% (p=0.000 n=8)\n\nCo-Authored-By: roachdev-claude <roachdev-claude-bot@cockroachlabs.com>",
"is_bot": false,
"headline": "markers: replace regexp with scanning in StripMarkers and EscapeMarkers",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2026-03-13T16:45:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0d2eacc71821cb5568b8237b69fb36c5c0f46128",
"body": "Add exhaustive table-driven tests for StripMarkers (both string and byte\nvariants) and EscapeMarkers covering edge cases including empty inputs,\nunicode content, consecutive markers, hash prefix markers, and boundary\nconditions. Add benchmarks to establish a performance baseline before\noptimizing these functions.\n\nCo-Authored-By: roachdev-claude <roachdev-claude-bot@cockroachlabs.com>",
"is_bot": false,
"headline": "markers: add tests and benchmarks for StripMarkers and EscapeMarkers",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2026-03-13T14:27:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45c49b2331233391236c93972e20a8d320ca5af5",
"body": "markers: replace regexp with manual scanning in Redact()",
"is_bot": false,
"headline": "Merge pull request #36 from cockroachdb/davidh/unify-redact-impl",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2026-03-13T14:13:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dc18d3dc3f3a066cd454a362fd7096318da6070",
"body": "Replace the regexp-based implementation of RedactableString.Redact() and\nRedactableBytes.Redact() with manual index-based scanning using\nbytes.Index and a shared redactBytes() implementation.\n\nThe new implementation:\n- Scans for start markers (‹) using Index, then finds the closing marker (›)\n- Dist\n[…]\n 2.00 ± 0% -75.00% (p=0.000 n=8+8)\nRedactCall_RegularRedaction-10 5.00 ± 0% 2.00 ± 0% -60.00% (p=0.000 n=8+8)\n\nCo-Authored-By: roachdev-claude <roachdev-claude-bot@cockroachlabs.com>",
"is_bot": false,
"headline": "markers: replace regexp with manual scanning in Redact()",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2026-03-12T19:38:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f30c154b7ee5bd6bc857045517a809f0634cc6f8",
"body": "introduce hash-based redaction",
"is_bot": false,
"headline": "Merge pull request #33 from cockroachdb/hash-redaction",
"author_name": "Akshay Joshi",
"author_login": "aa-joshi",
"committed_at": "2026-03-04T11:14:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f66af91d8403cc029b85d547b1085576cd73a39",
"body": "…d concurrency test",
"is_bot": false,
"headline": "Handled adjacent zones, InternalEscapeBytes for hash marker and adde…",
"author_name": "Vishesh Bardia",
"author_login": "visheshbardia",
"committed_at": "2026-03-04T09:31:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "576761f24d9769fb833fe12e3f7b52f7511fa451",
"body": null,
"is_bot": false,
"headline": "updated pool type and optimised print and added e2e tests",
"author_name": "Vishesh Bardia",
"author_login": "visheshbardia",
"committed_at": "2026-02-20T15:39:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be6d00c62e48c1cd4e5d0ce30b49726417c17954",
"body": null,
"is_bot": false,
"headline": "replaced sha1 with sha256 and optimised heap allocs.",
"author_name": "Vishesh Bardia",
"author_login": "visheshbardia",
"committed_at": "2026-02-18T17:11:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74df9091b1e7d9fda7800a05da9ebde27ed03665",
"body": "This commit introduces the ability to hash sensitive information instead\nof fully redacting it. This let's the user correlate entries while still\npreserving privacy. This is an opt-in feature and requires the user to explicitly mark\nvalues as \"hashable\".\n\nChanges:\n * EnableHashing(salt) is used to \n[…]\nce\")).Redact()) // Output: ‹522b276a›\n ```\n\n * Inline with helper functions: \n \n ```go \n fmt.Println(redact.Sprintf(\"%s\", redact.HashString(\"alice\")).Redact()) // Output: ‹522b276a›\n ```",
"is_bot": false,
"headline": "introduce hash-based redaction",
"author_name": "Arjun Mahishi",
"author_login": "arjunmahishi",
"committed_at": "2025-11-14T05:56:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "34e336f9e006a3a29ff72284488e6febf912afa3",
"body": "Add OTel collector processor for redact",
"is_bot": false,
"headline": "Merge pull request #31 from TheComputerM/otelprocessor",
"author_name": "David Hartunian",
"author_login": "dhartunian",
"committed_at": "2025-07-31T15:58:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5975824642a7fd1507c917bf4b8dfab4864134c",
"body": "This adds a processor designed to be used with the OpenTelemetry\nCollector that can be used to redact log bodies using the redact\npackage. The README in otelprocessor describes how to build a collector\nwith the processor.",
"is_bot": false,
"headline": "Add OTel collector processor for redact",
"author_name": "Mudit Somani",
"author_login": "TheComputerM",
"committed_at": "2025-07-31T05:48:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d146e2665fa49f27bd30d24f5bef54582a8b17e",
"body": "Add support for SafeByte and SafeBytes",
"is_bot": false,
"headline": "Merge pull request #30 from cockroachdb/support-for-safe-bytes",
"author_name": "Arjun Mahishi",
"author_login": "arjunmahishi",
"committed_at": "2025-01-30T06:08:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63f4bd7ecc06b05e55b6020fa4237c314db804b2",
"body": "Currently, there is no direct way to write a safe byte or a byte slice\nto a SafeWriter. They have to be type-casted to either a rune (for byte)\nor a string (for []byte). It would be more efficient to add\nthe types (and helpers) SafeByte and SafeBytes.\n\nAlso, UnsafeByte and UnsafeBytes already exist. So, introducing SafeByte and\nSafeBytes would also make the API more consistent.",
"is_bot": false,
"headline": "Add support for SafeByte and SafeBytes",
"author_name": "Arjun Mahishi",
"author_login": "arjunmahishi",
"committed_at": "2025-01-28T18:42:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7e45562c4d0d78dd4d6c7f08f65e8220a0d7b77",
"body": "Multiple ergonomic improvements + stop removing trailing spaces",
"is_bot": false,
"headline": "Merge pull request #29 from knz/20230524-improvements",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-06-12T16:01:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f31255ea60c6315a91c5771d53dd136ec428249",
"body": "The newline breakout logic was introducing them at an alarming rate.\nThis was unnecessary. This commit optimizes them away.",
"is_bot": false,
"headline": "Try harder at avoiding empty strings inside redaction markers \"‹›\"",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-24T18:05:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b93778cb52e2c664578d26369817b710ea9b038",
"body": "In downstream code we have seen that certain string combinations\nresult in invalid/incomplete outputs, because of the automatic\nstripping of trailing newlines/spaces.\n\nThere's no good reason to keep it especially now that repeated\ncombinations of markers are also elided automatically.",
"is_bot": false,
"headline": "Do not remove trailing spaces/newlines in the safe printer",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-24T17:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f4e696e6cc5c6a42ebc6472a91fe530069a87b3",
"body": "No change in functionality - just more tests to show the problem.",
"is_bot": false,
"headline": "Extend the internal buffer tests.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-24T17:41:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b0fa52d0608ccdbba1fb5b0c7d35b4dd9ff3a57",
"body": "This patch combines markers together:\n\n```\n\"\" -> \"\" (instead of \"‹›\")\n\"‹a›\" + \"‹b›\" -> \"‹ab›\" (instead of \"‹a›‹b›\")\n```",
"is_bot": false,
"headline": "Avoid run-ins of start/end markers.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-24T17:35:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "18f4ea3668634a467bcf0683698e8b404176d687",
"body": null,
"is_bot": false,
"headline": "Clarify `Example_mixed_writes`",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-24T17:35:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea921e1e1f55be2d057c9d97b696bed8833ddb84",
"body": "builder: properly mark unsafe strings/bytes/runes as unsafe",
"is_bot": false,
"headline": "Merge pull request #28 from knz/20230512-buffer-markers",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-12T20:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee4ae758a1710b87a9c0c36a2f1c096ef43cf41f",
"body": null,
"is_bot": false,
"headline": "builder: properly mark unsafe strings/bytes/runes as unsafe",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2023-05-12T20:39:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2eafe0dcdd134b1460a26b49d2b289cdf188a972",
"body": null,
"is_bot": false,
"headline": "Merge pull request #27 from knz/20220107-go117",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2022-01-07T14:32:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd16c9be67f6f31c353334a7818e698fed20bc92",
"body": null,
"is_bot": false,
"headline": ".github: also run CI for 1.17",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2022-01-07T14:29:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b320da739b74cedd820f874be28f4c0379c770c",
"body": null,
"is_bot": false,
"headline": "rfmt: import changes from the go 1.17 runtime",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2022-01-07T14:28:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d050dc2e741f904844764ffd4b66732b75194844",
"body": "The diff was forgetting to reset the package directive.",
"is_bot": false,
"headline": "rfmt: fix the format patch",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2022-01-07T14:27:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6fc41103e01e90df8ced26e2ab3bdb34fa1182ff",
"body": "Ensure that StringBuilder implements accessors by value",
"is_bot": false,
"headline": "Merge pull request #24 from knz/20210601-buf-string",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2021-07-01T14:35:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdc5d3e5033db6cbe9fc880fe98ced6c2bcd2fad",
"body": null,
"is_bot": false,
"headline": "Ensure that StringBuilder implements accessors by value",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-07-01T14:33:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2db076c9af1bd4490a9108ae73dbf33e9b154b35",
"body": "Fix a regression introduced in v1.1.0.",
"is_bot": false,
"headline": "Merge pull request #23 from knz/20210625-fix-regression",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2021-06-25T15:30:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "254ef359aae3b2dfc89f1487095d0967dfad2e9a",
"body": "This was caught by CockroachDB's unit test suite.",
"is_bot": false,
"headline": "Fix a regression introduced in v1.1.0.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T15:29:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a194188c4aadda53ccaf48d2685eee33cf36e97",
"body": null,
"is_bot": false,
"headline": "Re-add a missing API.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T13:36:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c44c499388a1d5b6d239e41edd86b8b58fcabc3",
"body": "New APIs for safe numeric values",
"is_bot": false,
"headline": "Merge pull request #22 from knz/20210625-safe-nums",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2021-06-25T13:06:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66549ca8fa9c8273804ad04c8e81730cacc34044",
"body": "This introduces the following.\n\nNew basic types:\n\n```go\n// SafeInt represents an integer that is not a sensitive value.\ntype SafeInt\n\n// SafeUint represents an integer that is not a sensitive value.\ntype SafeUint\n\n// SafeFloat represents a floating-point value that is not a sensitive value.\ntype Saf\n[…]\nnt emits a safe integer.\n SafeInt(SafeInt)\n\n // SafeUint emits a safe unsigned integer.\n SafeUint(SafeUint)\n\n // SafeFloat emits a safe floating-point value.\n SafeFloat(SafeFloat)\n}\n```",
"is_bot": false,
"headline": "New APIs for safe numeric values",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T13:04:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7824382f7355aa5b432a352158ec7ad9e0be0ab7",
"body": null,
"is_bot": false,
"headline": "README updates.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T12:45:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7da6ddbb5986185b13c30fcfd06cc1570beac525",
"body": "New design, bug fixes",
"is_bot": false,
"headline": "Merge pull request #19 from knz/20210615-redesign",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2021-06-25T12:44:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e9632966b81749d16e4366637c589eb23c78aac",
"body": "**tldr: this change preserves the existing APIs but makes the library\nfaster and also able to recursively format structs and arrays.**\n\nAlso a new API: `redact.ManualBuffer`, which gives ownership of\nswapping between safe and unsafe output to the caller. This is\nenvisioned to be useful in CockroachD\n[…]\nc/op delta\nRedact-32 360B ± 0% 248B ± 0% -31.11% (p=0.000 n=10+10)\n\nname old allocs/op new allocs/op delta\nRedact-32 12.0 ± 0% 5.0 ± 0% -58.33% (p=0.000 n=10+10)\n```",
"is_bot": false,
"headline": "New design, bug fixes",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T11:46:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2b6aa621342fcd7c8b6ba2644fb0529508caad41",
"body": null,
"is_bot": false,
"headline": "Add a github action for CI.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-25T11:44:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a15dc9043ac72c2a5969088b52dd8fedc1e72d42",
"body": null,
"is_bot": false,
"headline": "Import Go fmt changes from 1.16.5",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2021-06-15T07:27:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16f07ec81440c0fb868d3b32133b716c7c4076ab",
"body": "Properly handle nil SafeMessagers",
"is_bot": false,
"headline": "Merge pull request #14 from cockroachdb/20201218-warning",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-12-21T09:19:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d5f47917b066c8ec0542e105378ab0772c968cc",
"body": null,
"is_bot": false,
"headline": "Additional testing for panic-inducing code.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-12-18T20:52:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f14b186ab11455770d7b1dc1c3b1cd4a4189a24",
"body": "New helpers `Join`, `JoinTo` and `SortStrings`",
"is_bot": false,
"headline": "Merge pull request #13 from cockroachdb/20201218-join-utils",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-12-18T15:27:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4edbe5e8acd43594e49d925fd27499ad117fa3b2",
"body": null,
"is_bot": false,
"headline": "New helpers `Join`, `JoinTo` and `SortStrings`",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-12-18T14:47:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c65052cf29c844f069da4ed6215d38c2f791b5c9",
"body": null,
"is_bot": false,
"headline": "Avoid using global variables in several cases.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-12-18T14:47:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28abc163e0482ebb35e38f46c73712b5686f9410",
"body": null,
"is_bot": false,
"headline": "Ensure StringBuilder properly works through fmt when passed by value.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-11-06T18:24:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04fd7614d51fa6d714f9d7ed160b4b4f1e701193",
"body": "Import fmt changes from Go 1.15",
"is_bot": false,
"headline": "Merge pull request #10 from cockroachdb/20201007-go115",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-11-06T17:58:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc7da4499f12295ed51869f1c6dbc23c02db1ef8",
"body": "Add 1.15 to travis conf",
"is_bot": false,
"headline": "Merge pull request #11 from cockroachdb/20201007-travis",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-10-07T11:54:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71d49aab2737d47d41314d593d026f1384e7c838",
"body": null,
"is_bot": false,
"headline": "Add 1.15 to travis conf",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-10-07T11:51:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84fc691e4703eb3db7ad85513444307a95808e5e",
"body": null,
"is_bot": false,
"headline": "Import fmt changes from Go 1.15",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-10-07T11:48:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ab99548d50346ebb4e7cc36f2259f2621f9e05c",
"body": "Make the redact code friendly to raw pointers.",
"is_bot": false,
"headline": "Merge pull request #9 from cockroachdb/20200916-redact-ptr",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-09-25T13:07:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1e04a032f75bf0540c051446b1fd3bdefd8d3de",
"body": null,
"is_bot": false,
"headline": "Make the redact code friendly to raw pointers.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-16T11:51:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a01062e4af7507af636cc432febc53a1705a6a23",
"body": "Make nil non-redactable",
"is_bot": false,
"headline": "Merge pull request #7 from cockroachdb/20200910-nil",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-09-10T13:55:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e468a521962ba47a5851301960960d5a9b50cacb",
"body": "This change ensures that a `nil` error or other interface-typed `nil`\nvalue gets printed as `<nil>` without redaction markers.\n\nConcretely typed `nil` pointers still get processed through the\nregular redaction logic, as they may be unsafe.",
"is_bot": false,
"headline": "Make nil non-redactable",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-10T13:37:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b63be8cacbedbb1dbc664a368b78056af8914c8d",
"body": null,
"is_bot": false,
"headline": "Add a RedactableBytes() accessor to the StringBuilder.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-02T09:39:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49cd8220a9225a874fc62535d2fefcf4c24da42e",
"body": null,
"is_bot": false,
"headline": "Make EscapeBytes ensure that newlines go outside of redaction markers.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-01T15:48:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4aa02994b3c226693e81c3eb5f1cfd6ada5d1f0",
"body": null,
"is_bot": false,
"headline": "Add a helper to simplify the implementation of %w",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-01T13:05:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "327550caf9d60a3690010b77f5dabf70dcca5f0b",
"body": null,
"is_bot": false,
"headline": "Merge pull request #3 from cockroachdb/20200826-redact-improvement",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-09-01T12:23:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68abe1155de4308880b467199487cd78513b5645",
"body": "This patch imports the formatting logic from the go stdlib so as to\nhandle the `%T` formatting verb properly.\n\nIn the fmt package, `Print()` omits interleaving spaces if the last\nargument has string type. Because this patch picks up the fmt code\nas-is, this behavior is now adopted here.",
"is_bot": false,
"headline": "Fix the handling of %T, make Print() behave like in fmt",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-09-01T12:16:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d746cacf13b0524123b81128684e02b91ecb917",
"body": null,
"is_bot": false,
"headline": "Update godoc link.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-28T16:39:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a9a09a879623aee0191ca7cd26adbb172e47d80",
"body": null,
"is_bot": false,
"headline": "Minor doc adjustment.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-28T16:38:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26f12fa0a6bb81d94c262181cf40d3bfe4ff00cf",
"body": null,
"is_bot": false,
"headline": "Clarify the handling of %q/%x/%X in tests.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-28T16:36:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8999be2a881eb9aa0717b5ef5bfc7c2cd4742dfc",
"body": null,
"is_bot": false,
"headline": "Merge pull request #4 from cockroachdb/20200826-redact-builder",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-08-28T15:56:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56e88b907431d3cbf62e44618006836d29aa27ad",
"body": null,
"is_bot": false,
"headline": "Protect against UnsafeByte() using an invalid utf-8 prefix",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-28T15:53:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1aa54496b3a4bd02188b433d13e7905397d8577f",
"body": "This mimics `strings.Builder` / `bytes.Buffer`, but ensures that\ndirect writes are properly escaped. It also implements the\n`SafeWriter` interface to distinguish safe/unsafe writes.",
"is_bot": false,
"headline": "New type `StringBuilder`",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-28T15:53:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f73a463e263975cdfade3d47bd193b3a40a8970",
"body": null,
"is_bot": false,
"headline": "Fix a count bug in the escape writer Write method.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-21T13:56:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dda9755125efb79b879e7f976c4e10853c2555e5",
"body": "This is needed because error formatting extracts the first substring\nat newline delimiters. We want this extraction to preserve the balance\nof open/close markers.",
"is_bot": false,
"headline": "Avoid including newline characters between redaction markers.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-19T12:37:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc7baf968c6e7345249943338745ce3a26b6e200",
"body": null,
"is_bot": false,
"headline": "Enable redaction of errors via a callback.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-08-18T13:22:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd282804bbd3cd122cf2f406a0707084bfb6a4bf",
"body": null,
"is_bot": false,
"headline": "Create a Travis CI configuration.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-06-22T11:24:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec6fc3feb4f9419651ec48613f1d06a4449d19b5",
"body": null,
"is_bot": false,
"headline": "Import sources from CockroachDB.",
"author_name": "Raphael 'kena' Poss",
"author_login": "knz",
"committed_at": "2020-06-22T11:22:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c07a82f6e5b29a1e4ef76bd633a6de45ddae379",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "kena",
"author_login": "knz",
"committed_at": "2020-06-22T11:15:59Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 3,
"commits_last_year": 12,
"latest_release_at": "2026-03-13T17:37:20Z",
"latest_release_tag": "v1.1.8",
"releases_from_tags": false,
"days_since_last_push": 3,
"active_weeks_last_year": 7,
"days_since_latest_release": 139,
"mean_days_between_releases": 861.1
},
"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/cockroachdb/redact",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/cockroachdb/redact",
"is_deprecated": false,
"latest_version": "v1.1.8",
"repository_url": "https://github.com/cockroachdb/redact",
"versions_count": 19,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-03-13T17:31:06Z",
"latest_version_yanked": null,
"days_since_latest_publish": 139
}
]
},
"popularity": {
"forks": 11,
"stars": 44,
"watchers": 39,
"fork_history": {
"days": [
{
"date": "2020-10-28",
"count": 1
},
{
"date": "2021-06-18",
"count": 1
},
{
"date": "2021-06-22",
"count": 1
},
{
"date": "2021-07-19",
"count": 1
},
{
"date": "2022-02-13",
"count": 1
},
{
"date": "2022-04-16",
"count": 1
},
{
"date": "2023-03-27",
"count": 1
},
{
"date": "2023-06-17",
"count": 1
},
{
"date": "2024-06-10",
"count": 1
},
{
"date": "2024-10-07",
"count": 1
},
{
"date": "2025-07-31",
"count": 1
}
],
"complete": true,
"collected": 11,
"total_forks": 11
},
"star_history": null,
"open_issues_and_prs": 6
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod",
"otelprocessor/go.mod"
],
"largest_source_bytes": 44141,
"source_files_sampled": 37,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod",
"otelprocessor/go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "google.golang.org/grpc",
"direct": false,
"version": "1.72.2",
"severity": "critical",
"ecosystem": "go",
"cvss_score": 9.1,
"advisory_ids": [
"GHSA-hrxh-6v49-42gf",
"GHSA-p77j-4mvh-x3m3",
"GO-2026-4762",
"GO-2026-6061"
],
"fixed_version": "1.82.1",
"advisory_count": 4,
"oldest_advisory_days": 134
},
{
"name": "go.opentelemetry.io/otel",
"direct": false,
"version": "1.36.0",
"severity": "high",
"ecosystem": "go",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-mh2q-q3fh-2475",
"GO-2026-5506"
],
"fixed_version": "1.41.0",
"advisory_count": 2,
"oldest_advisory_days": 114
},
{
"name": "go.opentelemetry.io/otel/sdk",
"direct": false,
"version": "1.36.0",
"severity": "high",
"ecosystem": "go",
"cvss_score": 7,
"advisory_ids": [
"GHSA-9h8m-3fm2-qjrq",
"GHSA-hfvc-g4fc-pqhx",
"GO-2026-4394",
"GO-2026-5426"
],
"fixed_version": "1.43.0",
"advisory_count": 4,
"oldest_advisory_days": 178
},
{
"name": "golang.org/x/net",
"direct": false,
"version": "0.39.0",
"severity": "moderate",
"ecosystem": "go",
"cvss_score": 6.5,
"advisory_ids": [
"GHSA-5cv4-jp36-h3mw",
"GO-2026-4440",
"GO-2026-4441",
"GO-2026-4918",
"GO-2026-5025",
"GO-2026-5026",
"GO-2026-5027",
"GO-2026-5028",
"GO-2026-5029",
"GO-2026-5030"
],
"fixed_version": "1.26.3",
"advisory_count": 11,
"oldest_advisory_days": 175
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "0.33.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 69
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "0.24.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5970"
],
"fixed_version": "0.39.0",
"advisory_count": 1,
"oldest_advisory_days": 16
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"high": 2,
"unknown": 2,
"critical": 1,
"moderate": 1
},
"advisory_count": 23,
"affected_count": 6,
"assessed_count": 35,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/cockroachdb/redact",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.6"
},
{
"name": "github.com/stretchr/testify",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.0"
},
{
"name": "go.opentelemetry.io/collector/component",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.34.0"
},
{
"name": "go.opentelemetry.io/collector/consumer",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.34.0"
},
{
"name": "go.opentelemetry.io/collector/pdata",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.34.0"
},
{
"name": "go.opentelemetry.io/collector/processor",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v1.34.0"
},
{
"name": "go.opentelemetry.io/collector/processor/processorhelper",
"manifest": "otelprocessor/go.mod",
"ecosystem": "go",
"version_constraint": "v0.128.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "1.10.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/component",
"direct": true,
"version": "1.34.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/consumer",
"direct": true,
"version": "1.34.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/pdata",
"direct": true,
"version": "1.34.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/processor",
"direct": true,
"version": "1.34.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/processor/processorhelper",
"direct": true,
"version": "0.128.0",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "1.1.1",
"ecosystem": "go"
},
{
"name": "github.com/go-logr/logr",
"direct": false,
"version": "1.4.2",
"ecosystem": "go"
},
{
"name": "github.com/go-logr/stdr",
"direct": false,
"version": "1.2.2",
"ecosystem": "go"
},
{
"name": "github.com/gogo/protobuf",
"direct": false,
"version": "1.3.2",
"ecosystem": "go"
},
{
"name": "github.com/google/uuid",
"direct": false,
"version": "1.6.0",
"ecosystem": "go"
},
{
"name": "github.com/hashicorp/go-version",
"direct": false,
"version": "1.7.0",
"ecosystem": "go"
},
{
"name": "github.com/json-iterator/go",
"direct": false,
"version": "1.1.12",
"ecosystem": "go"
},
{
"name": "github.com/modern-go/concurrent",
"direct": false,
"version": "0.0.0-20180306012644-bacd9c7ef1dd",
"ecosystem": "go"
},
{
"name": "github.com/modern-go/reflect2",
"direct": false,
"version": "1.0.2",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "1.0.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/auto/sdk",
"direct": false,
"version": "1.1.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/featuregate",
"direct": false,
"version": "1.34.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/internal/telemetry",
"direct": false,
"version": "0.128.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/collector/pipeline",
"direct": false,
"version": "0.128.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/contrib/bridges/otelzap",
"direct": false,
"version": "0.11.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/otel",
"direct": false,
"version": "1.36.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/otel/log",
"direct": false,
"version": "0.12.2",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/otel/metric",
"direct": false,
"version": "1.36.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/otel/sdk",
"direct": false,
"version": "1.36.0",
"ecosystem": "go"
},
{
"name": "go.opentelemetry.io/otel/trace",
"direct": false,
"version": "1.36.0",
"ecosystem": "go"
},
{
"name": "go.uber.org/multierr",
"direct": false,
"version": "1.11.0",
"ecosystem": "go"
},
{
"name": "go.uber.org/zap",
"direct": false,
"version": "1.27.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/net",
"direct": false,
"version": "0.39.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "0.33.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/text",
"direct": false,
"version": "0.24.0",
"ecosystem": "go"
},
{
"name": "google.golang.org/genproto/googleapis/rpc",
"direct": false,
"version": "0.0.0-20250218202821-56aae31c358a",
"ecosystem": "go"
},
{
"name": "google.golang.org/grpc",
"direct": false,
"version": "1.72.2",
"ecosystem": "go"
},
{
"name": "google.golang.org/protobuf",
"direct": false,
"version": "1.36.6",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "3.0.1",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 35,
"direct_count": 6,
"indirect_count": 29
}
},
"maintainership": {
"issues": {
"open_prs": 6,
"merged_prs": 20,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 12,
"closed_unmerged_prs": 3
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "knz",
"commits": 55,
"avatar_url": "https://avatars.githubusercontent.com/u/642886?v=4"
},
{
"type": "User",
"login": "dhartunian",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/986307?v=4"
},
{
"type": "User",
"login": "arjunmahishi",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/11977524?v=4"
},
{
"type": "User",
"login": "visheshbardia",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/249966669?v=4"
},
{
"type": "User",
"login": "aa-joshi",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/16041939?v=4"
},
{
"type": "User",
"login": "TheComputerM",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/24741538?v=4"
}
],
"contributors_sampled": 6,
"top_contributor_share": 0.797
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.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": 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": 4,
"reason": "4 out of 10 merged PRs checked by a CI test -- score normalized to 4",
"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": 6,
"reason": "Found 6/10 approved changesets -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 4 contributing companies or organizations",
"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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": 0,
"reason": "17 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "d01e85010e9f95833fecbc181692d82929e074f3",
"ran_at": "2026-07-30T23:12:51Z",
"aggregate_score": 3,
"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-04-24T20:09:45Z",
"oldest_open_prs": [
{
"number": 25,
"created_at": "2021-08-03T12:38:15Z",
"last_comment_at": "2021-08-03T12:38:18Z",
"last_comment_author": "cockroach-teamcity"
},
{
"number": 26,
"created_at": "2021-09-03T11:36:08Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 38,
"created_at": "2026-03-19T01:41:49Z",
"last_comment_at": "2026-03-19T01:42:02Z",
"last_comment_author": "cockroachlabs-cla-agent"
},
{
"number": 39,
"created_at": "2026-03-19T19:10:37Z",
"last_comment_at": "2026-03-24T06:39:40Z",
"last_comment_author": "visheshbardia"
},
{
"number": 40,
"created_at": "2026-04-08T20:33:32Z",
"last_comment_at": "2026-04-08T20:33:53Z",
"last_comment_author": "cockroachlabs-cla-agent"
},
{
"number": 41,
"created_at": "2026-04-24T20:09:42Z",
"last_comment_at": "2026-04-24T20:09:56Z",
"last_comment_author": "cockroachlabs-cla-agent"
}
],
"last_merged_pr_at": "2026-03-13T17:31:06Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/cockroachdb/redact",
"host": "github.com",
"name": "redact",
"owner": "cockroachdb"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 56 is calibrated to 59 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 56,
"calibrated": 59,
"calibration": "2026-08-02"
}
}
],
"value": 59,
"inputs": {
"security": 44,
"vitality": 57,
"community": 47,
"governance": 71,
"calibration": "2026-08-02",
"engineering": 54,
"ai_readiness": 54,
"weighted_overall_raw": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 57,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"commits_last_year": 12,
"human_commit_share": 1,
"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": "12 commits in the last year",
"points": 10,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 12
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"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": 66,
"inputs": {
"releases_count": 3,
"latest_release_tag": "v1.1.8",
"releases_from_tags": false,
"days_since_latest_release": 139,
"mean_days_between_releases": 861.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "3 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 3
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 139 days ago",
"points": 27,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 139
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~861.1 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 861.1
}
}
],
"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": 144,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 144 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 144
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "weak",
"name": "Community & Adoption",
"value": 47,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 44,
"inputs": {
"forks": 11,
"stars": 44,
"watchers": 39,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "44 stars",
"points": 26.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 44
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "11 forks",
"points": 8.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 11
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "39 watchers",
"points": 8.8,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 39
}
}
],
"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 (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"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": "good",
"name": "Sustainability & Governance",
"value": 71,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 32,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 6,
"top_contributor_share": 0.797
},
"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.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 80
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "6 contributors",
"points": 8.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 6
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 4 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"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": 89,
"inputs": {
"merged_prs": 20,
"open_issues": 0,
"closed_issues": 12,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 3,
"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": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "20/23 decided PRs merged",
"points": 26.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 20,
"decided": 23
}
}
],
"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": "Found 6/10 approved changesets -- score normalized to 6",
"points": 9,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"followers": 953,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "cockroachdb",
"public_repos": 225,
"account_age_days": 4542
},
"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": "953 followers of cockroachdb",
"points": 21.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 953,
"login": "cockroachdb"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "225 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 225
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/cockroachdb/redact"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 139
},
"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 139 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 139
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "19 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 19
}
}
],
"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": 54,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 56,
"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": "4 out of 10 merged PRs checked by a CI test -- score normalized to 4",
"points": 8,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"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": 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": "weak",
"name": "Security",
"value": 44,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 30,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3
},
"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": "4 out of 10 merged PRs checked by a CI test -- score normalized to 4",
"points": 1,
"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": "Found 6/10 approved changesets -- score normalized to 6",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 4 contributing companies or organizations",
"points": 2.5,
"status": "met",
"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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "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": "17 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"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 35 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": 35
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 23,
"affected_packages": 6,
"assessed_packages": 35,
"unassessed_packages": 0,
"affected_by_severity": "critical 1, high 2, moderate 1, unknown 2",
"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": 35,
"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": 4
},
"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": 54,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 29,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.551,
"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": "38 of 69 human commits state their intent (structured subject or explanatory body)",
"points": 29.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 38,
"sampled": 69
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"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,
"toolchain_manifests": [
"go.mod",
"otelprocessor/go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod, otelprocessor/go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod, otelprocessor/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": "no agent-authored commits among the last 69",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 69
}
}
],
"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": 44141,
"source_files_sampled": 37,
"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/37 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 37,
"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": {
"top": [],
"labels": [],
"scores": {
"library": 3
},
"primary": null,
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 3
}
],
"artifacts": [],
"confidence": "none",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": false
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-30T23:13:07.988198Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/c/cockroachdb/redact.svg",
"full_name": "cockroachdb/redact",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}