Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 188,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 249524,
"Makefile": 946
},
"pushed_at": "2026-07-27T09:33:11Z",
"created_at": "2026-04-11T18:27:58Z",
"owner_type": "User",
"updated_at": "2026-07-28T05:30:14Z",
"description": "A complete Lossless and Hi-Res music downloader for Qobuz rewritten with Golang",
"is_archived": false,
"is_disabled": false,
"license_spdx": "GPL-3.0",
"default_branch": "main",
"license_spdx_raw": "GPL-3.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "Aldo",
"type": "User",
"login": "Aeneaj",
"company": null,
"location": null,
"followers": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/238357548?v=4",
"created_at": "2025-10-15T22:51:04Z",
"is_verified": null,
"public_repos": 1,
"account_age_days": 287
},
"license": {
"state": "standard",
"spdx_id": "GPL-3.0",
"raw_spdx": "GPL-3.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.4.1",
"kind": "patch",
"published_at": "2026-07-20T18:38:56Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2026-05-05T18:14:15Z"
},
{
"tag": "v1.3.5",
"kind": "patch",
"published_at": "2026-05-03T19:52:01Z"
},
{
"tag": "v.1.3.0",
"kind": "other",
"published_at": "2026-04-23T23:50:54Z"
},
{
"tag": "v1.2.1",
"kind": "patch",
"published_at": "2026-04-23T22:18:48Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2026-04-11T20:02:00Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-04-11T19:36:30Z"
}
],
"recent_commits": [
{
"oid": "603089d37c0a1b5131c365c8d159d08284f94342",
"body": "downloader was the least covered package (24.1%) and the one holding the\nmost logic. Nothing exercised the pieces together: metadata parsing, path\nbuilding, the worker pool, tagging and the downloads DB were each tested\nin isolation, or not at all.\n\nAdd a fake Qobuz API (album/get, track/getFileUrl)\n[…]\nct is that track/getFileUrl is\nnever called, so the test counts those instead. Six mutations, all now\ndetected.\n\nPackage coverage 24.1% -> 39.5%.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "test(downloader): add integration tests over a fake Qobuz server",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T09:33:05Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b62670fd307fa73cdf7beb84f0d7389f4cc3cfa7",
"body": "While an mpb container is live it owns the cursor, repositioning and\nrepainting every 150ms. Raw fmt.Printf calls underneath it corrupt the\ndrawing, and the worst offenders ran from the worker goroutines, so with\n--workers 3 several could land mid-repaint at once. It garbled output\nprecisely when a \n[…]\nnd\n range over a string directly instead of []rune(string), clearing the\n last staticcheck findings. staticcheck is now silent across the repo.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(downloader): stop writing to stdout while progress bars render",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T09:16:49Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ed553fed8c1342dc0503887260001a3eb2a2d85b",
"body": "Coverage figures had drifted well off: the file claimed lyrics 100% and\ndownloader 35%, against measured 74.1% and 24.3%. Replace them with the\nvalues from go test -cover, and note that cmd/qobuz-dl reads 0% because\nits tests build the binary and drive it as a subprocess, so nothing is\ninstrumented \n[…]\ncores, not\n the number of passes.\n\nMark the three debt items done and promote the downloader integration\ntests to the one open item of any size.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: refresh CLAUDE.md after the complexity cleanup",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T08:56:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "553e6af0a63a7cb3cb6c12b9a95cf320e81ef595",
"body": "smartDiscogFilter was cognitive 25, the last of the three complexity\nhotspots. A previous pass (2095142) collapsed its four traversals into\ntwo and the score did not move, because the cost was never the number of\npasses: it was nesting. Two loops and a switch sat inside the per-group\nloop, plus a fo\n[…]\npredicate. It is cheap now that the\nrule is a pure function, and it is the part that silently changes which\nalbum gets downloaded when it breaks.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor(downloader): split smartDiscogFilter by responsibility",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T08:49:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "fee96d2d3b99c8714a8a312dfc2100e636daa47f",
"body": "The Latin-1 branch of decodeID3Text was string(payload), which in Go\nreinterprets the bytes as UTF-8 rather than converting from ISO-8859-1.\nEvery byte above 0x7F came out mangled: \"Café\" tagged as Latin-1 decoded\nto \"Caf\\xe9\", which is not valid UTF-8. That string is used verbatim as\nthe LRCLIB art\n[…]\ntive 10 and 16 lines, down from 38 and 56; the\nhelpers land at 1, 2 and 4. The five pre-existing tests are untouched and\nact as regression cover.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(lyrics): decode ISO-8859-1 ID3 tags correctly",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T08:42:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "087ec49a2f1abb148af7b0fe4b1ec723a7b33f5c",
"body": "main() carried cognitive complexity 54, the highest in the repo, and grew\nwith every new subcommand. Most of it came from the dispatch switch: each\nof dl/lucky/csv/fun repeated the same nested \"check args, build downloader,\nhandle error\" trio.\n\n- Extract runDL/runLucky/runCSV, matching the existing \n[…]\nt codes.\n\nConsolidate the dl/lucky missing-arg tests into one table-driven test\ncovering requireArgs, which also adds the csv case that had none.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor(cli): reduce main() to a dispatcher",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T08:30:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7bf424ce8c17065f77297b630f1598319185c27f",
"body": "The codebase-memory MCP indexer writes .codebase-memory/graph.db.zst on\nevery reindex: 615KB of binary churn that also embeds the absolute local\nrepo path. It only pays off when a team bootstraps from a shared index,\nwhich does not apply to a public solo repo.\n\nNote that the pre-existing *.db rule does not cover it, since the\nartifact ends in .zst.\n\nCo-Authored-By: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: ignore codebase-memory index artifacts",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-27T08:11:53Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "324e9b58d4e407b1fc71ce8e933dd3742822fc8d",
"body": null,
"is_bot": false,
"headline": "chore(release): bump version to v1.4.1",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T18:33:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6e3c21d05deaa5f98145acc2b18ae266f1a734b",
"body": "perf(downloader): collapse smartDiscogFilter passes and cache remaste…",
"is_bot": false,
"headline": "Merge pull request #17 from Aeneaj/perf/smart-discog-filter",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T18:28:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2095142e882de3df99a557047c0a8c0039649eb4",
"body": "…r flag\n\nReduce per-group work from 4 passes to 2: compute best bit depth, best\nsampling rate at that depth, and the remaster-exists flag in a single\npass, caching each album's \"is remaster\" result so the regex runs once\nper album instead of twice (once for remasterExists, once in selection).\n\nNo behavior change: same selection, same order, same remaster logic.\nExisting tests (TestSmartDiscogFilter_*) pass unchanged.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "perf(downloader): collapse smartDiscogFilter passes and cache remaste…",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T18:23:46Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "3ea774eff84db1bcee49228d990ddbd775a4d0d4",
"body": "feat(config): allow setting concurrent workers in config.ini",
"is_bot": false,
"headline": "Merge pull request #16 from Aeneaj/feat/workers-in-config",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T08:21:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce255486536f7a1bf7b9f8e35e90d239b2a20634",
"body": "Add a 'workers' key to config.ini so users can persist the concurrent\ntrack download count without passing --workers N every time. The CLI\nflag still wins when provided, matching the resolution order already\nused for quality, folder_format, and other overlapping settings.\n\nResolution order (highest \n[…]\nder.New.\n\nTest: TestLoad_Workers covers explicit values, absent keys, invalid\nvalues, and the zero-means-default case.\n\nCloses #9\n\nCo-authored-by: go2tom42 <12462792+go2tom42@users.noreply.github.com>",
"is_bot": false,
"headline": "feat(config): allow setting concurrent workers in config.ini",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T08:18:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "15141071747e04faeb9370b21c35fec21ab86ea3",
"body": "fix(downloader): re-download tracks whose file was deleted from disk",
"is_bot": false,
"headline": "Merge pull request #15 from Aeneaj/fix/redownload-deleted-tracks",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:57:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa421a874f3ff38777386506bf7372872172a1d9",
"body": "When a user deleted an album and re-ran the download, only the cover\nart was recreated — no tracks. collectTrackJobs skipped every track\nwhose ID appeared in the downloads DB, without checking whether the\nfile was still on disk, so a deleted-but-once-downloaded album ended\nup as an empty folder with\n[…]\nyHave: in-DB+on-disk skips, in-DB+deleted re-downloads\n (the bug fix), not-in-DB always downloads, nil-DB never skips.\n\nCloses #11\n\nCo-authored-by: jcbrizu <44624465+jcbrizu@users.noreply.github.com>",
"is_bot": false,
"headline": "fix(downloader): re-download tracks whose file was deleted from disk",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:51:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "988fadd87781c2ff27cf16983b77c507ecd5066f",
"body": "refactor(config): give $XDG_CONFIG_HOME precedence over os.UserConfigDir",
"is_bot": false,
"headline": "Merge pull request #14 from Aeneaj/refactor/xdg-config-home-precedence",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:40:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80ebf285a1880ae7de7c37853a9c71868bb6ddcf",
"body": "Check $XDG_CONFIG_HOME before falling back to os.UserConfigDir so\nCLI-oriented users get the same override on macOS and Windows that\nGo's os.UserConfigDir already honours on Linux.\n\nBackground: on macOS, os.UserConfigDir returns ~/Library/Application\nSupport and ignores XDG_CONFIG_HOME even when set\n[…]\nive XDG_CONFIG_HOME is ignored (spec compliance)\n - empty XDG_CONFIG_HOME falls through to the platform default\n\nCloses #10\n\nCo-authored-by: themartorana <21433+themartorana@users.noreply.github.com>",
"is_bot": false,
"headline": "refactor(config): give $XDG_CONFIG_HOME precedence over os.UserConfigDir",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:37:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1901f062648cabeaf36b667f3142d68f32b150ec",
"body": "…rmat\n\nfeat(downloader): allow subfolders in folder_format and track_format",
"is_bot": false,
"headline": "Merge pull request #13 from Aeneaj/feat/allow-subfolders-in-folder-fo…",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:30:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb35fd5e21588a070d245387f67416bbfa2a4ee2",
"body": "A folder_format like \"{artist}/{album}\" was flattened into\n\"{artist}_{album}\" because sanitize() was applied to the fully\nexpanded string, stripping legitimate path separators.\n\nInvert the sanitization: apply sanitize() per value inside\nexpandPlaceholders so literal \"/\" written in the template survi\n[…]\nd-to-end folder_format pipeline creating a real nested tree\n\nCloses #7\n\nCo-authored-by: EssGeeEich <6076005+EssGeeEich@users.noreply.github.com>\nCo-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(downloader): allow subfolders in folder_format and track_format",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-07-20T07:27:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3d015b1c04b41c69379202ea101116b7a6cd8b32",
"body": "test: aislar XDG_CONFIG_HOME y limpiar entorno en subprocess tests",
"is_bot": false,
"headline": "Merge pull request #6 from Aeneaj/chore/refactor-cleanup",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T18:03:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1523970a41b589b05e62ba4624ad95020c0c739",
"body": null,
"is_bot": false,
"headline": "test: aislar XDG_CONFIG_HOME y limpiar entorno en subprocess tests",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T18:00:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1a92cbecdc436831ae6b76a26855dfe753bc221",
"body": null,
"is_bot": false,
"headline": "refactor: optimizar complejidad de downloadWithProgress",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T17:27:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d55da7634996ed2533a3382720e7ef994ad1aca8",
"body": null,
"is_bot": false,
"headline": "refactor: descomponer downloadAlbum en helpers cohesivos (Phase 4)",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T17:18:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33279885e97229f31b26c339870fa64f0e05cff9",
"body": null,
"is_bot": false,
"headline": "refactor: manejo robusto de errores I/O pendientes",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T02:14:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "788d341fedff06ffed3f955394895d9132da4d5c",
"body": null,
"is_bot": false,
"headline": "refactor: manejo robusto de errores I/O y base de datos",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T02:03:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0ad0f196df7ed406657088ab736b572c24e620e",
"body": "…artup",
"is_bot": false,
"headline": "existing users with corrupt qobuz_dl.db will now hit hard error on st…",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T01:46:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "567e6991634d6f9b99c24b60dfc1fe13612c77e5",
"body": null,
"is_bot": false,
"headline": "refactor: limpieza de código muerto y optimización de flags",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T01:38:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bba51ac6c12110b4e8317b2a35097b974c60152",
"body": null,
"is_bot": false,
"headline": "chore: actualizar .gitignore para excluir logs definitivamente",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T00:42:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de7fa0edde3e3e7af066f6fb22a8b1193c489c0b",
"body": null,
"is_bot": false,
"headline": "Refactor: Implementación de Graceful Shutdown global usando context",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T00:38:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39267c2d4faa845b93fa373b9b7e1b7c031ef7c6",
"body": null,
"is_bot": false,
"headline": "manejo de gorutines leaks",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-05T00:38:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f830debd871d9d7b2fe0ee2394f7d73a88e8d120",
"body": null,
"is_bot": false,
"headline": "se agregaron test para mayor calidad del codigo",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-04T02:32:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6143c4ed0572cf2f90b8db79e1c140095481ad1",
"body": null,
"is_bot": false,
"headline": "new feature for lyrics",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-04T02:32:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76f8ddb494ac67b71ea1547a93d46db47dfcdec5",
"body": null,
"is_bot": false,
"headline": "cambios en ajustes iniciales",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-05-04T02:31:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b30f36f8fb2fb6ce7386231e55e9903a66e60aee",
"body": null,
"is_bot": false,
"headline": "mejor manejo de carpeta downloader",
"author_name": "Aeneaj Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-04-27T02:24:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8bd2866a364043e57c9d043831f9f0061935e5c",
"body": null,
"is_bot": false,
"headline": "cambios en el readme",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-24T00:01:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "869b5c799c5e8b1603a684ddfe1d072dea6c77fc",
"body": "v1.3.0",
"is_bot": false,
"headline": "Merge pull request #2 from Aeneaj/release/v1.3.0",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-04-23T23:39:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bc4302ed9a6e7ed5faa8fcfc43901438d104c65",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: bump version to v1.3.0",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-23T23:35:17Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2af88f885626cc5d49ebad1a5aa4537e40cc1331",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement CSV batch downloading and fix concurrency bugs",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-23T23:35:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "00f7bcf60c070b4f27a4f37dd11cdc041297c226",
"body": null,
"is_bot": false,
"headline": "cambios es claude.md",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-23T22:08:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d869779173066c972bdda21b3ceadb0b7d57090",
"body": null,
"is_bot": false,
"headline": "volvi mas robusto el sistema de descargas para casos inusuales.",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-23T21:55:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79195de426fb7cf816ea61b02eca2372d0b0734d",
"body": "Replace the rigid wizard (pick type once → loop) with a REPL that lets\nthe user mix search types freely, manage a queue, and start downloads\nat any point. Commands: sa/st/sr/sp (search by type), dl <url>, q\n(show queue), rm <n>, clear, go, help, exit. No new dependencies.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Rewrite interactive mode as a command-driven REPL",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T19:53:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8bfad051e460fc958bc97dc98b0e5b18c69b4a89",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update CLAUDE.md: mark Last.fm playlist support as done",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T19:45:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2b15f731586e5c4b544519fca325cf93750db39b",
"body": "Declare var version = \"dev\" so the -X main.version linker flag set by\nthe Makefile and release.yml actually takes effect. Expose it via\n-v / --version flags. Also mention last.fm in the dl command description.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add version variable and --version flag",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T19:35:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "368a438f18ea2b566948791836e04f120bec35f5",
"body": "Fetch loved tracks and recent tracks from Last.fm (no API key required)\nvia the XSPF 1.0 endpoint, search each track on Qobuz, and download the\ntop result. Supported URLs:\n https://www.last.fm/user/{user}/loved\n https://www.last.fm/user/{user}/library\n\nTracks are saved to \"<dir>/Last.fm - {user} - {type}/\", skipped tracks\nare counted in the final summary, and M3U is generated if enabled.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add Last.fm playlist support",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T19:13:09Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9bcaa86b545ab603ca17c118f9b7cae85b22f34c",
"body": null,
"is_bot": false,
"headline": "Resueltos conflictos de fusión en LICENSE y README",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T19:01:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4e8b8bcff429273957aa963676dbd2d3278611c",
"body": "- Makefile: cross-compile for linux/darwin/windows (amd64+arm64) with sha256 checksums\n- ci.yml: run vet + tests on every push/PR to main\n- release.yml: build all platforms and publish GitHub Release on version tag (v*)\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add Makefile and GitHub Actions CI/release workflows",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T18:35:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2f67070d9273a9fbd4084c4295ac184c1fee9001",
"body": "Complete Go rewrite of vitiko98/qobuz-dl with OAuth authentication,\nconcurrent downloads, FLAC/MP3 tagging in pure Go, and downloads database.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Initial release: qobuz-dl-go v1.0",
"author_name": "Aeneaj",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T18:32:49Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f1560e1648bac29b35c85debece99618377e10b0",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Aldo",
"author_login": "Aeneaj",
"committed_at": "2026-04-11T18:27:59Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 47,
"latest_release_at": "2026-07-20T18:38:56Z",
"latest_release_tag": "v1.4.1",
"releases_from_tags": false,
"days_since_last_push": 3,
"active_weeks_last_year": 5,
"days_since_latest_release": 9,
"mean_days_between_releases": 16.7
},
"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/Aeneaj/qobuz-dl-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/Aeneaj/qobuz-dl-go",
"is_deprecated": false,
"latest_version": "v1.4.1",
"repository_url": "https://github.com/Aeneaj/qobuz-dl-go",
"versions_count": 6,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-20T18:33:34Z",
"latest_version_yanked": null,
"days_since_latest_publish": 9
}
]
},
"popularity": {
"forks": 8,
"stars": 41,
"watchers": 3,
"fork_history": {
"days": [
{
"date": "2026-04-25",
"count": 1
},
{
"date": "2026-04-26",
"count": 1
},
{
"date": "2026-04-28",
"count": 1
},
{
"date": "2026-05-14",
"count": 1
},
{
"date": "2026-05-21",
"count": 1
},
{
"date": "2026-05-24",
"count": 1
},
{
"date": "2026-06-18",
"count": 1
},
{
"date": "2026-06-19",
"count": 1
}
],
"complete": true,
"collected": 8,
"total_forks": 8
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 46856,
"source_files_sampled": 31,
"oversized_source_files": 0,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 18367
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 7,
"open_issues": 1,
"closed_ratio": 0.8,
"closed_issues": 4,
"closed_unmerged_prs": 4
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Aeneaj",
"commits": 47,
"avatar_url": "https://avatars.githubusercontent.com/u/238357548?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "6 out of 6 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/24 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": 0,
"reason": "Project has not signed or included provenance with any releases.",
"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": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "603089d37c0a1b5131c365c8d159d08284f94342",
"ran_at": "2026-07-30T14:10:54Z",
"aggregate_score": 3.7,
"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-07-27T09:33:51Z",
"oldest_open_prs": [
{
"number": 5,
"created_at": "2026-04-27T02:53:29Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-20T18:28:44Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 12,
"created_at": "2026-07-01T15:49:37Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Aeneaj/qobuz-dl-go",
"host": "github.com",
"name": "qobuz-dl-go",
"owner": "Aeneaj"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 54 is calibrated to 56 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 54,
"calibrated": 56,
"calibration": "2026-08-02"
}
}
],
"value": 56,
"inputs": {
"security": 37,
"vitality": 75,
"community": 42,
"governance": 44,
"calibration": "2026-08-02",
"engineering": 61,
"ai_readiness": 81,
"weighted_overall_raw": 54
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 75,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"commits_last_year": 47,
"human_commit_share": 1,
"days_since_last_push": 3,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "47 commits in the last year",
"points": 15.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 47
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 7,
"latest_release_tag": "v1.4.1",
"releases_from_tags": false,
"days_since_latest_release": 9,
"mean_days_between_releases": 16.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 9 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 9
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~16.7 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 16.7
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"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": "weak",
"name": "Community & Adoption",
"value": 42,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"forks": 8,
"stars": 41,
"watchers": 3,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "41 stars",
"points": 26,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 41
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "8 forks",
"points": 7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 8
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "3 watchers",
"points": 1.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 3
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (GPL-3.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "GPL-3.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "weak",
"name": "Sustainability & Governance",
"value": 44,
"weight": 0.23,
"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": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 61,
"inputs": {
"merged_prs": 7,
"open_issues": 1,
"closed_issues": 4,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.8,
"closed_unmerged_prs": 4,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "80% of issues closed",
"points": 33.6,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 80
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "7/11 decided PRs merged",
"points": 19.1,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 7,
"decided": 11
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/24 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 23,
"inputs": {
"followers": 3,
"owner_type": "User",
"is_verified": null,
"owner_login": "Aeneaj",
"public_repos": 1,
"account_age_days": 287
},
"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": "3 followers of Aeneaj",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 3,
"login": "Aeneaj"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "1 public repos, account ~0 yr old",
"points": 3.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 1
}
},
{
"code": "account_age_years",
"params": {
"years": 0
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/Aeneaj/qobuz-dl-go"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 9
},
"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 9 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 9
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "6 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 6
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 61,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": 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": "6 out of 6 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "weak",
"name": "Security",
"value": 37,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 37,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.7
},
"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": "6 out of 6 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/24 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"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": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "excellent",
"name": "AI Readiness",
"value": 81,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.723,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 18367
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "CLAUDE.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": "34 of 47 human commits state their intent (structured subject or explanatory body)",
"points": 38.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 34,
"sampled": 47
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 71,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.362,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "17 of the last 47 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 17,
"sampled": 47
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 46856,
"source_files_sampled": 31,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/31 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 31,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [],
"labels": [],
"scores": {
"library": 3
},
"primary": null,
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 3
}
],
"artifacts": [],
"confidence": "none",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": false
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-30T14:11:05.423804Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/Aeneaj/qobuz-dl-go.svg",
"full_name": "Aeneaj/qobuz-dl-go",
"license_state": "standard",
"license_spdx": "GPL-3.0"
}