JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 473,
"has_wiki": false,
"homepage": null,
"languages": {
"Go": 1005547,
"ANTLR": 7956,
"Shell": 4507,
"Makefile": 41
},
"pushed_at": "2026-07-19T16:08:37Z",
"created_at": "2026-07-19T14:51:52Z",
"owner_type": "Organization",
"updated_at": "2026-07-19T14:51:52Z",
"description": "Pure Go alternative to protocol buffers with minimum code generation",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": null,
"type": "Organization",
"login": "butterflylink",
"company": null,
"location": null,
"followers": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/273122995?v=4",
"created_at": "2026-04-02T13:58:45Z",
"is_verified": null,
"public_repos": 1,
"account_age_days": 115
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-06-12T09:27:54Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-05-21T07:58:01Z"
},
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2025-09-09T12:22:40Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2025-04-22T11:21:15Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2025-04-16T08:32:43Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2025-03-19T10:21:03Z"
}
],
"recent_commits": [
{
"oid": "7b74c4c7835c79aa6bb45253da040862370dcca4",
"body": null,
"is_bot": false,
"headline": "docs: update CONTRIBUTING.md to use main branch and fix placeholders",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-06-12T09:27:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0c2fbe11a4953726a65c10ec969c6ddb0cd4a14",
"body": null,
"is_bot": false,
"headline": "test(prutal): add memory-safety regression tests",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-06-12T09:25:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f26e9897118aab544ed7917af3ed58c2b90be463",
"body": "The fill used `<` while sizing and lookup were inclusive, so a field\nwith ID exactly 1000 hit the nil slot of the direct array and was\nsilently dropped as unknown. Use `<=` to keep the split consistent.",
"is_bot": false,
"headline": "fix(desc): include field number 1000 in the direct field map",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-06-12T09:25:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b769ffc33cb4027014270d22767b3f2977cc029",
"body": "RealKind flattens nesting, so e.g. [][]int32 passed validation and the\ndecoder wrote a scalar slice header into a slice-of-slice element.\nReject slice elements that are slices or maps at parse time.",
"is_bot": false,
"headline": "fix(desc): reject nested repeated field types",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-06-12T09:25:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ca6040b0ba1823da7ece643f034b7c681c58203",
"body": "Only accept []byte or *[]byte as unknownFields/XXX_unrecognized storage;\nthe old check accepted any non-pointer type and the decoder wrote a slice\nheader over it. Also skip promoted fields: their Offset is relative to\nthe embedded struct and corrupts the outer struct when applied to it.",
"is_bot": false,
"headline": "fix(desc): validate unknownFields storage type and skip promoted fields",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-06-12T09:25:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9097c5d3eb9725fed165db6b5dc2adefc13de68",
"body": "- Use GoCamelCase on the full dotted name for nested messages/enums,\n so dot+lowercase joins seamlessly (e.g. \"M.m\" -> \"MM\" instead of \"M_M\").\n- Add GoName field on Oneof.\n- Append '_' to field names that conflict with well-known method names\n (Reset, String, ProtoMessage, Marshal, etc.).",
"is_bot": false,
"headline": "refactor(prutalgen): align GoName generation with protoc-gen-go",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-05-21T07:58:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "280400aa4ccbd72209e2c94de445d40f5675715b",
"body": null,
"is_bot": false,
"headline": "chore: updated wire.CoderVarint32 comment and var name",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-20T11:00:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2da70e964c3e9062c4f915f44635c1f6d8931ef2",
"body": "…r-map sizing\n\n1. Unroll UnsafeAppendVarintI32 to match the pattern of UnsafeAppendVarintU32\n and UnsafeAppendVarintU64 — replaces loop-based AppendVarint delegation\n with an unrolled switch (positive) / single 10-byte append (negative).\n\n2. Add typed scalar-map size fast paths using Go generics\n[…]\n │\n │ sec/op │ sec/op vs base │\nSize_MapStruct-18 680.9n ± 1% 662.9n ± 3% -2.64% (p=0.023)\nSize_MapScalar-18 4.500µ ± 1% 3.243µ ± 2% -27.94% (p=0.000)",
"is_bot": false,
"headline": "perf(encoder,sizer): unroll int32 varint encoding and add typed scala…",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-20T09:37:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3fcaf2b6dbe8203ba9d71216b662af58e9c1657f",
"body": null,
"is_bot": false,
"headline": "refactor: remove grpc dep for grpccodec",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-20T09:09:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5ef3b76a25bc185d9ec775e2c594c5025b7d78e",
"body": "Zero-allocation size computation that mirrors the encoder's field\niteration logic. Supports all field types: scalars, packed/unpacked\nlists, maps (with typed fast-path for map[primitive]*struct), nested\nstructs, oneofs, and unknown fields.",
"is_bot": false,
"headline": "feat: implement Size for computing wire format size without marshaling",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-20T07:28:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "719ffb905effea7a6985e40fd60242791751cc70",
"body": "Per protobuf spec, negative int32 values encoded as varint must be\nsign-extended to 64-bit, producing 10-byte varints. Previously prutal\nread int32 as uint32, encoding negative values in only 5 bytes. This\nbroke compatibility when upgrading int32 fields to int64.\n\nAdds CoderVarintI32 coder type that sign-extends int32 -> int64 before\nvarint encoding, with corresponding list, packed, and map support.",
"is_bot": false,
"headline": "fix(encoder): sign-extend int32 varint encoding to 64-bit",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-19T20:01:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea35a0dfb1914f666bf41562d5b82ab427d3865f",
"body": null,
"is_bot": false,
"headline": "docs: reorganize compatibility section by feature category",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-19T17:59:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32d078b010c701be41df16d12d0b66ab7a64d3a9",
"body": null,
"is_bot": false,
"headline": "test: update go.mod for tests",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-19T17:52:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ee19d94a12e6a87571608ef92ddd6d16be6b9b9",
"body": null,
"is_bot": false,
"headline": "chore: refine README compatibility list, fix formatting",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-19T17:46:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d52f23b9d750ce0ddc23db514464cfda45237db6",
"body": "Allow multiple enum values to share the same number when\n`option allow_alias = true` is set. The _name map only keeps\nthe first-defined name per number, matching official protobuf behavior.",
"is_bot": false,
"headline": "feat(prutalgen): support enum allow_alias option",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-03-19T17:46:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5de0ebb30a9b8fbe46c170b9289053018e329df",
"body": "- Use rv.MapRange() directly in NewMapIter (Go 1.19)\n- Use atomic.Pointer[T] in mapStructDesc, per-slot atomic for\n cheaper writes\n- Replace joinErrs with errors.Join (Go 1.20)\n- Remove go 1.19 from CI compatibility matrix",
"is_bot": false,
"headline": "refactor: bump go.mod to go 1.20",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-02-25T08:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b6588ba494420e529de04dbfe982f4bf1b46dc9",
"body": null,
"is_bot": false,
"headline": "test(encoder): add test for nil unknownFields pointer marshal",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-02-25T07:30:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12b42eeebef49f59cae5c7934e2f811a7b36a56d",
"body": "When a struct has unknownFields *[]byte and the field is nil,\nappendUnknownFields would dereference the nil pointer causing a panic.\nAdd nil guard matching the decoder's existing pattern.\n\nAlso add GC safety comment to Iface.tab field.",
"is_bot": false,
"headline": "fix(encoder): nil dereference in appendUnknownFields",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-02-25T07:28:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f5cfccb22bc38e5103b63f7455d99a966183df3",
"body": null,
"is_bot": false,
"headline": "refactor(hack): remove unused maplen function",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2026-02-25T06:35:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80978f05b05c45e757e45eb76f39314a7450bd09",
"body": null,
"is_bot": false,
"headline": "fix: panic when access itab ptr for go1.25",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-09-09T12:22:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb4279b2f67a25d08e7d77e0520ddf8b85177ba6",
"body": null,
"is_bot": false,
"headline": "perf: optimized map encoding",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-09-09T08:44:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5de19215f9571b7deafef36c3de31a853965bf11",
"body": null,
"is_bot": false,
"headline": "fix(prutalgen): use filepath pkg for file path",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-05-21T03:39:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57d7b9d5c0de246166648e81b3a77f387a252236",
"body": null,
"is_bot": false,
"headline": "test(encoder): updated map size",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-30T08:34:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90ff1b55980535540ce4263f49f93712007910cd",
"body": null,
"is_bot": false,
"headline": "test(encoder): add benchmark for map",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-30T06:47:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c678e264eddc32ed447ad2a9cf5c00b5de0153e1",
"body": null,
"is_bot": false,
"headline": "perf(decoder): optimized for map<int, *struct|str>",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-28T09:00:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6280214f65d699f812061f06e1e3c846f92a37f1",
"body": null,
"is_bot": false,
"headline": "refactor(desc): seperate desc and type files",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-25T11:30:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe104fa62a56f3bd8ce4ee36ebdf64965714a229",
"body": null,
"is_bot": false,
"headline": "chore(prutalgen): add cmd args usage",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-25T08:39:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dff059879f8b60c8782ab9a367c2c1ee71f56880",
"body": null,
"is_bot": false,
"headline": "refactor(prutalgen): use directive",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-25T08:22:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bb442ab80f1db2affbc2e9cc90b50292fef0c6c",
"body": null,
"is_bot": false,
"headline": "fix(prutalgen): sort by topological and fix cyclic import",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-22T11:21:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc24c6ea0b5388abd9ebc505f30a97c13580f25d",
"body": "also fixed encoding list or map with nil elem aligning with proto",
"is_bot": false,
"headline": "fix(desc): nested struct",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-16T08:32:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c40a082e5c4010d9b29da393bedc805e8d79a851",
"body": null,
"is_bot": false,
"headline": "fix(wire): add missing bytes&string append list func",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-08T10:41:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4485c0e42fffe174a4a0fb149ef4256d08f06dae",
"body": null,
"is_bot": false,
"headline": "perf: optimized decoding scalar map types",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-08T10:32:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e59c6a46c8c0113d148c2f5b9de84cd5c1ec53b",
"body": "goos: darwin\ngoarch: arm64\npkg: github.com/cloudwego/prutal/tests/benchmark\ncpu: Apple M2 Pro\n\nBenchmarkScalarType/decode-protobuf \t10615320\t 111.0 ns/op\t 0 B/op\t 0 allocs/op\nBenchmarkScalarType/decode-prutal \t10822429\t 109.7 ns/op\t 0 B/op\t 0 all\n[…]\nrkStructMap/decode-protobuf \t 39301\t 30621 ns/op\t 24224 B/op\t 522 allocs/op\nBenchmarkStructMap/decode-prutal \t 56890\t 20437 ns/op\t 21905 B/op\t 210 allocs/op",
"is_bot": false,
"headline": "perf: optimized slice decoding",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-04T09:45:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8f9f5e06e392cceb194a49a30cce3d44897e6705",
"body": "goos: darwin\ngoarch: arm64\npkg: github.com/cloudwego/prutal/tests/benchmark\ncpu: Apple M2 Pro\n\nBenchmarkScalarType/protobuf \t 9816757\t 122.7 ns/op\t 0 B/op\t 0 allocs/op\nBenchmarkScalarType/prutal \t19260632\t 62.29 ns/op\t 0 B/op\t 0 allocs/op\n\nBench\n[…]\ncs/op\n\nBenchmarkStructMap/protobuf \t 60220\t 19547 ns/op\t 2464 B/op\t 308 allocs/op\nBenchmarkStructMap/prutal \t 269732\t 4432 ns/op\t 0 B/op\t 0 allocs/op",
"is_bot": false,
"headline": "test: add benchmark",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-04-03T08:44:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "db4ecce3ab9441719962dc4fadf3af49ff012260",
"body": null,
"is_bot": false,
"headline": "fix(testutils/assert): works with go1.19",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-19T10:21:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "042c501f0d05ea3dd2031adca645e3cb5576eda9",
"body": null,
"is_bot": false,
"headline": "test: install protoc-gen-go",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-19T10:08:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e8aece1bab0d0b8111d27e572a1f8f6bd2efda6",
"body": null,
"is_bot": false,
"headline": "test: add protobuf compatible test",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-19T10:05:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67027f9390132e3c7aaae008ad48b25bf8907428",
"body": null,
"is_bot": false,
"headline": "docs: updated README for grpc",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-18T06:45:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2980ff3d6b89da7651dce2db2a138911ac30b0b1",
"body": null,
"is_bot": false,
"headline": "test: fix dl protoc-gen-go-grpc",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-14T05:50:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7289aba84f80995f3eefab2dc313b1b0020446ae",
"body": null,
"is_bot": false,
"headline": "test: fix protoc cmd not found",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-14T05:39:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d5889c575b826eb83682b80a0459f76d7eb5519",
"body": null,
"is_bot": false,
"headline": "feat: supports grpc",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-13T11:01:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d17030f085901ceaf46e9f8a31de1ad1b6ab5cdb",
"body": null,
"is_bot": false,
"headline": "feat(prutalgen): codewriter supports io.Writer and grouping",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-12T06:20:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07f96395a3a5a932b137efda573561567f218453",
"body": null,
"is_bot": false,
"headline": "fix(encoder): wrong zigzag result for negative num",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-03-06T15:03:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "760fe4687ae20dd061d123202d62137399ef7073",
"body": null,
"is_bot": false,
"headline": "feat(prutalge): gen kitex protobuf marshaler",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-27T08:43:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5b04265fb17d8d0a16d7ce576e6b9b18428870b",
"body": null,
"is_bot": false,
"headline": "refactor(prutalgen): keep *Proto ref for Type",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-27T06:34:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "579be4e7b0d162aa44c014ef5f711c5d1b2b915d",
"body": null,
"is_bot": false,
"headline": "feat: add Marshal func",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-26T09:52:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8cb05d35eaf8b4f4450bd0f6633d2a2a9104615",
"body": null,
"is_bot": false,
"headline": "chore: updated readme",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-14T09:48:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9008dd2fa70635b96f305b9fcebdd8d85d6144a6",
"body": null,
"is_bot": false,
"headline": "fix: deprecate mapiternext for go1.24",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-14T09:40:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c26430e5fa818e82f2af0de4c6f79c6bc3ed472",
"body": null,
"is_bot": false,
"headline": "mv to open source repo",
"author_name": "Kyle Xiao",
"author_login": "xiaost",
"committed_at": "2025-02-14T09:40:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9a2f391e7ead35c7a03b14a3dc77ee7849a7940",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Guangming Luo",
"author_login": "GuangmingLuo",
"committed_at": "2025-02-13T08:13:50Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 20,
"latest_release_at": "2026-06-12T09:27:54Z",
"latest_release_tag": "v0.2.1",
"releases_from_tags": true,
"days_since_last_push": 7,
"active_weeks_last_year": 5,
"days_since_latest_release": 44,
"mean_days_between_releases": 90
},
"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/cloudwego/prutal",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": false,
"registry_url": "https://pkg.go.dev/github.com/cloudwego/prutal",
"is_deprecated": false,
"latest_version": "v0.2.1",
"repository_url": "https://github.com/cloudwego/prutal",
"versions_count": 6,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-06-12T09:27:54Z",
"latest_version_yanked": null,
"days_since_latest_publish": 44
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"tests/Makefile"
],
"api_schema_files": [
"internal/prutal/testdata.proto",
"prutalgen/pkg/prutalgen/wellknowns/any.proto",
"prutalgen/pkg/prutalgen/wellknowns/api.proto",
"prutalgen/pkg/prutalgen/wellknowns/descriptor.proto",
"prutalgen/pkg/prutalgen/wellknowns/duration.proto",
"prutalgen/pkg/prutalgen/wellknowns/empty.proto",
"prutalgen/pkg/prutalgen/wellknowns/field_mask.proto",
"prutalgen/pkg/prutalgen/wellknowns/source_context.proto",
"prutalgen/pkg/prutalgen/wellknowns/struct.proto",
"prutalgen/pkg/prutalgen/wellknowns/timestamp.proto",
"prutalgen/pkg/prutalgen/wellknowns/type.proto",
"prutalgen/pkg/prutalgen/wellknowns/wrappers.proto",
"tests/benchmark/benchmark.proto",
"tests/cases/edition2023/test_messages_edition2023.proto",
"tests/cases/grpc/echo.proto",
"tests/cases/nested/nested.proto",
"tests/cases/oneof/oneof.proto",
"tests/cases/others/others.proto",
"tests/cases/proto2/proto2.proto"
],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod",
"tests/go.mod"
],
"largest_source_bytes": 253249,
"source_files_sampled": 168,
"oversized_source_files": 2,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod",
"tests/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": [],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 1,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "xiaost",
"commits": 49,
"avatar_url": "https://avatars.githubusercontent.com/u/5179850?v=4"
},
{
"type": "User",
"login": "GuangmingLuo",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/16001996?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.98
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"pr-check.yml",
"tests.yml"
],
"has_docs_dir": false,
"linter_configs": [
".golangci.yaml"
],
"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": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"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": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 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": 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": "11 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "7b74c4c7835c79aa6bb45253da040862370dcca4",
"ran_at": "2026-07-27T03:19:07Z",
"aggregate_score": 2.2,
"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": "2026-07-19T16:08:37Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/butterflylink/prutal",
"host": "github.com",
"name": "prutal",
"owner": "butterflylink"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 39,
"inputs": {
"security": 22,
"vitality": 63,
"community": 12,
"governance": 40,
"engineering": 48
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 63,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"commits_last_year": 20,
"human_commit_share": 1,
"days_since_last_push": 7,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 7 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 7
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "20 commits in the last year",
"points": 11.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 20
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "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": 80,
"inputs": {
"releases_count": 6,
"latest_release_tag": "v0.2.1",
"releases_from_tags": true,
"days_since_latest_release": 44,
"mean_days_between_releases": 90
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 44 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 44
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~90 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 90
}
}
],
"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 (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": "at_risk",
"name": "Sustainability & Governance",
"value": 40,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 12,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.98
},
"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 98% of commits",
"points": 0.5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 98
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 72,
"inputs": {
"merged_prs": 1,
"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": "1/1 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 1,
"decided": 1
}
}
],
"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": null,
"notes": [],
"value": 40,
"inputs": {
"followers": 8,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "butterflylink",
"public_repos": 1,
"account_age_days": 115
},
"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": "8 followers of butterflylink",
"points": 6.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 8,
"login": "butterflylink"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "1 public repos, account ~0 yr old",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 1
}
},
{
"code": "account_age_years",
"params": {
"years": 0
}
}
],
"max_points": 25
}
]
}
],
"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": 48,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"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": 80,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"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": ".golangci.yaml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml"
}
}
],
"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": 1,
"inputs": {
"topics": [],
"has_wiki": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "critical",
"name": "Security",
"value": 22,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 22,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 2.2
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "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": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "11 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": 5
},
"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": 62,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.96,
"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": "48 of 50 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 48,
"sampled": 50
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"tests/Makefile"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod",
"tests/go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "tests/Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "tests/Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": ".golangci.yaml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml"
}
}
],
"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 50",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 50
}
}
],
"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": 253249,
"source_files_sampled": 168,
"oversized_source_files": 2
},
"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": "2/168 source files over 60KB",
"points": 54.3,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 168,
"oversized": 2
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [],
"has_mcp_signal": false,
"api_schema_files": [
"internal/prutal/testdata.proto",
"prutalgen/pkg/prutalgen/wellknowns/any.proto",
"prutalgen/pkg/prutalgen/wellknowns/api.proto",
"prutalgen/pkg/prutalgen/wellknowns/descriptor.proto",
"prutalgen/pkg/prutalgen/wellknowns/duration.proto",
"prutalgen/pkg/prutalgen/wellknowns/empty.proto",
"prutalgen/pkg/prutalgen/wellknowns/field_mask.proto",
"prutalgen/pkg/prutalgen/wellknowns/source_context.proto",
"prutalgen/pkg/prutalgen/wellknowns/struct.proto",
"prutalgen/pkg/prutalgen/wellknowns/timestamp.proto",
"prutalgen/pkg/prutalgen/wellknowns/type.proto",
"prutalgen/pkg/prutalgen/wellknowns/wrappers.proto",
"tests/benchmark/benchmark.proto",
"tests/cases/edition2023/test_messages_edition2023.proto",
"tests/cases/grpc/echo.proto",
"tests/cases/nested/nested.proto",
"tests/cases/oneof/oneof.proto",
"tests/cases/others/others.proto",
"tests/cases/proto2/proto2.proto"
]
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": "internal/prutal/testdata.proto, prutalgen/pkg/prutalgen/wellknowns/any.proto, prutalgen/pkg/prutalgen/wellknowns/api.proto, prutalgen/pkg/prutalgen/wellknowns/descriptor.proto, prutalgen/pkg/prutalgen/wellknowns/duration.proto, prutalgen/pkg/prutalgen/wellknowns/empty.proto, prutalgen/pkg/prutalgen/wellknowns/field_mask.proto, prutalgen/pkg/prutalgen/wellknowns/source_context.proto, prutalgen/pkg/prutalgen/wellknowns/struct.proto, prutalgen/pkg/prutalgen/wellknowns/timestamp.proto, prutalgen/pkg/prutalgen/wellknowns/type.proto, prutalgen/pkg/prutalgen/wellknowns/wrappers.proto, tests/benchmark/benchmark.proto, tests/cases/edition2023/test_messages_edition2023.proto, tests/cases/grpc/echo.proto, tests/cases/nested/nested.proto, tests/cases/oneof/oneof.proto, tests/cases/others/others.proto, tests/cases/proto2/proto2.proto",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "internal/prutal/testdata.proto, prutalgen/pkg/prutalgen/wellknowns/any.proto, prutalgen/pkg/prutalgen/wellknowns/api.proto, prutalgen/pkg/prutalgen/wellknowns/descriptor.proto, prutalgen/pkg/prutalgen/wellknowns/duration.proto, prutalgen/pkg/prutalgen/wellknowns/empty.proto, prutalgen/pkg/prutalgen/wellknowns/field_mask.proto, prutalgen/pkg/prutalgen/wellknowns/source_context.proto, prutalgen/pkg/prutalgen/wellknowns/struct.proto, prutalgen/pkg/prutalgen/wellknowns/timestamp.proto, prutalgen/pkg/prutalgen/wellknowns/type.proto, prutalgen/pkg/prutalgen/wellknowns/wrappers.proto, tests/benchmark/benchmark.proto, tests/cases/edition2023/test_messages_edition2023.proto, tests/cases/grpc/echo.proto, tests/cases/nested/nested.proto, tests/cases/oneof/oneof.proto, tests/cases/others/others.proto, tests/cases/proto2/proto2.proto"
}
}
],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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",
"go package 'github.com/cloudwego/prutal' points at a different repository (https://github.com/cloudwego/prutal); excluded from ecosystem scoring",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-27T03:19:12.470987Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/b/butterflylink/prutal.svg",
"full_name": "butterflylink/prutal",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}