原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 95,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 26268,
"Shell": 2853,
"Makefile": 1561
},
"pushed_at": "2026-07-18T20:26:16Z",
"created_at": "2026-07-17T14:31:09Z",
"owner_type": "User",
"updated_at": "2026-07-18T20:26:19Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://www.linkedin.com/in/disble/",
"name": "Alejandro Arias",
"type": "User",
"login": "Disble",
"company": null,
"location": "Ibarra, Ecuador",
"followers": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/11463431?v=4",
"created_at": "2015-03-13T16:46:07Z",
"is_verified": null,
"public_repos": 29,
"account_age_days": 4148
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-07-18T20:26:30Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-18T20:09:58Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-07-18T14:38:44Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-07-17T14:34:19Z"
}
],
"recent_commits": [
{
"oid": "e57f63dd44c488f4077b13e0504695bfd60b3f4f",
"body": "requireDoc makes a doc comment mandatory on every unexported function,\nwhile file-length-limit counted comment lines toward its 400-line budget.\nObeying one rule therefore pushed a file toward violating the other: two\nfiles in a real 133-file codebase crossed the limit purely by adding the\ndocs this\n[…]\nl skipComments: false reasoning (deny a generator free padding)\nassumed comments were optional. They are not anymore. File size measures\ncode mass; funlen already ignores comments for the same reason.",
"is_bot": false,
"headline": "fix(preset): stop file-length-limit from counting mandated doc comments",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T20:26:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e0071a727b71cfdcb24f2aa8782905cd3982fcb1",
"body": null,
"is_bot": false,
"headline": "docs(release): changelog for v0.3.0",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T20:09:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e537902b2c866f4090a3949502a3f837c75188fe",
"body": "dlinter is an opinionated linter; its defaults are where the opinion\nlives. A rule that ships off is a rule most projects never discover, so\nrequireDoc now runs unless explicitly disabled with requireDoc: false.\n\nSettings.RequireDoc becomes *bool so an unset value is distinguishable\nfrom an explicit\n[…]\nl cannot express.\n\nCaveats documented in the README rather than softened in the default:\nloud on existing codebases, init/main exempt, and no linter can judge\nwhether a doc comment is actually useful.",
"is_bot": false,
"headline": "feat(requiredoc)!: enable requireDoc by default",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T20:06:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "139d493f1833ec264dfae8667a03ecf6aa406c2f",
"body": "Reports unexported functions and methods declared without a doc comment.\nOpt-in via requireDoc: true, because it deliberately goes beyond Go's\nconvention of documenting only the exported surface.\n\nExported symbols stay with revive:exported (no double-reporting). init\nand main are exempt: lifecycle entry points have no caller and no name\nworth documenting, and forcing a comment there produces exactly the\ntautology the rule aims to avoid.\n\nDogfood: caught classify in this repo, now documented.",
"is_bot": false,
"headline": "feat(requiredoc): add requireDoc analyzer for unexported symbols",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T19:51:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da12a246ad0f8d10aa732e38c4c55fdc3f9a1598",
"body": "revive:exported enforces that a doc comment exists on the exported\nsurface; godoclint enforces that the ones written are well-formed. A\nmisleading doc comment is worse than a missing one, so the two are\ncomplementary rather than redundant.\n\nNeither requires comments on unexported symbols, deliberate\n[…]\nGo scopes\ndoc requirements to the exported contract, and mandating them on private\nhelpers produces tautologies that train readers to ignore comments.\n\nDogfood: this repo passes godoclint at 0 issues.",
"is_bot": false,
"headline": "feat(preset): add godoclint for doc-comment correctness",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T19:33:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f107c6344719b7fbdc45c441e5d241629d720423",
"body": null,
"is_bot": false,
"headline": "docs(release): changelog for v0.2.0",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:38:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a9038cd189a8ef0fc5c500013cecc58e370b1d3",
"body": "Calibrated against a real 133-file consumer codebase: funlen fired 26\ntimes there, 23 of them (88%) on tests, and dupl split 11/11. Long test\nfunctions and repeated fixture scaffolding are idiomatic Go; flagging\nthem trains users to gut the preset, which costs more than the findings\nare worth. gocognit and nestif still apply to tests deliberately — an\nunreadable test cannot serve as a specification.\n\nThis repo was too small to surface the pattern; the external validation\nrun was.",
"is_bot": false,
"headline": "fix(preset): exclude funlen and dupl on test files",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:34:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e22abc4c936b110952b687b6b9d235e46122dbd",
"body": "golangci-lint <= v2.11 passes \"-c advice.detachedHead=false\" as a single\nargv element when cloning its own repo, so git sees a key with a leading\nspace. git >= 2.54 rejects it (\"invalid key: advice.detachedHead\"),\nbreaking `golangci-lint custom` on current runners and for any consumer\non modern git\n[…]\nplitting the flag.\n\nRemoves the diagnostic probe and token-auth workaround, which were\ntreating a symptom. Config verified against the revive v1.15.0 that\nv2.12.2 bundles: self-lint stays at 0 issues.",
"is_bot": false,
"headline": "fix(ci): bump pinned golangci-lint to v2.12.2 for git 2.54 compatibility",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:31:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "022819bd07203d498ababc0d63a9abd4399126c2",
"body": "…ession levers\n\nShips four reuse levers (revive file-length-limit, funlen, gocognit 15,\nnestif 4) plus nolintlint, wired identically into the self-applied config\nand the recommended preset. Package-cohesion analyzer deferred: no\ncandidate metric survived its false-positive story, and M1 calibration\n\n[…]\nogfood: tightening gocognit forced real decompositions of Graph.Resolve\nand runWithGraph — refactored, not relaxed.\n\nsize:exception (446 lines) — second decomposition was not in the original\nestimate.",
"is_bot": false,
"headline": "feat: AI discipline harness — coordinated complexity, size, and suppr…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:23:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "847dc4a3dbdd4a311f38fa02cbb320326275dac5",
"body": "README: add a \"discipline harness\" section with the gaming-resistance\nranking table (file size weakest/residual -> funlen medium -> gocognit/\nnestif and mayDependOn strong), demoting package cohesion to Medium per\nDesign D1 (unexport-behind-wrapper is a cheaper escape than restructuring,\nnot the \"no\n[…]\nWNERS, branch protection, CI diff\ncheck) consumers own themselves. Closes with an explicit non-guarantee:\nthis harness raises the cost and visibility of cheating, it does not make\ncheating impossible.",
"is_bot": false,
"headline": "docs(harness): document thesis, ranking, and threat model",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:20:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ee9f1e8a1c446c7ba3f30fa28762f66313efa17",
"body": "…ions\n\nAdd nestif (min-complexity:4) to both config files identically, per Design\nD5/D8: it catches short-function nesting pyramids that gocognit's\ntotal-complexity budget misses, independent of function length. Confirmed\nPASS -- dlinter-go's deepest if-nest is 2.\n\nDesign D6 estimated (without runni\n[…]\n-- ignore-comments:true keeps the table-driven test\nunder the funlen bar. Per the constraint to add test exclusions only on a\nreal, evidenced failure, the speculative block is removed from both files.",
"is_bot": false,
"headline": "config(nestif): add nesting-depth lever; drop speculative test exclus…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:12:12Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6042072f2110d5224d25acdc1f2ad26e070e6f65",
"body": "…gnit to 15\n\nAdd revive file-length-limit (max:400, weakest lever, residual-sprawl catch\nonly), funlen (60/40 lines/statements, ecosystem defaults, ignore-comments\ntrue so extraction is not penalized), and nolintlint (require-explanation\nand require-specific true, allow-unused false) to both recomme\n[…]\nen/dupl/gocognit for _test.go in both files: table-driven tests\nare idiomatic and long by design (the table is data, not logic), and these\nthree levers measure design pressure on production code only.",
"is_bot": false,
"headline": "feat(config): add file-length-limit, funlen, nolintlint, tighten goco…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:10:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3b48d9d48e3d4509d54538ef3d5f3a28968aa22a",
"body": "…elow gocognit 15\n\nExtract matches/betterPrefix from Graph.Resolve and ForbiddenImport/\ntrimModule from runWithGraph, both driven by STRICT TDD (RED tests for the\nnot-yet-existing helpers, then extraction). Confirmed both functions were\nabove the gocognit-15 threshold this change is about to enable \n[…]\noth scripts/hooks/deadcode-check.sh\nand Makefile (they duplicate each other) to add the new helper names, since\nthey are reachable only through the same plugin-entrypoint indirection as\ntheir callers.",
"is_bot": false,
"headline": "refactor(rolegraph,maydependon): decompose Resolve and runWithGraph b…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-18T14:06:43Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5551ab9825f3195fb96786d95a6a6b0e3df9f563",
"body": "…gnit with dlinter",
"is_bot": false,
"headline": "feat(preset): add recommended config bundling revive docs, dupl, goco…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T22:16:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de6521875082c040a213bbaaf023f3b478c20385",
"body": null,
"is_bot": false,
"headline": "ci: instrument selflint clone with diagnostic probes and verbose build",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T16:28:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf6748a0a061f25cc47f19728d6c23ae729d7bf1",
"body": null,
"is_bot": false,
"headline": "docs: restructure README as open-source project readme",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T16:07:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95cb81bd6a6f78864ad6b0eb522d1609799b0f30",
"body": "…t clone",
"is_bot": false,
"headline": "ci: fix deadcode download-noise failure and authenticate golangci-lin…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T16:06:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "107c6a671546b731c674c4729cca85cb64fb372a",
"body": null,
"is_bot": false,
"headline": "chore(hooks): move deadcode check from pre-push to pre-commit",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T14:33:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce69f537bd4199903df966a400ffbf85fe0e12de",
"body": "…o.mod tidy",
"is_bot": false,
"headline": "chore(release): prepare v0.1.0 — LICENSE, changelog, consumer docs, g…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T13:50:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4d993fd4b5091a0c1089cbed87ad8a4faf4a703",
"body": "…d guardrail",
"is_bot": false,
"headline": "feat: mayDependOn MVP — first real architecture rule with self-applie…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T13:46:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1708dfb94996c601b22d8325fb50fd61976504ee",
"body": null,
"is_bot": false,
"headline": "ci: retire go-list layering check, update deadcode allowlist docs",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T02:44:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2af0844b93d145077650688cfb4564f8b6e19fb6",
"body": null,
"is_bot": false,
"headline": "refactor: wire maydependon into plugin, retire skeleton",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T02:42:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "412d34116b3cdb9831586b4e8fe5ccbd704323da",
"body": null,
"is_bot": false,
"headline": "feat(maydependon): add mayDependOn analyzer with role-based diagnostics",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T02:40:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6045d8338b597055ee0ebb850510967f4693c042",
"body": "…sed import verdicts",
"is_bot": false,
"headline": "feat(rolegraph): add Graph, RoleDef, Resolve, and Allowed for role-ba…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T02:37:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6892559e18029dfe89ad80dac7adb9dfdaa52f83",
"body": "Document the three-step local setup (custom-gcl build, lefthook\ninstall, deadcode install) now that lefthook.yml exists, so\ncontributors can reproduce the CI gate locally.",
"is_bot": false,
"headline": "docs: add local setup section for lint build and lefthook",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:52:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd2cb5dd31e771809d35f1f8fe4430e6a1dd6845",
"body": "Wire lefthook to mirror CI locally: pre-commit runs gofmt -l on staged\nfiles, the self-lint (./bin/custom-gcl.exe run ./...), and go test\n./...; pre-push runs deadcode with the same false-positive allowlist\nas .github/workflows/ci.yml. Checks live in scripts/hooks/*.sh rather\nthan inline lefthook ru\n[…]\ninstall registers .git/hooks/pre-commit and\npre-push; a whitespace-breaking commit is correctly blocked by gofmt\nwhile selflint and test still pass, and a clean commit passes through\nall three checks.",
"is_bot": false,
"headline": "feat(hooks): add lefthook pre-commit and pre-push gate",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:52:41Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "faa022c74ecb54b8fdc112c4f37448a663b3e004",
"body": "Add dupl (duplication detection) and gocognit (cognitive complexity)\nto the curated preset, alongside the existing dlinter and unused.\ngocognit is chosen over gocyclo because it weighs nesting and\nboolean-logic density more accurately for reviewability. Thresholds\n(dupl: 100 tokens, gocognit: 20) ar\n[…]\ning points,\ndocumented as tunable. depguard is skipped for now — no external\ndependency rules exist yet.\n\nVerified: self-lint (./bin/custom-gcl.exe run ./...) passes with 0\nissues on the current tree.",
"is_bot": false,
"headline": "feat(preset): expand curated linter preset with dupl and gocognit",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:48:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1e8bd13e9b89251f5a2c383064576706110cec68",
"body": "…l dogfood build",
"is_bot": false,
"headline": "feat: foundation architecture — walking skeleton with self-referentia…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:38:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "061c2ddd0550fb0276f7246a540a07a7d5cc2fbe",
"body": "Adds a summary table at the top of docs/spikes.md consolidating the\nincremental Spike A/B, .golangci.yml key-path, self-lint scope-gap, and\ndeadcode false-positive notes recorded across the previous four commits.\nAll three of the design's Open Questions are resolved: no import: line\nneeded, the .golangci.yml key path matches the design draft, and\nsize:exception was already confirmed by sdd-tasks.",
"is_bot": false,
"headline": "docs: finalize spikes.md with summary table",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:23:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22b565c84a504c343f68c4785d64f47f25b6f856",
"body": "unit job builds, tests, and runs the go-list-based layering check that\nenforces internal/rolegraph's import direction (the concrete backing for\nthe self-lint scope gap documented in the previous commit). selflint job\ncaches custom-gcl keyed on .custom-gcl.yml + go.sum and self-lints the\nrepo. deadco\n[…]\nllowlist\nstill catches a deliberately added dead function (then reverted); the\nselflint path was rebuilt end-to-end via go install + golangci-lint custom\nagainst the pinned v2.1.0, producing 0 issues.",
"is_bot": false,
"headline": "feat(ci): add three-stage CI workflow and Makefile",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:22:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d96a07509dc83218f30a31f3822d12669218c18e",
"body": "Registers the dlinter custom module linter and declares this repo's own\npackage-role config (core/adapter/entrypoint). Verified custom-gcl run ./...\npasses with 0 issues, and that dlinter is actively invoked against the real\npackage graph (not only testdata) via a temporary skeletonMarker function i\n[…]\nolegraph. Documents the self-lint scope gap: the trivial skeleton\nanalyzer cannot catch real layering violations yet; that scenario is covered\nby the go list-based CI check landing in the next commit.",
"is_bot": false,
"headline": "feat: self-apply .golangci.yml with dlinter module linter",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:14:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a306f6943a0a86fb0a898bb81cfb56634bcb81dc",
"body": "internal/rolegraph establishes the Role type contract for the future\nmayDependOn evaluation logic, with no evaluation code yet. cmd/dlinter is an\nempty command skeleton that references both internal/rolegraph and\npkg/analyzers/skeleton to anchor the entrypoint role in the self-applied\nrole graph. internal/rolegraph imports neither pkg/analyzers nor\ncmd/dlinter, confirmed via go list -deps.",
"is_bot": false,
"headline": "feat: add internal/rolegraph and cmd/dlinter skeletons",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:11:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c81a2641f2f50897aec1dab83a503ef21b48987f",
"body": "…kes A/B)\n\nRegisters the dlinter module plugin (plugin.go, settings.go) and a\nthrowaway skeleton analyzer that exercises LoadModeTypesInfo end to end.\n.custom-gcl.yml builds custom-gcl from the working tree (path: .) with no\nexplicit import: line needed, but requires an explicit module: field the\ndesign draft didn't call out. Both spikes pass on the first candidate\nversion (v2.1.0); evidence recorded in docs/spikes.md.",
"is_bot": false,
"headline": "feat(plugin): prove self-referential custom-gcl build on Go 1.26 (spi…",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T01:10:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "685a07fb162f4f03126c27983a8dbff2836b9074",
"body": null,
"is_bot": false,
"headline": "chore: scaffold repository with Go module, README, and gitignore",
"author_name": "disble",
"author_login": "Disble",
"committed_at": "2026-07-17T00:46:33Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 34,
"latest_release_at": "2026-07-18T20:26:30Z",
"latest_release_tag": "v0.3.1",
"releases_from_tags": false,
"days_since_last_push": 3,
"active_weeks_last_year": 1,
"days_since_latest_release": 3,
"mean_days_between_releases": 0.4
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/Disble/dlinter-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/Disble/dlinter-go",
"is_deprecated": false,
"latest_version": "v0.3.1",
"repository_url": "https://github.com/Disble/dlinter-go",
"versions_count": 4,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-18T20:26:11Z",
"latest_version_yanked": null,
"days_since_latest_publish": 3
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 5404,
"source_files_sampled": 18,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"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": [
{
"name": "github.com/golangci/plugin-module-register",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.1.2"
},
{
"name": "golang.org/x/tools",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.48.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Disble",
"commits": 34,
"avatar_url": "https://avatars.githubusercontent.com/u/11463431?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": true,
"linter_configs": [
".golangci.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "project was created within the last 90 days. Please review its contents carefully",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 1,
"reason": "dependency not pinned by hash detected -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"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": "e57f63dd44c488f4077b13e0504695bfd60b3f4f",
"ran_at": "2026-07-22T06:10:28Z",
"aggregate_score": 3.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-18T20:26:42Z",
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Disble/dlinter-go",
"host": "github.com",
"name": "dlinter-go",
"owner": "Disble"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 39,
"vitality": 71,
"community": 24,
"governance": 34,
"engineering": 74
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 71,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"commits_last_year": 34,
"human_commit_share": 1,
"days_since_last_push": 3,
"active_weeks_last_year": 1
},
"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": "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": "34 commits in the last year",
"points": 13.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 34
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v0.3.1",
"releases_from_tags": false,
"days_since_latest_release": 3,
"mean_days_between_releases": 0.4
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"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.4 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.4
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "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": 34,
"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": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "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": 5,
"owner_type": "User",
"is_verified": null,
"owner_login": "Disble",
"public_repos": 29,
"account_age_days": 4148
},
"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": "5 followers of Disble",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 5,
"login": "Disble"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "29 public repos, account ~11 yr old",
"points": 22.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 29
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/Disble/dlinter-go"
],
"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": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "good",
"name": "Engineering Quality",
"value": 74,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 80,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": ".golangci.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 39,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 39,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 3.9
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 1",
"points": 0.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"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": "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": 66,
"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": 1,
"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": "34 of 34 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 34,
"sampled": 34
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 73,
"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": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"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": ".golangci.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 34",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 34
}
}
],
"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 1",
"points": 1,
"status": "partial",
"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": 5404,
"source_files_sampled": 18,
"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/18 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 18,
"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": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-22T06:10:32.753954Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/d/Disble/dlinter-go.svg",
"full_name": "Disble/dlinter-go",
"license_state": "standard",
"license_spdx": "MIT"
}