JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 178,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 116798,
"Shell": 4712,
"PowerShell": 4608
},
"pushed_at": "2026-07-22T22:34:35Z",
"created_at": "2026-07-17T06:39:18Z",
"owner_type": "User",
"updated_at": "2026-07-20T03:18:06Z",
"description": "2-way Google Drive sync with .driveignore filter — rclone engine, Windows tray",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "Nguyen Quang Minh",
"type": "User",
"login": "n24q02m",
"company": null,
"location": "Ha Noi, Viet Nam",
"followers": 30,
"avatar_url": "https://avatars.githubusercontent.com/u/135627235?v=4",
"created_at": "2023-06-05T14:04:23Z",
"is_verified": null,
"public_repos": 41,
"account_age_days": 1143
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2026-07-19T03:15:40Z"
},
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2026-07-19T02:34:11Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2026-07-19T00:40:31Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-07-18T15:31:45Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2026-07-18T00:09:19Z"
},
{
"tag": "v1.0.0-beta.1",
"kind": "prerelease",
"published_at": "2026-07-17T16:29:46Z"
}
],
"recent_commits": [
{
"oid": "63e52021f49af796df7e0daca2ef7d9a6691a66b",
"body": "* Add renovate.json\n\n* fix: configure Renovate with SHA pinning and rate limits\n\nActions here are pinned to commit SHAs, which only stays safe if something\nbumps them. Enable Renovate with pinDigests so the pins keep receiving\nsecurity updates, and cap concurrent PRs so the first sweep trickles in.\n\n---------\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>\nCo-authored-by: Nguyen Quang Minh <135627235+n24q02m@users.noreply.github.com>",
"is_bot": true,
"headline": "chore: Configure Renovate (#1)",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-20T03:18:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd0a8227748a34aa2b99eefc73d2c8b79b98d88d",
"body": "Mutable tags let an upstream repoint change what runs in CI without any\nchange landing here. Resolve every tag to its commit SHA, keeping the\nversion in a trailing comment so Renovate can still bump it.",
"is_bot": false,
"headline": "fix: pin GitHub Action references to commit SHAs (#8)",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-20T02:48:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6217f30c2490a3def0e04e51cb57f280175a08b",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.4.0",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-19T03:15:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dbaadb855d2d568ab31874a5e0e1ed39f7bf666",
"body": "…g console windows",
"is_bot": false,
"headline": "fix: run rclone with CREATE_NO_WINDOW so the GUI daemon stops flashin…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T03:13:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb6a97482d4a106d7d7c7e0015cc565374bfb628",
"body": "…ndows/Linux tray",
"is_bot": false,
"headline": "fix: keep macOS build headless (defer cgo tray), correct README to Wi…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T03:13:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c552af230d1e61309e8af5758074886482ea4eb1",
"body": "Follow-up to the tray_systray.go restructuring: the daemon now shows a\nreal tray icon on macOS too, not just Windows/Linux.",
"is_bot": false,
"headline": "feat: document macOS system-tray support in README",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T03:00:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "188c3eb3f7f03d5c3ad4737425aeba4fe1848682",
"body": "fyne.io/systray builds cgo-free on windows and linux (DBus); darwin needs\ncgo (Cocoa), which the release pipeline already wires up separately. Move\nthe systray Run/onReady implementation from tray_windows.go into\ntray_systray.go under `//go:build windows || linux || darwin` so all three\nget the real\n[…]\n so icon_windows.go and icon_unix.go each embed the right\nasset into a shared trayIcon var. tray_other.go's headless fallback now\nonly covers the remaining platforms (`!windows && !linux && !darwin`).",
"is_bot": false,
"headline": "feat: enable systray daemon on linux and macOS",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:59:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c545c44ed297d0e81767dac3585116de18e01485",
"body": null,
"is_bot": false,
"headline": "fix: refresh README for shell-out rclone engine + cross-platform install",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:51:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e0a126d22ed52cd69e6bfda9d18acae4b3a9bc3",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.3.0",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-19T02:34:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef504518a4382fa96cef1b69a68d3ac565bd9475",
"body": "Adapted from skret's installers: detect OS/arch, resolve the latest\n(or pinned) GitHub release tag for n24q02m/better-drive, download the\nmatching better-drive_<ver>_<os>_<arch> archive, verify its SHA256\nagainst checksums.txt (plus an optional cosign verify-blob check when\ncosign is present), and i\n[…]\nersion/-Prefix/-Quiet;\n--version/--prefix/--user/--no-completion/--quiet). Points the usage\nheader at the GitHub raw URL since better-drive has no docs domain\n(skret's used https://skret.n24q02m.com).",
"is_bot": false,
"headline": "feat: add one-shot install.ps1/install.sh installers",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:29:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "87a85bb8f447a47c84afc2ae4b0a3365dcb192d2",
"body": "dependency-review runs on pull_request (copied from skret) to flag\nmoderate+ severity vulnerable dependencies before merge.\n\ninstaller-smoke gates on workflow_dispatch/tag push and exercises the\nactual distribution channels end-to-end: scoop install on\nwindows-latest (bootstrapping scoop itself if t\n[…]\nnstall on macos-latest, each followed by `better-drive --version`.\nThis directly verifies the scoop-bucket and homebrew-tap publishes\ngoreleaser produces are installable, not just that goreleaser ran.",
"is_bot": false,
"headline": "feat: add dependency-review and installer-smoke CI jobs",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:29:08Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "053133345824ef2cb7bfb0f5c8d5b8fef259adc5",
"body": "Copy skret's scorecard.yml verbatim (generic, same pinned action SHAs)\nso better-drive gets the same supply-chain posture scoring on push to\nmain, weekly schedule, and branch-protection-rule changes.",
"is_bot": false,
"headline": "feat: add OpenSSF Scorecard workflow",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:28:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42c2ba1e872362af164c6a8b497d74a05fbf9794",
"body": "…leaser\n\nExtend builds to windows/linux/darwin x amd64/arm64 (CGO_ENABLED=0) now\nthat the engine shells out to the system rclone instead of embedding\nlibrclone. Windows still needs the GUI subsystem for the tray, so\n-H windowsgui moves into per-arch overrides (windows/amd64,\nwindows/arm64) instead o\n[…]\nrwin clean.\nAdd a brews: block (adapted from skret) alongside scoops:, and add\ndepends: rclone / dependencies: [{name: rclone}] to both since rclone\nis now a runtime dependency, not a bundled library.",
"is_bot": false,
"headline": "feat: add cross-platform builds, homebrew tap, and rclone dep to gore…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:28:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9c08be310a163c0aae1a586b9604f79ccf49e010",
"body": "Enable/Disable/Enabled previously only worked on Windows (HKCU Run key);\nautostart_other.go's stub returned an error on every other GOOS, including\ndarwin and linux. Add a LaunchAgent-based implementation for darwin\n(~/Library/LaunchAgents plist + launchctl load/unload) and a systemd\nuser-service implementation for linux (~/.config/systemd/user unit +\nsystemctl --user enable/disable), narrowing autostart_other.go's build\nconstraint to the platforms with neither.",
"is_bot": false,
"headline": "feat: add real darwin/linux autostart implementations",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:12:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7e899fcac1fa6591350dfe523b04e8d3b27a91b",
"body": "fyne.io/systray needs cgo on linux/darwin, blocking CGO_ENABLED=0 cross\ncompilation. Move the systray-based Run into tray_windows.go (windows-only,\nkeeps the systray import and embedded icon there) and add a headless\ntray_other.go Run for !windows that blocks on SIGINT/SIGTERM instead of\nrunning a tray UI - the daemon's sync loops are already started by the\ncaller before Run is called, so this just keeps the process alive.",
"is_bot": false,
"headline": "feat: split tray package by build tag for cgo-free non-windows builds",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T02:08:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a0f184ea00b47b3a34092cab1e1ef2aadb3e9c1",
"body": "Removes the now-dead librclone rpc infrastructure from internal/engine: the\nbackend/drive, backend/local, and cmd/bisync blank imports, and the\ncall/callWithRetry/isRetryable helpers, retryBackoffUnit var, and\nwithSkipGdocs/perfConfig/filterRC helpers (superseded by the global rclone\nflags and os/ex\n[…]\nray)\nneeding cgo for its native darwin backend - confirmed pre-existing on the\npre-migration commit, unrelated to this change; internal/engine and every\nother package cross-compile cleanly for darwin.",
"is_bot": false,
"headline": "feat: purge librclone dependency, drop rclone from go.mod",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T01:55:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "466ac4afd63cf8825194c1e16d405e8a7093070a",
"body": "Rewrites RemoteExists, RemoteConfigured, DeleteRemote, CreateDriveRemote,\nand ListRemote off librclone's rc config/* and operations/* calls onto the\nsystem rclone binary: `rclone listremotes`, `rclone config show <name>`,\n`rclone config delete <name>`, `rclone config create <name> drive\n[key=value .\n[…]\nblank-imports have no\nremaining callers (dead code, purged in the next commit). Replaces the\nrpc-based unit tests for these methods with fake-runner tests asserting the\nconstructed argv/parsed output.",
"is_bot": false,
"headline": "feat: shell out remote/config methods to rclone config/listremotes/lsf",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T01:55:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2858b603643fd506a7f15b510585af21791ba14a",
"body": "Rewrites Bisync off librclone's rc sync/bisync call onto `rclone bisync\npath1 path2 --workdir <workdir> [--resync] ...`: the same perf/retry/\nskip_gdocs flags as Copy/Sync plus the bisync-specific ones (--resilient,\n--recover, --max-delete 50, --conflict-resolve newer, --conflict-loser num,\n--compar\n[…]\n fake-runner tests\nasserting the constructed argv and call order (mkdir before bisync on a\n--resync run). Remote*/config methods still run on the old librclone rpc\nseam and migrate in the next commit.",
"is_bot": false,
"headline": "feat: shell out Bisync to rclone bisync, keep ErrNeedsResync mapping",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T01:55:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0ed88d9ba2f6dc7baa1cdab170f9274c2bbcb643",
"body": "Rewrites Copy/Sync off the librclone rc sync/copy, sync/sync, and\noperations/copyfile calls onto the system rclone binary: `rclone copy`,\n`rclone sync`, and (for a single-file Local, e.g. ~/.claude.json) `rclone\ncopyto`. Filters are written to an os.CreateTemp file and passed via\n--filter-from, remo\n[…]\n-based Copy/Sync unit tests with fake-runner tests that\nassert the constructed argv. Bisync and the Remote*/config methods still run\non the old librclone rpc seam and migrate in the following commits.",
"is_bot": false,
"headline": "feat: shell out Copy/Sync to rclone copy/sync/copyto",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T01:55:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2ee04f1dde454569327eff3d5300592b11dc3ab4",
"body": "Adds runner.go (the runner seam type + execRunner, an os/exec-backed\nimplementation) and rewires Engine.New/Close off the in-process librclone\nengine: New now resolves the system rclone binary via exec.LookPath and\nwires a real runner, Close becomes a no-op (nothing to finalize per\nsubprocess). Rema\n[…]\nrclone rpc seam and migrate in the following commits.\n\nPart of the Windows Defender false-positive fix (embedded librclone gets\nML-flagged; shelling out to the system rclone binary removes the embed).",
"is_bot": false,
"headline": "feat: add exec-based runner seam to engine for rclone shell-out",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T01:55:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "319cf1603e68ff85efc5c30ed6f3695561b01dc2",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.2.0",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-19T00:40:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22609c9632a865abce316afded7356e1ad3a60a1",
"body": "The tray only shows the latest state (a failing 6h sync is invisible\nbeyond an Error icon), so `better-drive run` now appends one OK/FAILED\nline per pair per cycle to base()/better-drive.log via a new\nsyncloop.Loop.OnResult callback, mirroring the OnChange wiring pattern.\nOpening the log file is best-effort: a failure to open it logs a\nwarning to stderr and the daemon continues with no logger rather than\nblocking startup.",
"is_bot": false,
"headline": "feat: log each sync cycle's outcome to a persistent log file",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-19T00:32:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "873f0b286548b33730986105d1900c397408c668",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.1.0",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-18T15:31:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e691ddc9fbf1c846735203e48a0eb41e0ac6922f",
"body": null,
"is_bot": false,
"headline": "fix: add non-windows autostart stub so Linux CI build passes",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T15:28:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff99e228ccadaa43d40bb1d2b90288a63d3cc350",
"body": "…res output\n\nattachParentConsole rebinds os.Stdout/os.Stderr to the parent console so a\nGUI-subsystem (-H windowsgui) binary can print CLI output interactively. But it\nrebound unconditionally, so when the caller had ALREADY redirected stdout to a\nfile or pipe (`better-drive sync > log`, or a CI pipe\n[…]\ny rclone's fd-2 NOTICEs remained. Guard with a\nGetFileType check: if stdout is a real file or pipe, leave it alone and never\nattach. Verified: `sync > log` now captures every per-pair OK/SKIPPED line.",
"is_bot": false,
"headline": "fix: keep redirected stdout in windowsgui build so `sync > log` captu…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T15:15:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "476af124a36b10b1208849510b326120dacc288a",
"body": null,
"is_bot": false,
"headline": "feat: GUI-subsystem build with parent-console attach for CLI output",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T15:00:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6da8c65c72489023d5c818cfc59315bc4c4b9906",
"body": null,
"is_bot": false,
"headline": "feat: better-drive install/uninstall + internal rclone config path",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T14:57:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2183ab7e4c3583b12bb75bea60e5de929f4f139",
"body": null,
"is_bot": false,
"headline": "feat: autostart via HKCU Run key",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T14:55:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2982a11f61520595524fea1e86310c261c01c75",
"body": null,
"is_bot": false,
"headline": "feat: engine.New sources rclone config path from arg then env",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T14:52:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bac00c26000e0ca486687c4801d21df118e5d40c",
"body": null,
"is_bot": false,
"headline": "feat: resolve rclone config path from config field + auto-detect",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T14:49:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a630e1d574babbee48d064d7913cb3e8bb4fc647",
"body": "Two gaps surfaced deploying the backup to a second machine whose gdrive remote\nlives in a non-default rclone config and which hit Drive's shared client_id\nrate limit:\n\n- librclone.Initialize() loads the config from rclone's default path and does\n NOT run flag parsing, so the RCLONE_CONFIG env (norm\n[…]\nllWithRetry (3 attempts, backoff) around the transfer ops;\n the incremental copy re-attempts only failed files, clearing the quota\n window. Only transient errors retry; config/auth errors fail fast.",
"is_bot": false,
"headline": "fix: honor RCLONE_CONFIG and retry transient Drive errors in backup",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T10:59:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "93bbcc0d6edfa342e5e3c75ecf922588cc386795",
"body": "…eErrors\n\nIgnoreErrors (added in the prior commit) was the wrong flag: rclone's\n--ignore-errors only permits deletions to proceed despite I/O errors and does\nnot stop a failed transfer from failing the pair. The real failure on a live\n~/.claude was \"can't copy - source file is being updated (size ch\n[…]\nt the size it first saw instead of aborting. Verified end-to-end: a full\ncopy-mode backup of the live ~/.claude tree now reports OK with zero\n\"being updated\" errors (previously failed the whole pair).",
"is_bot": false,
"headline": "fix: use no_check_updated for live-directory backup, drop wrong Ignor…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T10:07:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8f4047ffeca62f8fbd2cc38e167752e975db058e",
"body": "Two robustness gaps surfaced running a real copy-mode backup of a live\n~/.claude tree:\n\n- A file locked or being written mid-copy (common in an active session)\n yields \"corrupted on transfer\" (empty src md5) and, without IgnoreErrors,\n fails the WHOLE pair. Add IgnoreErrors to perfConfig so the sy\n[…]\nocal source does not exist (e.g. a machine without hermes)\n failed with \"directory not found\". Skip it with a SKIPPED line, matching\n the backup script's Test-Path guard, instead of failing the run.",
"is_bot": false,
"headline": "fix: tolerate live-file errors and skip missing local sources in backup",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T09:35:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3cf4444f0deafde01074fbe237b5501803273bcf",
"body": "…eed)",
"is_bot": false,
"headline": "feat: fast-list + tuned transfers on sync ops (large-folder backup sp…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T08:21:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4d09e42654c6fea4f38d49bcfe5cbeb5e0c28da",
"body": "…cement)",
"is_bot": false,
"headline": "feat: one-shot sync command + single-file source (backup-script repla…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T07:50:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50a3b488e728a35e0ab986eb8ce83e4ce4b68d1c",
"body": "Add syncloop.Loop.RunOnce (exported), running exactly one sync cycle -\nsame mode dispatch and bisync resync-if-no-baseline as the ticker path -\nand returning its error, for callers that need a single pass with no\nticker/tray.\n\nAdd the `better-drive sync` CLI command: loads and validates config, then\n[…]\ne per pair and exiting non-zero\nif any pair failed. This lets a Windows Scheduled Task invoke\n`better-drive sync` in place of a one-shot backup script, instead of\nrequiring the continuous tray daemon.",
"is_bot": false,
"headline": "feat: one-shot sync command and Loop.RunOnce for scheduled backups",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T07:46:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "29204e84bb8db152334e37025ae4f8159dc42da2",
"body": "…file)\n\nA pair whose Local is a regular file (e.g. ~/.claude.json) now copies via\nrc operations/copyfile instead of sync/copy or sync/sync. Verified the rc\nparam shape empirically against a real Drive remote (rclone v1.74.4):\nsrcFs/dstFs are each resolved as an fs.Fs root, srcRemote/dstRemote are\npa\n[…]\nparent directory (not\nthe file path itself) and srcRemote its base name. Filters do not apply to\na single-file copy. A Local that fails os.Stat falls back to the existing\ndirectory dispatch unchanged.",
"is_bot": false,
"headline": "feat: single-file source support in engine Copy/Sync (operations/copy…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T07:46:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e828bf7a592ad0bd09e52dfdafa56ebc85ed43c9",
"body": "…inux passed)",
"is_bot": false,
"headline": "fix: config path env override so status test is env-independent (CI L…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:43:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b288c26a520bcc93147ec17766530012728677e",
"body": null,
"is_bot": false,
"headline": "merge: reconcile origin/main into sync-modes merge",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:35:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba64118f3562fc574316cf68c080e77f93a395da",
"body": "… excludes",
"is_bot": false,
"headline": "feat: sync modes (copy/sync 1-way + bisync 2-way), multi-pair, config…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:34:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff30a7b4a2720c35dcd383ff645295712a62ee89",
"body": null,
"is_bot": false,
"headline": "feat: engine sync-op serialization regression test",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:34:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb4c0dccdc11ab8cdc15f75a04b05368b7079c31",
"body": "…rclone global _filter",
"is_bot": false,
"headline": "fix: serialize sync ops (engine mutex) — concurrent copy/bisync race …",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:30:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "96d04f24fda37210b041df2dc771d572357ba0e3",
"body": "README described a single 2-way [[pair]] block. It now documents that\nmultiple [[pair]] blocks run concurrently under one daemon+tray, the mode\nkey (bisync/copy/sync), and the exclude key (config-level gitignore-syntax\npatterns that combine with an optional .driveignore file) for pairs that\nshould never have a .driveignore file written into their real directory.",
"is_bot": false,
"headline": "feat: document multi-pair config, sync modes, and config excludes",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:15:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "545213369a90cd433e4e3b5a6055fa62021ff44b",
"body": "runCmd previously used only cfg.Pairs[0]. It now starts one syncloop per\nconfigured pair (each with its own mode, interval, and filters from\nconfig.PairFilters(pair.Local, pair.Exclude)), in its own goroutine and its\nown workdir (paths.PairWorkdir(i) - bisync's baseline/listing files must not\ncollid\n[…]\n the tray's one status line shows the combined state. On Quit, all\nloops are cancelled and joined (sync.WaitGroup) before engine.Close.\nstatusCmd now prints one line per pair instead of only Pairs[0].",
"is_bot": false,
"headline": "feat: run one syncloop per config pair with combined tray status",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:15:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ba2e3c10470621776918a754742d0394f5d44995",
"body": "Multi-pair runs need one Loop per pair, but the tray still shows a single\n\"Status: ...\" menu item. Aggregator keeps a mutex-guarded map of per-loop\nsyncloop.State (keyed by pair index) fed via Register(idx, loop) wiring into\neach Loop's existing OnChange, and derives one combined state with\nprecedence Syncing > Error > NeedsResync > Paused (only when ALL loops are\nPaused) > Idle.",
"is_bot": false,
"headline": "feat: add tray Aggregator to combine per-pair sync state",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:14:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "343f73999b997ee0c81ec3d48914817824f76c17",
"body": "…ludes\n\nTranslateDriveIgnore's gitignore -> rclone-filter translation (per-line rule\nlogic + the final gitignore-last-match-wins reversal) is now a standalone\nexported TranslateIgnoreLines([]string), shared by TranslateDriveIgnore (file\npath, behavior unchanged) and the new PairFilters(localRoot, ex\n[…]\ninto one translated\nfilter-rule list. This is what lets a pair exclude paths from a real,\nalready-existing directory (e.g. ~/.claude) purely via config, with no\n.driveignore file ever written into it.",
"is_bot": false,
"headline": "feat: extract TranslateIgnoreLines and add PairFilters for config exc…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:13:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4f1358645a5cb4dbb78d9bc1ee99dda11356104c",
"body": "Validate() previously required exactly 1 [[pair]] block; it now validates\nevery pair independently and accepts 1..N, laying the config groundwork for\nmulti-target sync (replacing a multi-source backup script). Pair gains an\nExclude []string (toml \"exclude\") field for config-level gitignore-syntax\npatterns, so a pair can filter what it syncs without a .driveignore file\never being written into the source directory.",
"is_bot": false,
"headline": "feat: accept N config pairs and add per-pair exclude patterns",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T02:10:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf8b4d7efc5a023e238a3f21303db096fc25652b",
"body": "…om cli\n\nExtends the Syncer interface with Copy/Sync, adds a mode param to\nsyncloop.New, and makes runOnce dispatch on it: mode=bisync keeps the\nexisting resync/baseline path unchanged, mode=copy/sync call the new\n1-way engine methods with no resync/baseline concept, classifying any\nerror as StateEr\n[…]\nle/syncing/error/paused state machine are shared across\nall three modes.\n\ncli.go's runCmd threads Pair.Mode into syncloop.New, and statusCmd now\nprints the pair's mode alongside local/remote/interval.",
"is_bot": false,
"headline": "feat: dispatch syncloop by mode (bisync/copy/sync) and thread mode fr…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T01:32:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c5cf5192cd32941d4113da008a5f0c5bb59064f9",
"body": "Adds CopyParams plus Engine.Copy (rc sync/copy - 1-way backup, never\ndeletes on dst) and Engine.Sync (rc sync/sync - 1-way mirror, deletes\non dst to match src). Both are stateless: no resync/baseline/\nensureRemoteDir, since rc sync/copy auto-creates the destination dir.\n\nFilters are passed via the r\n[…]\ng:` tags - so the key is\n\"FilterRule\", not \"filter\"). FilterRule accepts the same \"+ \"/\"- \"\nprefixed rule syntax as a bisync filters file, so config.\nTranslateDriveIgnore's output is reused unchanged.",
"is_bot": false,
"headline": "feat: add engine.Copy and engine.Sync for 1-way rclone modes",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T01:31:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cc244eb4bb5fbf3848cd4e60fb6103c4757a0434",
"body": "Adds a `mode` toml key to [[pair]] that selects the sync strategy: an\nempty/omitted mode keeps existing bisync behaviour, and Validate now\nrejects any mode outside bisync|copy|sync. Lays the groundwork for\n1-way copy (backup) and sync (mirror) modes alongside the existing\n2-way bisync.",
"is_bot": false,
"headline": "feat: add mode field to Pair config (bisync/copy/sync)",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T01:31:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "758e9611d41c1647dcc194cb9fff4e68e882aea7",
"body": null,
"is_bot": false,
"headline": "fix: adopt better-semantic-release for built-in release guards",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-18T01:09:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af767acd720aa331bc2cf241f420b97c7acb38af",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.0.0",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-18T00:09:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d70e3ff67dd11514bdd48d341c33780ed024ac8",
"body": null,
"is_bot": false,
"headline": "fix: mark beta/rc goreleaser releases as prerelease (auto)",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T16:36:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3857d9967a12aed4db0bf8eedaa26c8e2f38a8a2",
"body": "Automatically generated by python-semantic-release",
"is_bot": false,
"headline": "1.0.0-beta.1",
"author_name": "semantic-release",
"author_login": null,
"committed_at": "2026-07-17T16:29:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d0e465c8928aa1bbf76187c3a714b506abe202d",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_016Jpm261G1ATNQ6RQPyDYjw",
"is_bot": false,
"headline": "feat: release automation (goreleaser + PSR + scoop) mirroring skret",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T15:53:14Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ba3aeca4b7aeccf66edfe551afe827f99beaa236",
"body": "…update did not persist)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_016Jpm261G1ATNQ6RQPyDYjw",
"is_bot": false,
"headline": "fix: apply drive skip_gdocs via runtime connection string (rc config/…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T14:49:21Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d6ebf65c139f30fcb9f19661651f68f9050c5ba6",
"body": null,
"is_bot": false,
"headline": "fix: embed and set tray icon so the systray entry renders on Windows",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T12:47:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "132b275a8ede5257b24904c969210118a97ccd90",
"body": "…e for real librclone (E2E-found); harden engine tests",
"is_bot": false,
"headline": "fix: register bisync rc + local backend, ensure remote dir + maxDelet…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T12:20:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2975d1f7dde6e5aed758c101670eb527af09f27",
"body": null,
"is_bot": false,
"headline": "fix: gate CodeQL CI job on public repo visibility",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T10:46:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbb9f1f5b1c7089e2aadfb1824620b3c73cdc6f9",
"body": null,
"is_bot": false,
"headline": "fix: gofmt internal/paths/paths.go",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T10:40:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51af266e6b3349f544b92374890fee80bc2539b8",
"body": "…join, coverage + robustness (final review)",
"is_bot": false,
"headline": "fix: correct .driveignore translation, persistent baseline, shutdown …",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T10:35:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35ba06fcd2a47af36b9a2660c0d5f45586d0ac18",
"body": null,
"is_bot": false,
"headline": "feat: README upstream-diff table, CodeQL CI, scoop manifest",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T09:21:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43b4c83e4826f05852c0a3595609ae279e80862c",
"body": "Add ListRemote(remotePath) calling rc operations/list (fs=remotePath,\nremote=\"\") and parsing the \"list\" array's Name entries, with a unit\ntest using the injected fake rpc. Add test/integration_test.go\n(build tag integration) that resyncs a baseline, writes keep.txt +\nskip.tmp + .driveignore locally,\n[…]\n, bisyncs up, then asserts via\nListRemote that keep.txt landed on the remote and skip.tmp did not.\nSkips cleanly when BD_TEST_REMOTE_PATH is unset (real run needs a\nuser-gated OAuth'd gdrive: remote).",
"is_bot": false,
"headline": "feat: engine.ListRemote + gated Drive round-trip integration test",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T09:05:51Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dd32997fc64e7469358322c1ca387a77f7d6e3c5",
"body": "…ote configured",
"is_bot": false,
"headline": "fix: self-healing setup detects token-less remote, run pre-checks rem…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T08:46:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "989f8d664c0a22d62ab397b5eee00fd6c36f26fd",
"body": "…chanism\n\nAdds internal/cli (cobra root with setup/run/status subcommands) and\nmain.go wiring cli.Execute(). Removes the obsolete librclone spike\n(cmd/spike/main.go) now that config, engine, syncloop, tray, and cli\nare all implemented and link into a single binary.\n\nObserved OAuth mechanism (engine.\n[…]\n\nlogged, process had to be killed (no timeout/cancel path exposed).\nTest remote left a token-less stub entry that had to be cleaned up\nmanually. Flagged as a follow-up concern rather than solved here.",
"is_bot": false,
"headline": "feat: cli setup/run/status + main wiring; resolve in-process OAuth me…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T08:08:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e517756b90a7197eb464bb9899f674ad42603df3",
"body": "…der, quit)",
"is_bot": false,
"headline": "feat: systray UI wired to syncloop (status, sync-now, pause, open-fol…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:55:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6fee9bc2d4f8df6da208f43d43803b74d9dd40a3",
"body": null,
"is_bot": false,
"headline": "fix: lock OnChange write and preserve Pause across in-flight sync",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:49:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d326f7cd8e5955a882dfc4ba70d46f7c46b26a7e",
"body": "…p, needs-resync)",
"is_bot": false,
"headline": "feat: syncloop state machine + scheduler (first-run resync, no-overla…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:34:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d283f5723536e6680e71ce60791625c003e376ee",
"body": null,
"is_bot": false,
"headline": "fix: assert filters.txt content in engine bisync test",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:27:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f0be6b23b17b575c64c961198faa0848c071035",
"body": null,
"is_bot": false,
"headline": "fix: gitignore SDD scratch dir",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:21:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66b3df84a1698b8618eb10dc74a856d2ce0a0aab",
"body": "…ync detection)",
"is_bot": false,
"headline": "feat: engine wrapping librclone (bisync params, remote ops, needs-res…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:18:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8bf3f696cc8347ff183841765394f4f7aa83da9",
"body": null,
"is_bot": false,
"headline": "feat: translate .driveignore (gitignore syntax) to rclone filter rules",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:13:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78fb69df6eaae87563ca2a0c579dc9a2e2fd080c",
"body": null,
"is_bot": false,
"headline": "feat: config load + validate (single-pair enforced) + appdata paths",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T07:07:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aeb1dde8d05994867e53d62f23aec0a45ce9abfd",
"body": "… verified)\n\nSpike proves import _ \"github.com/rclone/rclone/backend/drive\" plus\nlibrclone.RPC compile and run in-process, with cgo disabled and no\nfork of rclone internals.\n\n- rclone pinned to v1.74.4 (latest release at time of bootstrap)\n- fyne.io/systray@v1.12.2, spf13/cobra@v1.10.2, BurntSushi/t\n[…]\n29.66 MB (31095808 bytes),\n well under the ~40MB expectation, confirming dead-code elimination\n pruned the other 50+ rclone backends despite go.sum needing their\n checksums for MVS graph resolution",
"is_bot": false,
"headline": "feat: bootstrap module + librclone engine spike (backend-pruned build…",
"author_name": "Nguyen Quang Minh",
"author_login": "n24q02m",
"committed_at": "2026-07-17T06:56:52Z",
"body_truncated": true,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 74,
"latest_release_at": "2026-07-19T03:15:40Z",
"latest_release_tag": "v1.4.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 1,
"days_since_latest_release": 3,
"mean_days_between_releases": 0.3
},
"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/n24q02m/better-drive",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/n24q02m/better-drive",
"is_deprecated": false,
"latest_version": "v1.4.0",
"repository_url": "https://github.com/n24q02m/better-drive",
"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-19T03:15:38Z",
"latest_version_yanked": null,
"days_since_latest_publish": 3
}
]
},
"popularity": {
"forks": 0,
"stars": 1,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 16
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 22488,
"source_files_sampled": 32,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 7,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "fyne.io/systray",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.12.2"
},
{
"name": "github.com/BurntSushi/toml",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.2"
},
{
"name": "golang.org/x/sys",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.47.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "fyne.io/systray",
"direct": true,
"version": "v1.12.2",
"ecosystem": "go"
},
{
"name": "github.com/burntsushi/toml",
"direct": true,
"version": "v1.6.0",
"ecosystem": "go"
},
{
"name": "github.com/spf13/cobra",
"direct": true,
"version": "v1.10.2",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": true,
"version": "v0.47.0",
"ecosystem": "go"
},
{
"name": "github.com/godbus/dbus/v5",
"direct": false,
"version": "v5.1.0",
"ecosystem": "go"
},
{
"name": "github.com/inconshreveable/mousetrap",
"direct": false,
"version": "v1.1.0",
"ecosystem": "go"
},
{
"name": "github.com/spf13/pflag",
"direct": false,
"version": "v1.0.10",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 7,
"direct_count": 4,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 15,
"merged_prs": 2,
"open_issues": 1,
"closed_ratio": 0,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "n24q02m",
"commits": 67,
"avatar_url": "https://avatars.githubusercontent.com/u/135627235?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"cd.yml",
"ci.yml",
"scorecard.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": "2 out of 2 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/29 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 10,
"reason": "all dependencies are pinned",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 10,
"reason": "SAST tool is run on all commits",
"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": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "63e52021f49af796df7e0daca2ef7d9a6691a66b",
"ran_at": "2026-07-23T00:05:43Z",
"aggregate_score": 5,
"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-20T04:19:04Z",
"oldest_open_prs": [
{
"number": 2,
"created_at": "2026-07-18T22:06:54Z",
"last_comment_at": "2026-07-18T22:06:55Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 3,
"created_at": "2026-07-18T22:12:40Z",
"last_comment_at": "2026-07-18T22:12:41Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 4,
"created_at": "2026-07-18T22:16:41Z",
"last_comment_at": "2026-07-18T22:16:42Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 5,
"created_at": "2026-07-19T22:24:59Z",
"last_comment_at": "2026-07-19T22:25:00Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 6,
"created_at": "2026-07-19T22:26:46Z",
"last_comment_at": "2026-07-19T22:26:47Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 7,
"created_at": "2026-07-19T22:42:16Z",
"last_comment_at": "2026-07-19T22:42:17Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 10,
"created_at": "2026-07-20T22:10:46Z",
"last_comment_at": "2026-07-20T22:10:47Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 11,
"created_at": "2026-07-20T22:21:25Z",
"last_comment_at": "2026-07-20T22:21:26Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 12,
"created_at": "2026-07-20T22:42:33Z",
"last_comment_at": "2026-07-20T22:42:35Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 13,
"created_at": "2026-07-21T22:16:51Z",
"last_comment_at": "2026-07-21T22:16:53Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 14,
"created_at": "2026-07-21T22:20:19Z",
"last_comment_at": "2026-07-21T22:20:20Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 15,
"created_at": "2026-07-21T22:30:35Z",
"last_comment_at": "2026-07-21T22:30:35Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 16,
"created_at": "2026-07-22T22:22:40Z",
"last_comment_at": "2026-07-22T22:22:41Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 17,
"created_at": "2026-07-22T22:29:51Z",
"last_comment_at": "2026-07-22T22:29:53Z",
"last_comment_author": "google-labs-jules"
},
{
"number": 18,
"created_at": "2026-07-22T22:34:37Z",
"last_comment_at": "2026-07-22T22:34:38Z",
"last_comment_author": "google-labs-jules"
}
],
"last_merged_pr_at": "2026-07-20T03:18:02Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 9,
"created_at": "2026-07-20T03:19:15Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/n24q02m/better-drive",
"host": "github.com",
"name": "better-drive",
"owner": "n24q02m"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"security": 60,
"vitality": 68,
"community": 24,
"governance": 44,
"engineering": 61
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 68,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"commits_last_year": 74,
"human_commit_share": 0.986,
"days_since_last_push": 0,
"active_weeks_last_year": 1
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"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": "74 commits in the last year",
"points": 16.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 74
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 6,
"latest_release_tag": "v1.4.0",
"releases_from_tags": false,
"days_since_latest_release": 3,
"mean_days_between_releases": 0.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 3 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 3
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.3 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.3
}
}
],
"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": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 1,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 1
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 44,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 38,
"inputs": {
"merged_prs": 2,
"open_issues": 1,
"closed_issues": 0,
"issue_closed_ratio": 0,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "0% of issues closed",
"points": 0,
"status": "missed",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 0
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "2/2 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 2,
"decided": 2
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/29 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": 48,
"inputs": {
"followers": 30,
"owner_type": "User",
"is_verified": null,
"owner_login": "n24q02m",
"public_repos": 41,
"account_age_days": 1143
},
"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": "30 followers of n24q02m",
"points": 10.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 30,
"login": "n24q02m"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "41 public repos, account ~3 yr old",
"points": 18.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 41
}
},
{
"code": "account_age_years",
"params": {
"years": 3
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/n24q02m/better-drive"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 3
},
"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 3 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 3
}
}
],
"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.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"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": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": "2 out of 2 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": "moderate",
"name": "Security",
"value": 60,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 18,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 0,
"scorecard_aggregate": 5
},
"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": "2 out of 2 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/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is run on all commits",
"points": 5,
"status": "met",
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 7 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 7
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 7,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 7,
"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": 69,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.918,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "67 of 73 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 67,
"sampled": 73
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.027,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.014
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "2 of the last 74 commits agent-authored or agent-credited",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"sampled": 74
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 74 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 74
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "all dependencies are pinned",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 22488,
"source_files_sampled": 32,
"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/32 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 32,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-23T00:05:50.961177Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/n/n24q02m/better-drive.svg",
"full_name": "n24q02m/better-drive",
"license_state": "standard",
"license_spdx": "MIT"
}