JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [
"audio",
"audio-container",
"audio-processing",
"bw64",
"cgo-free",
"go",
"golang",
"pcm",
"pure-go",
"rf64",
"riff",
"wav",
"wave",
"broadcast-wave"
],
"is_fork": false,
"size_kb": 294,
"has_wiki": true,
"homepage": "https://pkg.go.dev/github.com/tphakala/go-wav",
"languages": {
"Go": 654172,
"Shell": 5427
},
"pushed_at": "2026-07-27T12:55:52Z",
"created_at": "2026-07-20T08:41:28Z",
"owner_type": "User",
"updated_at": "2026-07-23T14:11:04Z",
"description": "Pure-Go WAV/RIFF reader and writer with RF64 and BW64 support for files past 4 GiB",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "Tomi P. Hakala",
"type": "User",
"login": "tphakala",
"company": null,
"location": "Muurame, Finland",
"followers": 78,
"avatar_url": "https://avatars.githubusercontent.com/u/7030001?v=4",
"created_at": "2014-03-22T09:31:18Z",
"is_verified": null,
"public_repos": 64,
"account_age_days": 4511
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-21T13:09:07Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-07-20T18:59:32Z"
}
],
"recent_commits": [
{
"oid": "8927f0fd26885a1c91920d46e15bc687cb844635",
"body": "Minor rather than patch, and warranted twice over. Two shipped behaviours\nchange in ways that turn a working caller into a broken one: a converting\nRead now returns short reads where its doc used to promise it fills the\nbuffer, and a fmt chunk declaring a sample rate above MaxInt32 is now\nrefused on\n[…]\n35 added\nStreamInfo.DataSizeKnown.\n\nVerified the release gate in all three of its states: skipped with the\nvariable unset, passing for v0.3.0, and failing with a message naming\nboth values for v0.2.0.",
"is_bot": false,
"headline": "release: bump Version to 0.3.0 (#36)",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-21T13:01:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "229aea8cb4a301c0e19bb4977fa067313fdeaa4f",
"body": "….DataSizeKnown (#35)\n\n* feat(wav): report whether a stream declared a boundary, as StreamInfo.DataSizeKnown\n\nInfo could report a definite frame count and duration while a seek on the\nsame stream went far past both without an error:\n\n Info().TotalFrames = 100, Duration = 12.5ms\n SeekToFrame(10\n[…]\nts own is not one. Every other field link in\nthis file already uses the qualified form ([StreamInfo.SourceFormat],\n[SampleFormat.Companded]), so the bare one was the outlier as well as the\nbroken one.",
"is_bot": false,
"headline": "feat(wav): report whether a stream declared a boundary, as StreamInfo…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-21T12:57:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b276d5f1b653006c086d78d0032d9ae98f04fecb",
"body": "…t (#34)\n\n* docs(pcm): settle which refusal wraps what, and pin both against drift\n\nCloses the decision #25 was waiting on, without adding an exported\nsentinel.\n\nTwo places refuse a conversion whose destination length cannot be\nexpressed as an int, and they disagree: internal/sample.convertPlan wrap\n[…]\nfile that reaches it\ncan exist in memory.\n\nA vague range invites a reader to check it against the one case they have\nin mind; a floor with the pair that produces it can be checked against\nall of them.",
"is_bot": false,
"headline": "docs(pcm): settle which refusal wraps what, and pin both against drif…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-21T12:37:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0b299d0e9a7c23c01250082d4d7f2ac3cedb2aac",
"body": "…#30)\n\n* fix(riff): refuse a sample rate too large to hold as a positive int\n\nparseFmt read the rate straight into a native int:\n\n f.SampleRate = int(binary.LittleEndian.Uint32(b[4:8]))\n\nThe only validation was a check for zero. Nothing bounded it above, so\non a 32-bit target, where int is 32 bit\n[…]\nplatforms separately before giving the\nrule, so the reason the ceiling applies everywhere is visible: not that\nthe value cannot be represented, but that its sign would otherwise depend\non the machine.",
"is_bot": false,
"headline": "fix(riff): refuse a sample rate too large to hold as a positive int (…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-21T12:12:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e2808d567632eb73f7646292337a19c796dce5ca",
"body": "…#29)\n\n* fix(pcm): bound the conversion batch a caller's buffer used to size\n\nreadConverted sized its staging batch from the caller's buffer:\n\n samples := max(len(p)/dstWidth, 1)\n want := samples * srcWidth\n\nBoth operands are native ints and len(p) is entirely caller-controlled,\nso on a 32-bit\n[…]\ndCapsTheBatch fails with\n\"Read returned 65536 bytes from a 65536 byte buffer, want the 8192 that\none 65536 byte source batch yields\".\n\nGreen under amd64, arm64, 386 and arm, with -race and lint clean.",
"is_bot": false,
"headline": "fix(pcm): bound the conversion batch a caller's buffer used to size (…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-21T12:11:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3baf812774d90750e672797f897557e19c20eac5",
"body": "…the tag (#27)\n\nThe API stopped being unchanged since v0.1.0, so this is a minor bump\nrather than the patch release the original issue argued for. Diffing\ngo doc -all against the tag: SampleFormatALaw and SampleFormatMuLaw were\nadded, SampleFormat.Companded arrived with them, pcm.DecodeInterleaved\ni\n[…]\nd, but a workflow can be rerun once the constant is fixed.\n\nVerified in all three states: skipped with the variable unset, passing\nfor v0.2.0, and failing with a message naming both values for v0.3.0.",
"is_bot": false,
"headline": "release: bump Version to 0.2.0 and make the release check it against …",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T18:47:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1a3abdda858b328ba8e17e4d504f83d030a31000",
"body": "* fix(riff): bound the declared frame counts resolveFrames falls back to\n\nresolveDataSize rejects a ds64 dataSize above 1<<62 and reports the\nlength as unknown. resolveFrames, ten lines below it, returned\nds64.sampleCount and the fact chunk count raw. Nothing bounded either,\nso a header declaring an\n[…]\nlls\nthe same struct and its 0 does mean no frames yet. Convert's detection\nrecipe needed scoping to the two refusals it discriminates, since an\nunsupported destination width also yields a zero length.",
"is_bot": false,
"headline": "Bound the counts and lengths the decoder was taking on trust (#26)",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T18:42:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "93cc5f87243830bc5dad6de79f79a0957a246498",
"body": "…x (#23)\n\nThe cross-validation covered RF64 only in the RF64Always form, where the\nheader is RF64 from its first byte. RF64Auto is the more interesting path\nand the one most real recordings take: a plain RIFF header with a JUNK\nreservation that is rewritten in place as RF64 once the stream passes\n4 \n[…]\nt stored sparsely on the temporary\ndirectory's filesystem, when free space is short, or when the tool is\nabsent. Cost when it does run: 4.0 GiB apparent, 380 KiB of real blocks\nand under nine seconds.",
"is_bot": false,
"headline": "test(pcm): cross-validate an upgraded RF64 file against ffmpeg and so…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T14:30:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "108a2e97e5e3759ac8d35242938dd530e00732d4",
"body": "WAVE_FORMAT_ALAW (0x0006) and WAVE_FORMAT_MULAW (0x0007) were rejected\nwith ErrUnsupported. They turn up in telephony recordings and in older\nfield-recorder output, and each is a function of 256 inputs, so the cost\nof reading them is a pair of lookup tables and the conversion arm that\nuses them.\n\nTh\n[…]\nnd sox over all 256 codes of each law, which is\nthe strongest evidence available that the tables are right: corrupting a\nsingle entry fails the oracle test, the shape test and both cross-\nvalidations.",
"is_bot": false,
"headline": "feat(sample): decode A-law and mu-law to linear 16-bit PCM (#22)",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T14:02:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3c45710bb21e7217d43b16d82f68660d4cd520d2",
"body": "…y (#21)\n\nA caller holding a whole WAV file in memory had no way to reach its samples\nwithout a copy: NewDecoder(bytes.NewReader(b)) followed by Read or WriteTo\nmoves the data chunk into a second buffer, which is pure overhead when the\nbytes are already contiguous in memory.\n\nDecodeInterleaved is th\n[…]\now checked by division before it is computed.\n\nThe fuzz target cross-checks the two entry points against each other, since\nboth derive their bounds from the same attacker controlled header.\n\nCloses #7",
"is_bot": false,
"headline": "feat(pcm): add DecodeInterleaved, a one-shot decode that does not cop…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T13:27:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "667b97bc3a266efea54fb93a89f256e893708a69",
"body": "…ly (#20)\n\nA BW64 file (ITU-R BS.2088) is structurally identical to RF64 apart from\nthe magic. What makes a file BW64 rather than RF64 is the ADM metadata it\ncarries in its axml and chna chunks, and this library emits neither and\nhas no API for doing so. A file written with a BW64 magic and no ADM\np\n[…]\nth their fixtures built by swapping the magic of an RF64 file,\nwhich is precisely what a BW64 file carrying no ADM chunks is. The pcm\npackage gains the first BW64 read coverage through the public API.",
"is_bot": false,
"headline": "refactor(riff): drop the BW64 write path and document BW64 as read-on…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T13:10:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fc73bf9149c1b389e2e898be9a22c0000b272096",
"body": "…root tests teeth (#14)\n\nDuration returned a negative time.Duration for any TotalFrames above\nmath.MaxInt64. The nolint on the conversion refuted itself: \"bounded by\nthe ds64 64-bit data size\" is exactly the range that does not fit in a\nsigned 64-bit value. The path is reachable from a file, not jus\n[…]\n to\nreject most oversized counts by accident.\n\nTestVersion's comment no longer implies it guards more than it does.\nNothing ties the constant to a git tag, so it pins the format only, and\nnow says so.",
"is_bot": false,
"headline": "fix: reject a frame count that cannot be a frame count, and give the …",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T12:16:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8100541d1bf1340d57d3c68d0a0d12f8594297c4",
"body": "* perf: convert the four common integer width pairs in a single pass\n\nThe blocked requantiser stages every sample through an int32 buffer, so a\nconversion costs three passes over the data plus two calls per block that\ncannot be inlined. Because every supported depth is a whole number of bytes,\na shi\n[…]\nrecover, which separates the\ntwo cases and fails on all four kernels. The 8 to 16 and 16 to 32 pairs are\nenumerated over their whole source domain rather than sampled, which costs about\na millisecond.",
"is_bot": false,
"headline": "Convert the four common integer width pairs in a single pass (#13)",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T12:16:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "789159a2f79311d2ba1c742987abb0c97c94d69b",
"body": "…dices (#12)\n\nSeekToFrame consulted hdr.DataSize directly to decide whether to clamp and\nwhat to set remaining to. WithIgnoreLength does not touch that field, it only\noverrides the decoder's own remaining count, so a header declaring a plausible\nbut understated size silently reimposed the exact leng\n[…]\n source is\nexhausted\" costs: anything stored after the data chunk, such as a trailing LIST\nor id3 chunk, comes back as audio, because without a length there is nothing to\ntell audio and trailer apart.",
"is_bot": false,
"headline": "fix: honour WithIgnoreLength in SeekToFrame and reject overflowing in…",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T12:16:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "da3d780c2de4a649dd78ba1f624eeb9758768e2c",
"body": "Bumps the github-actions group with 1 update: [actions/setup-go](https://github.com/actions/setup-go).\n\n\nUpdates `actions/setup-go` from 6 to 7\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v6...v7)\n\n---\nupdated-dependencies:\n\n[…]\nsion-update:semver-major\n dependency-group: github-actions\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: bump actions/setup-go from 6 to 7 in the github-actions group (#1)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-20T10:31:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4a82e47441cb040f662c5a441cd34d28e46767ab",
"body": "…it exposed (#9)\n\n* perf: hoist per-sample switches and stop building throwaway headers\n\nProfiling found three costs, none of them algorithmic.\n\nThe conversion kernels switched on the sample width once per sample,\ninside the loop, in both decodeInt and encodeInt. Both are now blocked\nthrough a small\n[…]\naration initialised from io.Discard is redundant,\nbut converting instead trips unconvert; the if/else form satisfies both,\nwhich is how the declaration was written before this test grew a second\nsink.",
"is_bot": false,
"headline": "perf: hoist per-sample width switches, and fix a rounding divergence …",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T10:14:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7aacf8a54e34c073bf2559fddbbf15fa83220c0a",
"body": "The service has been sunset, so the badge no longer resolves.",
"is_bot": false,
"headline": "Drop the Go Report Card badge",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:43:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8e4a889441b55b7a5877b1c298e82a56d5b7a51",
"body": "Specs, implementation plans and research notes are working documents.\nThey belong locally and in the private tracker, not in a public\nrepository, matching the convention the sibling projects already follow.",
"is_bot": false,
"headline": "Keep design and planning documents out of the repository",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:41:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eeb0817a3400ca32bc78b1d6878292470e756062",
"body": "Two API asymmetries surfaced while reviewing the test suite.\n\nA converting decoder wrote straight into the caller's buffer, so a Read\nwhose buffer held less than one converted sample had nowhere to put the\nresult and returned io.ErrShortBuffer. The pass-through path accepted\nthe same call happily. C\n[…]\nrefused.\n\nAlso pin that a Reset rejected during header building leaves an encoder\nthat reports an error rather than dereferencing its nil layout, and that\nit does not write to the sink it held before.",
"is_bot": false,
"headline": "Make converted reads honour any buffer size",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:38:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "89f65fd7b68c56a7d83d2ff2f9bcc5ae3215e18d",
"body": "The riff suite covers golden header bytes for all seven header shapes, a\n120 case round trip matrix, every tolerance rule with a hand built\nmalformed fixture, twenty rejection cases each asserting its specific\nsentinel, overflow probing at the 32-bit boundary, allocation safety\nagainst hostile size \n[…]\nhat went in. A format library that only agrees with itself has proved\nnothing.\n\nVerified on amd64 and 386, with vet clean on arm64, under the race\ndetector, and with golangci-lint reporting no issues.",
"is_bot": false,
"headline": "Add test suites, cross-validation and the README",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:33:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "31cf6d7626dd01a5ce4310a123b14e6c541ea237",
"body": "Peer review and the new test suites turned up eight real bugs. The\nconsequential ones:\n\nThe encoder aligned its carry buffer on the sample rather than the\ninter-channel frame, so writing a partial frame emitted it immediately\nand Close saw an empty carry. That silently produced a data chunk ending\np\n[…]\ntradicting the emitted magic.\n\nAlso emit an 18-byte fmt chunk with cbSize zero for float, which sox\nflagged as non-conformant: a non-PCM encoding must carry the field even\nwhen the extension is empty.",
"is_bot": false,
"headline": "Fix eight defects found by review and testing",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:27:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b3e7f5b8c2c5a98fa566edeaca2a8a89fdf2906d",
"body": "internal/riff owns the RIFF container: chunk walking with the tolerance\nreal files demand, fmt parsing across all three sizes, SubFormat GUID\nvalidation, and the ds64 mechanics behind RF64 and BW64, including the\nJUNK reservation that lets a plain RIFF header be rewritten in place\nonce a stream outg\n[…]\n32-bit truncation this library was written to eliminate.\n\nValidated bit-exactly in both directions against ffmpeg and sox, across\ninteger and float depths, 1 to 6 channels, 8 kHz to 384 kHz, and RF64.",
"is_bot": false,
"headline": "Add the container, conversion and streaming layers",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:16:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3d86117883f105cd45becb476a7bdd1e854f31d7",
"body": "Establish the module, shared repo conventions copied from the sibling\ngo-flac and go-aac repos (ruleguard rules, golangci config, Taskfile,\ngit hooks, CI workflows), and the root package holding the types and\nerror sentinels that both the container layer and the public pcm layer\nneed.\n\nThe root package deliberately holds no codec logic so that pcm can\nreturn wav.StreamInfo without an import cycle, mirroring go-flac.",
"is_bot": false,
"headline": "Add repo scaffolding and root wav package",
"author_name": "Tomi P. Hakala",
"author_login": "tphakala",
"committed_at": "2026-07-20T08:00:10Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 23,
"latest_release_at": "2026-07-21T13:09:07Z",
"latest_release_tag": "v0.3.0",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 2,
"days_since_latest_release": 7,
"mean_days_between_releases": 0.8
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/tphakala/go-wav",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/tphakala/go-wav",
"is_deprecated": false,
"latest_version": "v0.3.0",
"repository_url": "https://github.com/tphakala/go-wav",
"versions_count": 3,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-21T13:01:50Z",
"latest_version_yanked": null,
"days_since_latest_publish": 7
}
]
},
"popularity": {
"forks": 1,
"stars": 2,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2026-07-23",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 6
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"sample"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Taskfile.yml"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 85216,
"source_files_sampled": 62,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 1,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/quasilyte/go-ruleguard/dsl",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.3.23"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/quasilyte/go-ruleguard/dsl",
"direct": true,
"version": "v0.3.23",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 1,
"direct_count": 1,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 16,
"open_issues": 5,
"closed_ratio": 0.75,
"closed_issues": 15,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "tphakala",
"commits": 22,
"avatar_url": "https://avatars.githubusercontent.com/u/7030001?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"govulncheck.yml",
"release.yml",
"scorecard.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": 10,
"reason": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/22 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": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 10,
"reason": "project is 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": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "8927f0fd26885a1c91920d46e15bc687cb844635",
"ran_at": "2026-07-28T16:13:03Z",
"aggregate_score": 4.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-27T12:55:55Z",
"oldest_open_prs": [
{
"number": 37,
"created_at": "2026-07-27T12:55:53Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-21T13:01:50Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 6,
"created_at": "2026-07-20T09:35:32Z",
"last_comment_at": "2026-07-21T12:19:09Z",
"last_comment_author": "tphakala"
},
{
"number": 16,
"created_at": "2026-07-20T12:17:28Z",
"last_comment_at": "2026-07-21T12:18:49Z",
"last_comment_author": "tphakala"
},
{
"number": 17,
"created_at": "2026-07-20T12:17:43Z",
"last_comment_at": "2026-07-21T12:19:08Z",
"last_comment_author": "tphakala"
},
{
"number": 31,
"created_at": "2026-07-21T11:49:11Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 32,
"created_at": "2026-07-21T11:49:19Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/tphakala/go-wav",
"host": "github.com",
"name": "go-wav",
"owner": "tphakala"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"security": 57,
"vitality": 70,
"community": 24,
"governance": 55,
"engineering": 80
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 70,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"commits_last_year": 23,
"human_commit_share": 0.957,
"days_since_last_push": 1,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "23 commits in the last year",
"points": 12.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 23
}
}
],
"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": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 2,
"latest_release_tag": "v0.3.0",
"releases_from_tags": false,
"days_since_latest_release": 7,
"mean_days_between_releases": 0.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 7 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 7
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.8 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.8
}
}
],
"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": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 1,
"stars": 2,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "2 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 2
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 55,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"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 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"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": null,
"notes": [],
"value": 73,
"inputs": {
"merged_prs": 16,
"open_issues": 5,
"closed_issues": 15,
"issue_closed_ratio": 0.75,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "75% of issues closed",
"points": 35.1,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 75
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "16/16 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 16,
"decided": 16
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/22 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 61,
"inputs": {
"followers": 78,
"owner_type": "User",
"is_verified": null,
"owner_login": "tphakala",
"public_repos": 64,
"account_age_days": 4511
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "78 followers of tphakala",
"points": 13.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 78,
"login": "tphakala"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "64 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 64
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/tphakala/go-wav"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 7
},
"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 7 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 7
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "3 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 3
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 80,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 84,
"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": "4 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 4
}
}
],
"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": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [
"audio",
"audio-container",
"audio-processing",
"bw64",
"cgo-free",
"go",
"golang",
"pcm",
"pure-go",
"rf64",
"riff",
"wav",
"wave",
"broadcast-wave"
],
"has_wiki": true,
"homepage": "https://pkg.go.dev/github.com/tphakala/go-wav",
"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": "https://pkg.go.dev/github.com/tphakala/go-wav",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "14 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 14
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 57,
"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": 46,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/22 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": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is fuzzed",
"points": 5,
"status": "met",
"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": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 1 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 1
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 1,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 1,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 65,
"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.955,
"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": "21 of 22 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 21,
"sampled": 22
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Taskfile.yml"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.043
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Taskfile.yml",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Taskfile.yml"
}
}
],
"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 23",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 23
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 23 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 23
}
}
],
"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": 85216,
"source_files_sampled": 62,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/62 source files over 60KB",
"points": 54.1,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 62,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"sample"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "sample",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "sample"
}
}
],
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-28T16:13:15.611954Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/tphakala/go-wav.svg",
"full_name": "tphakala/go-wav",
"license_state": "standard",
"license_spdx": "MIT"
}