JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1914,
"has_wiki": true,
"homepage": "https://crates.io/crates/qoaudio",
"languages": {
"Rust": 49507
},
"pushed_at": "2026-02-08T14:26:12Z",
"created_at": "2023-04-03T21:14:00Z",
"owner_type": "User",
"updated_at": "2026-06-03T07:43:38Z",
"description": "Quite OK Audio format in Rust.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://caricio.com",
"name": "Rafael Carício",
"type": "User",
"login": "rafaelcaricio",
"company": "@netflix",
"location": null,
"followers": 419,
"avatar_url": "https://avatars.githubusercontent.com/u/107613?v=4",
"created_at": "2009-07-22T12:12:11Z",
"is_verified": null,
"public_repos": 244,
"account_age_days": 6208
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2026-02-06T12:09:07Z"
}
],
"recent_commits": [
{
"oid": "8e37fd9bf829ac378349a23812a0cf047a5af6da",
"body": null,
"is_bot": false,
"headline": "style: apply cargo fmt formatting",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-08T14:26:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22ee254607788ba630ebb3f8aad538d0a99783f2",
"body": "At the halfway point (sample 10) of each scalefactor trial, reject\nthe candidate if its running rank already exceeds half of the best\nknown total rank. This catches underperforming scalefactors ~5-8\nsamples earlier than the existing exact break, reducing encoder time\nfrom ~117ms to ~93ms on a 54s stereo 44.1kHz file.\n\nAlso fix two pre-existing clippy warnings (needless_range_loop,\nunnecessary_cast).",
"is_bot": false,
"headline": "perf(encoder): add proportional early reject for 20% speedup",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-08T14:22:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5527a583b86038791b5e796cc83fa8c262e0d0d7",
"body": "…by rank\n\nPrecompute first-sample error for all 16 scalefactors before the search\nloop, insertion-sort them by rank, and break early once no remaining\ncandidate can beat the current best. Also switch QoaEncoder fields from\nVec to fixed-size arrays, write frames directly to a pre-sized buffer\nbypassing io::Write overhead, and hoist first-sample prediction out of\nthe scalefactor loop. Encode time drops from ~131ms to ~116ms (45%\nfaster than the C reference) with bit-identical output.",
"is_bot": false,
"headline": "perf(encoder): precompute first-sample results and sort scalefactors …",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-08T01:46:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ef11da8a3e1a4d46401dbeab921af2c653faecb",
"body": "Encoder (~131ms, was ~155ms — 16% faster):\n- Combined predict_and_penalty_sq() shares weight register loads\n- QOA_QUANT_DEQUANT_TAB eliminates serialized load dependency by\n packing quantized+dequantized values into a single u64 lookup\n\nDecoder (~25ms, was ~46ms — 45% faster):\n- Local LMS copy in inner loop eliminates Vec indexing/bounds checks\n- Incrementing data_idx replaces per-iteration multiply\n\nUpdate README with new benchmark numbers.",
"is_bot": false,
"headline": "perf: optimize encoder and decoder hot paths",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-08T00:20:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "adcca1f70ee87421abc78fe53103ad36e8926fe6",
"body": "Scalar code with full LTO + codegen-units=1 outperforms manual\nstd::simd on wide OoO cores (M1). Encode drops from ~196ms to ~155ms\n(~27% faster than the C reference at ~210ms).\n\n- Remove nightly feature and all portable SIMD code paths\n- Switch profile from thin LTO to full LTO with codegen-units=1\n[…]\ncalefactor search\n- Unroll update() weight conditionals and use direct array assignment\n- Move weights_penalty() next to predict() for better ILP\n- Eliminate decoder allocation for partial last slices",
"is_bot": false,
"headline": "perf: remove portable SIMD, use full LTO for 21% encoder speedup",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-07T23:39:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e82eda1346ae545e4065e180dca30b019f3819a5",
"body": "Search scalefactors near prev_scalefactor first to find good ranks earlier and increase pruning efficiency in encode_slice.\n\nUpdate README performance numbers to match the new benchmark results.",
"is_bot": false,
"headline": "perf(encoder): reorder scalefactor candidates for encode",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-07T22:50:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2350f786fe414480247ed69713f7b95fb69f2d96",
"body": "Bump version from 0.7.0 to 1.0.0 and update crate description to reflect both encoding and decoding support.",
"is_bot": false,
"headline": "chore: release qoaudio version 1.0.0",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-06T12:08:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd8378aabfc7c18309bbaf0092408d4e19969405",
"body": "* Add QOA encoder implementation\n\nImplements encoding functionality for the QOA audio format, complementing the existing decoder. The encoder uses LMS prediction and quantization to achieve lossy compression of 16-bit PCM audio data.\n\nNew features:\n- QoaEncoder struct with encoding state management\n\n[…]\nfg(nightly)/cfg(not(nightly)) pattern to maintain.\n\n* feat: add QOA-to-WAV decode example\n\nComplements the existing encode example. Uses our own decoder\n(open_and_decode_all) and hound for WAV output.",
"is_bot": false,
"headline": "Add QOA encoder implementation (#10)",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2026-02-06T11:39:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fb9e5eb4e42d8adedd8bc0e70cc1bd734b98ffd2",
"body": null,
"is_bot": false,
"headline": "chore: Release qoaudio version 0.7.0",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-11-05T17:23:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67d31aca8c53c3dfb663bfa793ad25cbc2094280",
"body": "Streamed decoding per frame",
"is_bot": false,
"headline": "Merge pull request #7 from rafaelcaricio/streaming-mode",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2023-11-05T15:02:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94db488fa0d0b59f525b0992db14295baf1dccf4",
"body": "Allows for streamed decoding of QOA data. Useful for decoding QOA\ncontent that is being streamed over the network.",
"is_bot": false,
"headline": "Streamed decoding per frame",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-11-05T15:01:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b2f3a9969f116e703f57535dd0c94908e06b734",
"body": null,
"is_bot": false,
"headline": "Cosmetic improvements in style",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-09-25T22:59:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6073c35a4c7d7df5dd379a85f8dac651172a277",
"body": "Fix reserve in decode_all to handle multiple channels",
"is_bot": false,
"headline": "Merge pull request #4 from benhansen-io/decode-all-bug-fix",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2023-06-14T15:16:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c28b68b99bc77b939f41192b429a6ab5cc6cb4bd",
"body": "Add benchmark and improve performance.",
"is_bot": false,
"headline": "Merge pull request #3 from benhansen-io/perf-improvements",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2023-06-14T15:15:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9a5be00c9b3dc5a06e98526fd4abd7a0f5938f7",
"body": null,
"is_bot": false,
"headline": "Fix reserve in decode_all to handle multiple channels",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-13T22:48:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f2eaa030d1a88b3574339e9d14418267760d9ad",
"body": "On my computer[1] the benchmark took 56ms before the other changes. Forcing\ninline on the two functions called in the inner loop dropped it down to\n38ms. Restructuring the code so the inner loop is always 20 brought it\ndown to 30ms.\n\n[1] i7-1165G7 (8) @ 4.700GHz with 32 GB ram running Arch Linux",
"is_bot": false,
"headline": "Add benchmark and improve performance.",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-13T22:44:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "706074e0e013b20d9e13a4ab320d70fd70165bba",
"body": "Update QoaDecoder to stream from std::io::Read",
"is_bot": false,
"headline": "Merge pull request #2 from benhansen-io/main",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2023-06-06T15:57:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cb5ef6d3950da37cc0ba21c7809f0e5cd792007",
"body": null,
"is_bot": false,
"headline": "Add cargo fuzz target",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-06T13:16:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb696573e16a2d7f727b0635b3c87c9d28ce0f54",
"body": null,
"is_bot": false,
"headline": "Better handling of error cases",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-06T13:16:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec8adc4876ebd0336917ec3acca9953443448328",
"body": null,
"is_bot": false,
"headline": "Derive Debug for QoaItem",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-05T19:00:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c081a39e1b75eb0634eff49416de1fa0d670f8ce",
"body": null,
"is_bot": false,
"headline": "Add helper functions for decoding all samples",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-05T17:30:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e10526078802392e6a701f88c5301d4e66e9158",
"body": "Instead of requiring all input bytes and all output bytes to be in\nmemory simultaneously, stream the input from a std::io::Read and\nallow the output to be retrieved sample by sample. This reduces memory\nconsumption from O(2*N) to O(1) with regards to file size. Samples are\ndecoded one slice at a tim\n[…]\nhis is a large API breaking change. Since an IO error can occur while\ndecoding a new IoError variant is introduced and some existing variants\nare replaced by the UnexpectedEoF error kind of io::Error.",
"is_bot": false,
"headline": "Update QoaDecoder to stream from std::io::Read",
"author_name": "Ben Hansen",
"author_login": "benhansen-io",
"committed_at": "2023-06-05T17:21:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "43b2ee3f076529f33a6d254777e49b27cdd7b60d",
"body": null,
"is_bot": false,
"headline": "Use sparse crates.io index in workflow",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-05-08T20:15:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5173c664d232ae04d66fd899a611eb47d4486c50",
"body": null,
"is_bot": false,
"headline": "Fix code fmt",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-05-08T20:12:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8468f6a4b88d5ac605a9cf4c7a18074b6dc7d07",
"body": null,
"is_bot": false,
"headline": "Create rust.yml",
"author_name": "Rafael Carício",
"author_login": "rafaelcaricio",
"committed_at": "2023-05-08T20:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cea5d650cf433a369ef846e1388b947d7905389e",
"body": null,
"is_bot": false,
"headline": "chore: Release qoaudio version 0.5.0",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T21:27:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcc016e931853ad7e702ff0219474454c308e651",
"body": null,
"is_bot": false,
"headline": "Fix duration calculation",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T21:26:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fcd09142b6b8914e38643ebc185a74b6353d698",
"body": null,
"is_bot": false,
"headline": "chore: Release qoaudio version 0.4.0",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T17:31:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf9d22a84ccfc42b4ee522f90d328151495f7539",
"body": null,
"is_bot": false,
"headline": "Expose errors while processing frames",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T17:30:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76f87dcc0f6c33f25b315bc42c5dfc9b60225d08",
"body": null,
"is_bot": false,
"headline": "chore: Release qoaudio version 0.3.0",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T10:29:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6556451d9283039c26ef702a357d302f67d7d1f5",
"body": null,
"is_bot": false,
"headline": "Possible to create an decoder in streaming mode",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T10:29:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d0a839f0dfc914925f08f77f87c4edf7b8c2263",
"body": null,
"is_bot": false,
"headline": "chore: Release qoaudio version 0.2.0",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T07:39:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85f4df08079b3ee2321025cf9e2f4176c63aa5f2",
"body": null,
"is_bot": false,
"headline": "Make some constants part of the API",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-06T07:38:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd2f84b3a8877e0b1572ef8d4be29333a2ca5757",
"body": null,
"is_bot": false,
"headline": "Support streaming decoding of audio frames",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-05T14:26:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80698c09f595f6a51c43a02bbd3c89fa2a05844a",
"body": null,
"is_bot": false,
"headline": "Point to where more audio samples can be found",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-04T21:29:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cf224242d9ff03a235cfd86cc2bc1694cabbea8",
"body": null,
"is_bot": false,
"headline": "Point to source code repository",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-04T21:28:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2973e789e71d8afaeffbe2317156869f8022f0e7",
"body": null,
"is_bot": false,
"headline": "Show how to run the example",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-04T21:26:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3902c49b717ee2d991d0ef2397e2b903e68107bb",
"body": null,
"is_bot": false,
"headline": "Validate the size of the samples buffer",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-04T11:40:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "732c813f04571f3fc319c8f8770d4b73ffea0fb7",
"body": null,
"is_bot": false,
"headline": "Well, crate name squatting is a problem...",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-03T21:24:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39847a6e4b068a7ebb2b02f43f1ba96128c9050b",
"body": null,
"is_bot": false,
"headline": "We have to start somewhere",
"author_name": "Rafael Caricio",
"author_login": "rafaelcaricio",
"committed_at": "2023-04-03T21:13:14Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 8,
"latest_release_at": "2026-02-06T12:09:07Z",
"latest_release_tag": "v1.0.0",
"releases_from_tags": false,
"days_since_last_push": 163,
"active_weeks_last_year": 1,
"days_since_latest_release": 165,
"mean_days_between_releases": null
},
"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": "qoaudio",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/qoaudio",
"is_deprecated": false,
"latest_version": "0.7.0",
"repository_url": "https://github.com/rafaelcaricio/qoaudio",
"versions_count": 7,
"total_downloads": 14329,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 204,
"first_published_at": "2023-04-03T21:25:22.267720Z",
"latest_published_at": "2023-11-05T17:23:57.669052Z",
"latest_version_yanked": false,
"days_since_latest_publish": 989
}
]
},
"popularity": {
"forks": 1,
"stars": 34,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2023-06-05",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": {
"days": [
{
"date": "2023-04-03",
"count": 1
},
{
"date": "2023-04-04",
"count": 2
},
{
"date": "2023-04-07",
"count": 2
},
{
"date": "2023-04-09",
"count": 1
},
{
"date": "2023-04-12",
"count": 1
},
{
"date": "2023-04-16",
"count": 1
},
{
"date": "2023-04-27",
"count": 2
},
{
"date": "2023-04-28",
"count": 1
},
{
"date": "2023-04-29",
"count": 1
},
{
"date": "2023-04-30",
"count": 3
},
{
"date": "2023-07-15",
"count": 1
},
{
"date": "2023-08-08",
"count": 2
},
{
"date": "2023-08-28",
"count": 1
},
{
"date": "2023-08-30",
"count": 3
},
{
"date": "2023-10-06",
"count": 1
},
{
"date": "2023-10-30",
"count": 1
},
{
"date": "2024-06-14",
"count": 1
},
{
"date": "2024-07-23",
"count": 1
},
{
"date": "2024-08-07",
"count": 1
},
{
"date": "2024-09-11",
"count": 1
},
{
"date": "2024-10-10",
"count": 1
},
{
"date": "2025-02-15",
"count": 1
},
{
"date": "2025-05-05",
"count": 1
},
{
"date": "2026-02-21",
"count": 1
},
{
"date": "2026-04-04",
"count": 1
}
],
"complete": true,
"collected": 33,
"total_stars": 34
},
"open_issues_and_prs": 1
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml",
"fuzz/Cargo.toml"
],
"largest_source_bytes": 46647,
"source_files_sampled": 7,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 3795
},
"dependencies": {
"manifests": [
"Cargo.toml",
"fuzz/Cargo.toml"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [
{
"name": "atty",
"direct": false,
"version": "0.2.14",
"severity": "low",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"GHSA-g98v-hv3f-hcfr",
"RUSTSEC-2021-0145",
"RUSTSEC-2024-0375"
],
"fixed_version": null,
"advisory_count": 3,
"oldest_advisory_days": 1843
},
{
"name": "serde_cbor",
"direct": false,
"version": "0.11.2",
"severity": "unknown",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"RUSTSEC-2021-0127"
],
"fixed_version": null,
"advisory_count": 1,
"oldest_advisory_days": 1801
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"low": 1,
"unknown": 1
},
"advisory_count": 4,
"affected_count": 2,
"assessed_count": 130,
"malicious_count": 0,
"assessed_package": "crates:qoaudio@0.7.0",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "rodio",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.17.1"
},
{
"name": "hound",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.5"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "hound",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rodio",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "criterion",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "libfuzzer-sys",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 4,
"direct_count": 2,
"indirect_count": 2
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 5,
"open_issues": 1,
"closed_ratio": 0.75,
"closed_issues": 3,
"closed_unmerged_prs": 2
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "rafaelcaricio",
"commits": 33,
"avatar_url": "https://avatars.githubusercontent.com/u/107613?v=4"
},
{
"type": "User",
"login": "benhansen-io",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/509969?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.825
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"rust.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"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": 2,
"reason": "1 out of 5 merged PRs checked by a CI test -- score normalized to 2",
"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": 1,
"reason": "Found 3/22 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": 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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "8e37fd9bf829ac378349a23812a0cf047a5af6da",
"ran_at": "2026-07-22T08:25:34Z",
"aggregate_score": 3.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-02-08T14:26:48Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-02-06T11:39:47Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 11,
"created_at": "2026-04-04T08:43:44Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/rafaelcaricio/qoaudio",
"host": "github.com",
"name": "qoaudio",
"owner": "rafaelcaricio"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"security": 49,
"vitality": 41,
"community": 37,
"governance": 54,
"engineering": 43
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "at_risk",
"name": "Vitality",
"value": 41,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"commits_last_year": 8,
"human_commit_share": 1,
"days_since_last_push": 163,
"active_weeks_last_year": 1
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 163 days ago",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 163
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "1/52 weeks with commits",
"points": 0.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 1
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "8 commits in the last year",
"points": 8.6,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 8
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 74,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v1.0.0",
"releases_from_tags": false,
"days_since_latest_release": 165,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 165 days ago",
"points": 27,
"status": "partial",
"details": [
{
"code": "release_recency",
"params": {
"days": 165
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"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": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 163,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 163 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 163
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 37,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"forks": 1,
"stars": 34,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "34 stars",
"points": 24.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 34
}
}
],
"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": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"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
}
]
},
{
"key": "ecosystem_adoption",
"band": "at_risk",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 38,
"inputs": {
"packages": [
"qoaudio"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 14329,
"monthly_downloads": 204
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "204 downloads/month across crates",
"points": 30.8,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 204,
"ecosystems": "crates"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.825
},
"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 82% of commits",
"points": 3.9,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 82
}
}
],
"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 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"merged_prs": 5,
"open_issues": 1,
"closed_issues": 3,
"issue_closed_ratio": 0.75,
"closed_unmerged_prs": 2
},
"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": "5/7 decided PRs merged",
"points": 27.3,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 5,
"decided": 7
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/22 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"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": 67,
"inputs": {
"followers": 419,
"owner_type": "User",
"is_verified": null,
"owner_login": "rafaelcaricio",
"public_repos": 244,
"account_age_days": 6208
},
"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": "419 followers of rafaelcaricio",
"points": 18.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 419,
"login": "rafaelcaricio"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "244 public repos, account ~17 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 244
}
},
{
"code": "account_age_years",
"params": {
"years": 17
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "moderate",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"packages": [
"qoaudio"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 989
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 989 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 989
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "7 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 7
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 43,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "1 out of 5 merged PRs checked by a CI test -- score normalized to 2",
"points": 4,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "https://crates.io/crates/qoaudio",
"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://crates.io/crates/qoaudio",
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 49,
"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": 39,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.9
},
"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": "1 out of 5 merged PRs checked by a CI test -- score normalized to 2",
"points": 0.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 3/22 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is 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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Matched the crates:qoaudio@0.7.0 runtime dependency closure — what installing the published package pulls in — 130 packages. Reachability is not analyzed.",
"notes": [
{
"code": "advisories_scope_published",
"params": {
"package": "crates:qoaudio@0.7.0",
"assessed": 130
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 90,
"inputs": {
"source": "osv",
"advisories": 4,
"affected_packages": 2,
"assessed_packages": 130,
"unassessed_packages": 0,
"affected_by_severity": "low 1, unknown 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "2 affected: atty 0.2.14 (low), serde_cbor 0.11.2 (unknown)",
"points": 18.5,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 2,
"packages": "atty 0.2.14 (low), serde_cbor 0.11.2 (unknown)"
}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "2 advisory-carrying package(s) unaddressed past 90 days; oldest published 1843 days ago",
"points": 36.4,
"status": "partial",
"details": [
{
"code": "advisories_stale",
"params": {
"days": 90,
"count": 2,
"oldest": 1843
}
}
],
"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": 130,
"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": 52,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "good",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.5,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 3795
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md"
}
}
],
"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": "20 of 40 human commits state their intent (structured subject or explanatory body)",
"points": 26.7,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 20,
"sampled": 40
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml",
"fuzz/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, fuzz/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, fuzz/Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 40",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 40
}
}
],
"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": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 46647,
"source_files_sampled": 7,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/7 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 7,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"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": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"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": [],
"report_type": "repository",
"generated_at": "2026-07-22T08:25:44.205758Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/r/rafaelcaricio/qoaudio.svg",
"full_name": "rafaelcaricio/qoaudio",
"license_state": "standard",
"license_spdx": "MIT"
}