Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1241,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 424437,
"Shell": 7650,
"Python": 4081,
"Go Template": 314
},
"pushed_at": "2026-07-16T11:25:25Z",
"created_at": "2022-09-05T07:46:15Z",
"owner_type": "User",
"updated_at": "2026-07-16T11:16:41Z",
"description": "Generate config files for large-scale emulation networks from DOT files",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "www.3at.work",
"name": "Satoru Kobayashi (sat)",
"type": "User",
"login": "cpflat",
"company": null,
"location": null,
"followers": 13,
"avatar_url": "https://avatars.githubusercontent.com/u/3687158?v=4",
"created_at": "2013-02-24T18:31:27Z",
"is_verified": null,
"public_repos": 24,
"account_age_days": 4901
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.7.2",
"kind": "patch",
"published_at": "2026-07-16T11:27:18Z"
},
{
"tag": "v0.7.1",
"kind": "patch",
"published_at": "2026-02-05T09:40:24Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2026-01-03T05:40:08Z"
},
{
"tag": "v0.6.2",
"kind": "patch",
"published_at": "2025-12-31T06:50:04Z"
}
],
"recent_commits": [
{
"oid": "7b635a8318a1fd972c04d69f59306471815c33c9",
"body": "…panded tests\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "v0.7.2; code-review fixes, config validation, defensive hardening, ex…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T11:11:47Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "70086b33491c3c86395dc87290ea04a5df7c73b2",
"body": "…23/055/057)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "CHANGELOG: note config validation and type-safety hardening (CR-020/0…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T04:11:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "fbf2538a20d07e9008df94294106d485cc9dea13",
"body": "…ristic (CR-057)\n\n- LoadConfig now rejects duplicate names for node/interface/connection/\n group/segment classes and param_rules instead of silently keeping the\n last definition (a copy-paste name collision was previously a silent\n last-write-wins overwrite).\n- Fix the ParameterRule.SourceFile ma\n[…]\nle defines duplicate class names, so golden output is unchanged.\nAdded TestLoadConfig_DuplicateClassNames covering the new errors.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "config: detect duplicate class names, fix tag typo, document mgmt heu…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T04:09:43Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "64aa80a45872a0edb3447fd3bfb91cdfa77ca053",
"body": "- Cyclic-dependency and missing-dependency errors now report human-\n readable labels (e.g. \"template:alpha\", \"node:r1\") instead of the\n internal synthetic node IDs (template_0, namespacer_2). Added\n GetLabel() to the DependencyNode interface and both adapters, plus a\n DependencyGraph.labelFor he\n[…]\ng unchanged (the config-template and namespacer reordering\nbehaves identically); added a test asserting the readable cycle labels.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "dependency: readable cycle messages, defer-based visit cleanup (CR-037)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T04:07:01Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b3aaf9c4e79ce3745144b9c9eb8104e0ddf4f06f",
"body": "…5/056)\n\n- assignConnectionNames / assignSegmentNames: guard the ConnectionClass /\n SegmentClass type assertions with comma-ok so a class of an unexpected\n type is skipped instead of panicking, and document that GetClasses()\n returns classes in deterministic order (so \"first non-empty prefix\n wi\n[…]\nop propagating values to endpoint interfaces.\n\nBehavior-preserving (all class types are already correct); golden output\nunchanged.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "harden model build: naming type-safety and intent comments (CR-053/05…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T04:05:02Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9239abb435f1ebbb96fc0d57dd013c8f5974f061",
"body": "- getParameterCandidates (int): document the half-open [Min, Max) interval\n and the Max==0 \"unlimited\" convention, and reject a configured Max < Min\n instead of surfacing it only as a confusing \"not enough candidates\".\n- generateValueParamsFromSource (sequence): an empty (Start==End) or\n inverted\n[…]\ner rule that would\nhit the new errors, so golden output is unchanged. Added tests for the\nMax<Min / Max==0 / empty-sequence paths.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "harden parameter generation: bounds, sequence, docs (CR-020/023/024)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-16T04:03:36Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8f0b5d4ed0dcab2f23b1886e2d57126c56681fd2",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "CHANGELOG: note the expanded test suite (CR-070/075-081)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-15T10:37:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "194db14808a8ba8e442ff9f301b17c2b5914ba7c",
"body": "- definition_test.go: match generated module files by exact path instead\n of strings.HasSuffix, so \"spec.yaml\" no longer spuriously matches e.g.\n \"myspec.yaml\".\n- parameter_test.go: add TestGetParameterCandidates_IntegerBoundary\n pinning the exact [Min, Max) capacity boundary (cnt == Max-Min succ\n[…]\nteger capacity check\n(`<` -> `<=`): the exact-capacity boundary test failed; reverting\nrestored green. No production code changed.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "strengthen weak test assertions (CR-081)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-15T08:57:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b7bb11fddcd6ab1f13c623c131d157ea0336a9eb",
"body": "All example scenarios are success cases, so error handling in the\nDiagramFromDotFile -> LoadConfig -> BuildNetworkModel pipeline was never\nasserted. Add expected-failure tests:\n\n- Malformed DOT is rejected at parse time.\n- Malformed YAML is rejected at load time.\n- A node referencing an undefined no\n[…]\nse error\n(invalid-DOT test failed) and removing the ignore_undefined_class branch\n(lenient test failed); reverting restored green.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add failure-path e2e tests (CR-080)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:30:22Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9e7832430c1b664073a8cd6e9f52093366d34de8",
"body": "The only mod/ coverage was TestModuleSystemDefinitions, which asserts\ngenerated file names via HasSuffix and never inspects the content. Add\nstructural tests that parse the generated YAML for basic_ospfv2_frr:\n\n- containerlab topo.yaml: every model node appears with a non-empty\n kind and image; lin\n[…]\nb endpoint node\nname (appending \"X\"): the endpoint-references-real-node assertion failed\nfor every link; reverting restored green.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add module output structural tests for containerlab/tinet (CR-078)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:27:43Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "91b013a056a34e953a48d4bf3e4c1dcec10f23ce",
"body": "…CR-076)\n\npkg/visual was entirely untested (0.0% coverage). Add:\n\n- pkg/visual/dot_test.go (white-box): abbreviateIPAddress pass-through\n (documents the ABBREVIATE_IPADDRESS-disabled behavior, self-skips if\n the constant is ever flipped), and getInterfaceAddress success plus the\n error-message co\n[…]\n the enriched error in\ngetInterfaceAddress (node name / layer / \"<unknown>\" all vanished, tests\nfailed); reverting restored green.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add pkg/visual tests: pure funcs + GraphToDot/GetDataJSON structure (…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:25:21Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7ef288047a3be9cd2844c78f87e809b40bc8c89e",
"body": "The CLI layer had no tests, and CmdClean deletes files -- a bug in its\ntarget selection risks deleting user-authored files. Add end-to-end\ntests that run the real commandBuild/commandClean CLI actions in a temp\ndir:\n\n- TestCmdClean_DeletesOnlyGeneratedFiles: build a scenario, drop user\n files at to\n[…]\n removal to os.RemoveAll\n(force): the nested user file and its directory were wiped and the test\nfailed; reverting restored green.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add command_func_test.go: CmdClean deletion-safety e2e test (CR-077)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:22:07Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1b9efefe104cb924b9663386b82315cd6700f0d7",
"body": "…R-075)\n\nThe generic DependencyGraph[T] (topological sort + cycle detection) and\nreorderNameSpacers were only exercised indirectly through\nreorderConfigTemplates in format_test.go. Add direct tests:\n\n- Topological order: linear chain, diamond DAG, and deterministic\n ordering of independent nodes (g\n[…]\n\nrecovered prefix -> cycle tests fail) and removing the node-ID sort\n(independent-order test fails 5/5); reverting restored green.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add pkg/model/dependency_test.go: direct tests for DependencyGraph (C…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:18:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "c02951f396e3484a30e9f452bec09c83dd29944d",
"body": "Determinism is a core requirement but was only checked implicitly (a\nsingle build compared against committed golden files). Add an e2e test\nthat builds each of 5 map-iteration-heavy scenarios (vlan_multihost,\nbasic_clos, bgp_evpn_vxlan_topo1, basic_bgp, param_share) twice from a\nclean state and asse\n[…]\ned FileDefinitions slice:\nthe test failed on bgp_evpn_vxlan_topo1 across repeated runs; reverting\nrestored green (incl. -count=2).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add determinism e2e test comparing two independent builds (CR-079)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:12:59Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "736b397b4d97f965745b22a6892206c2cdf55d5f",
"body": "…-070)\n\npkg/types/object.go (largest file) had no dedicated unit test; its\ncross-object composition was only covered indirectly by the example\ngolden tests. Add table-driven unit tests pinning the high-risk paths\nflagged by the review:\n\n- Node.SetClasses value/prefix/mgmt conflict detection and comp\n[…]\npower verified by mutating the group-priority guard and the\nnode-prefix composition in the source (both caught). Golden unchanged.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add pkg/types/object_test.go: unit tests for object.go core logic (CR…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-11T01:08:45Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9689fbd2983f34d954b7a57b0abe9fd80b704f0e",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "CHANGELOG: CR-006 error propagation and ignore_undefined_class setting",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T06:51:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e1b66fd18f3c6ef286235e68a5f40c91eadb2fd0",
"body": "…R-006)\n\nUndefined class labels error by default (catches typos); set\nignore_undefined_class: true to skip them (e.g. subgraph display labels).\nbuildSkeleton now propagates group.SetLabels errors. Also corrects the\nconnection/group class error messages (part of CR-062).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add ignore_undefined_class switch; propagate group SetLabels error (C…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T06:50:51Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "531c09f115aeef00c11af612bf35977057384d16",
"body": "…space chain (CR-002/004)\n\nsetNode/InterfaceBaseRelativeNameSpace, Node/Interface/Neighbor.\nBuildRelativeNameSpace, and makeRelativeNamespace no longer discard the error\nfrom an unknown PlaceLabel referenced by a MetaValueLabel.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "propagate setMetaValueLabelNameSpace errors through the relative-name…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T05:38:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "545fbfdb29b8af0b77a346c75ed5fbd51e7f7f78",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "CHANGELOG: address calculation fixes and max_address_count setting",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T04:00:20Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "79c4408942ab321b24eb02220843b35838ea104a",
"body": "…r capacity (CR-019/018)\n\nReplace math.Pow(2,n) with log-order shift comparisons (never materialize 2^n,\ncorrect for IPv6). Full enumeration (cnt<=0) is capped by GlobalSettings.\nmax_address_count (default 65536), threaded as an int; unifies the previous\nhardcoded 10000 cap in getAvailablePrefix.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "bound address enumeration by configurable max_address_count; log-orde…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T03:59:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "709663c0ce07bc8b7154552244763fb7f9996a1d",
"body": "…serveAddr (CR-017/064)\n\nThe byte-wise subtraction underflowed for out-of-pool addresses, producing a\nbogus reservation index. reserveAddr now skips addresses outside the pool, and\nprefixToIndex uses big.Int (correct for IPv6-sized diffs, errors below range).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "compute prefixToIndex with big integers; skip out-of-pool addrs in re…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-07T02:33:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f3e9012a24e1676cf9f7e232ca11413bd906f748",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "CHANGELOG: record code-review bug fixes under Unreleased",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:12:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "362e5bc0d4db16ebfb73b12cf9af31a73a15b529",
"body": "…ddr error (CR-035/032/027)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "guard SplitN member/neighbor refs, empty clab endpoints, and visual a…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:10:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d4bb53b68224abcdd9f660b3767485c0797f1f9c",
"body": "…/group_ (CR-059)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix suggestAlternativeName returning the same reserved name for node_…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:07:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "50ba0d4b054b5fecc158caab8ac84d1f4372b045",
"body": "…029)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "return error instead of panic on ambiguous edges in MergeDiagram (CR-…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:05:47Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "86b12e00b20730d9cf6a400ceecac0b98cd2b8af",
"body": "bind mount source used the FileDefinition ID (Name) instead of the actual\ngenerated filename; they differ when NamePrefix/NameSuffix is set.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "use GetFileName for bind mount source path in tinet/clab (CR-015)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:03:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "55e933310ba53a0b7213c5d1499674d30896d67d",
"body": "…xpansion (CR-011/073)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "expand param_format templates instead of literal assignment; verify e…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T05:00:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2db5dcc48797543d2d9bd78d3d7afcb0e6d8ba66",
"body": "… (CR-018)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix shift overflow computing getAvailablePrefix bound for large pools…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T04:00:46Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b4479f2b56afa87cbbc03e18d32b4ae0f921bafd",
"body": "ifaces order is already deterministic (built from SortedNodes x interface\nslices); the SortKey reorder in CR-009/010 would change golden and is deferred.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "sort parameter rule keys for deterministic processing (CR-009 partial)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T03:41:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9f4201672fbda3fc22a4a86c258014e291f80431",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "sort subgraphs deterministically for group creation (CR-005)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T03:40:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "c573f7be624e071f5e3ada91e1c3fe14f6f47f95",
"body": "…em tests (CR-008/071)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix getitem carry loop dropping top byte and bits<=8 cases; add getit…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-06T03:35:39Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4be7efa762471d926edd673001147466b2492851",
"body": "…bels (CR-003/025)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "propagate discarded errors in place-label check and mgmt interface la…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-05T09:15:25Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d9086b0f53bcc663b3b39f1c9817dddf0ed8d490",
"body": "…ors (CR-013/022/028)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "guard visual nil node ref, file-candidate shortage, and DOT parse err…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-02T10:02:29Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "aa4ba51ffe86571d8d22ef47f707475b619e8cb2",
"body": "… tests (CR-007/072)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix NodeClassCheck copy no-op dropping plural classes; add regression…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-02T02:16:13Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4871f308787921ddd61bf710672d4d4347a4e0a7",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix nondeterministic link sort and file-list ordering (CR-001/033)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-02T01:50:28Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bf10fd364e455310cbf6f6b19b23390e13523bd6",
"body": "…-016/012/030)\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix argless panic, %w error wrapping, and MergeDiagram group drop (CR…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-07-02T01:48:03Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9766850d5d29a6ccdd0eb68f1c92df3038432a3f",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": ".gitignore: ignore .serena symlink, data/, heinzel",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-06-30T02:26:17Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6e34817ed759282594a7c3f62677ebe4dab99946",
"body": null,
"is_bot": false,
"headline": "v0.7.1; fix GroupClass/Group bugs, cleanup legacy code",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-02-05T09:38:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "faba1abd8f88dac8a6ac2ca3321fe259a6a6ba74",
"body": null,
"is_bot": false,
"headline": "fix Windows test by normalizing path separators",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-01-03T05:36:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b78a6b05bfc23132fbe16e85c706d115989ba3bd",
"body": null,
"is_bot": false,
"headline": "fix Windows path separator in bind mount generation",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-01-03T05:16:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "067ea98a2b1d102cfbc60ec9e25c676728276866",
"body": "…Windows CI/CD, etc.",
"is_bot": false,
"headline": "v0.7.0; Value class, FileDefinition output control, required_params, …",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2026-01-03T05:09:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6474cfc31f0e3604925bbd782701cd19b0b2687",
"body": null,
"is_bot": false,
"headline": "add gitignore",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-31T11:11:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a988e502be2494645e7c3ab89732172f0163256",
"body": null,
"is_bot": false,
"headline": "update CHANGELOG for v0.6.2",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-31T07:11:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8cce35730fea0f8048a4abb7a4ccfcea07919ed4",
"body": null,
"is_bot": false,
"headline": "v0.6.2; add GitHub Actions workflow for release automation",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-31T06:48:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65f1917e85ad12d638f319f4fd6d34d047593678",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-05T02:14:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "527824f8dcfab4753cdacf7b1ca919c137ce94d3",
"body": null,
"is_bot": false,
"headline": "v0.6.1; fix empty bindmounts in clab module",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-05T01:13:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6382f46403401c33878fa2cd6b5c53b89acf71bb",
"body": null,
"is_bot": false,
"headline": "v0.6.0; refactor FormatStyle and add blocks.before/after support",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-03T08:49:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37262f79673317ae4bb8685aaef406fac1fd4760",
"body": "🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix file listing based on FileGenerator classes",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-03T08:40:32Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e20d65efbbff52e78dc230f96e64981f67f87e19",
"body": null,
"is_bot": false,
"headline": "refactor FileFormat to FormatStyle with Format/Merge phase separation",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-12-03T06:00:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12b006a52f7f23284b4a05cde158fe3a464b8fee",
"body": null,
"is_bot": false,
"headline": "remove empty directory with clean subcommand",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-10-20T07:01:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83b2daea9b9cd8434be5812d67ef885f5740a5ec",
"body": null,
"is_bot": false,
"headline": "v0.5.1; fix bugs in connection/segment parameter assignment",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-17T09:19:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f681d180a57297c267a4efdeaeae9a03189277c",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-17T05:57:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b15394372794f6d30539507f9f41bc2e4da513c8",
"body": null,
"is_bot": false,
"headline": "v0.5.0",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-17T04:47:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "884e318168814da0fdd5ad659fa2237d44c325e8",
"body": null,
"is_bot": false,
"headline": "eliminate primary",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-15T11:06:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29069a80a455f2a167f6ea58810edfbec3da7750",
"body": null,
"is_bot": false,
"headline": "add clean subcommand",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-15T10:18:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "317ae2d2638309d4ee7ee1993be68fffb30e5e9d",
"body": null,
"is_bot": false,
"headline": "update vlan_multihost to test connection/segment",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-15T10:04:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84f27244b8c098fffee2e4f5cc034147e49e55f6",
"body": null,
"is_bot": false,
"headline": "change config block generation workflow",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-15T06:17:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25660d378166cbe851540adff609039ad8240082",
"body": null,
"is_bot": false,
"headline": "fix bugs in virtual objects and layers in interface classes",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-13T04:33:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ab0c5fc775a33de99aae2415d0c5be7c81ac830",
"body": null,
"is_bot": false,
"headline": "use generalized dependency graph imple for reorderConfigTemplates",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-12T06:38:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26b7047d76508cd6f4edad662b75d1b527fcfc54",
"body": null,
"is_bot": false,
"headline": "fix bug in golden test",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-11T06:04:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9619ab36bf57d4308cbb42e5775d74289ada32f",
"body": null,
"is_bot": false,
"headline": "add golden test for example scenarios",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-11T02:01:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6aa0cc442108b8815acbe441b5267413372c0ca",
"body": null,
"is_bot": false,
"headline": "add tutorial",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-04T00:42:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "638bdb991e1d416f037f17045804481e9dad9213",
"body": null,
"is_bot": false,
"headline": "v0.4.1; fix missing bindmounts in clab module",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-09-03T06:45:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec5acbdbee67a52f32aafe49bce159433ff1552e",
"body": null,
"is_bot": false,
"headline": "Merge branch 'master' of github.com:cpflat/dot2net",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-08-16T08:13:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "167d85930e45b13700cba28d12e5cc8ddb9dc358",
"body": "… previous versons",
"is_bot": false,
"headline": "v0.4.0; major changes on combining templates; lose compatibility with…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-08-16T08:12:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f912fce73ad519ac0e1494cf8189c8a86ef2db93",
"body": null,
"is_bot": false,
"headline": "Update readme.md",
"author_name": "Satoru Kobayashi (sat)",
"author_login": "cpflat",
"committed_at": "2025-07-12T15:54:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3929b60a28923532495845ed2eafc44e609fcc93",
"body": null,
"is_bot": false,
"headline": "Update readme.md for dot2net tutorial",
"author_name": "Satoru Kobayashi (sat)",
"author_login": "cpflat",
"committed_at": "2025-07-12T15:10:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9a5b9f893a91558d1469d52f04751e99c201983",
"body": null,
"is_bot": false,
"headline": "update formatting config files",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-03-18T01:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "227538f88b306f6a4d300dae6875212c0c178f2a",
"body": null,
"is_bot": false,
"headline": "large changes related to template nesting and modules",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2025-02-08T03:32:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd27f09a16c40c3f77fddc4c56a88ba6429c5679",
"body": null,
"is_bot": false,
"headline": "minor fix on scripts",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2024-12-29T04:15:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a07cc82cc818095b3d01ef2fa1b8b5651814bc8",
"body": null,
"is_bot": false,
"headline": "add reference; add LICENSE file (add wasure)",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2024-04-25T01:43:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b18edd98fc10b335291bf2ab3cef4ff636e06d09",
"body": null,
"is_bot": false,
"headline": "v0.3.5; add profiling; typo in license filename; minor fix in examples",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2024-04-19T03:30:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5eede5b0d2ae4f90fee0e644baacb39728e3fa9",
"body": null,
"is_bot": false,
"headline": "add example vlan_multihost",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-09-21T02:10:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "028094c3ccdb9291b95b6a46006c820bf9d85307",
"body": null,
"is_bot": false,
"headline": "v0.3.4; assign seg/conn parameters only for parameter-aware objects",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-09-20T08:48:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64956ce61b617755a693b30fbdb8e0d11d117fb5",
"body": "…ple param_share",
"is_bot": false,
"headline": "v0.3.3; support per-connection customizable parameter rules; add exam…",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-09-20T07:10:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f85bbead9c15928228bfdeee9143e0f3f307534",
"body": null,
"is_bot": false,
"headline": "v0.3.2; support per-segment customizable parameter rules",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-08-03T03:49:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a3a8a045d460abcc52ad27b4ef3723883776f3c",
"body": null,
"is_bot": false,
"headline": "v0.3.1; add customizable integer rules",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-07-25T06:55:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b40a9a0c8f7e76d5aa7d367cf329a728c2bf1c0",
"body": null,
"is_bot": false,
"headline": "v0.3.0; ipspace->layer+ippolicy, add subcommand data, update examples",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-07-14T04:10:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d542558ec616003bb166f238c9b63fa6686cd86",
"body": null,
"is_bot": false,
"headline": "v0.2.5; fix bugs; name dot2tinet to dot2net",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-06-23T04:01:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8118d656fd8087b7706388a7fbae96ee8490b725",
"body": null,
"is_bot": false,
"headline": "v0.2.4; fix bug of debug output for visual; minor fixes",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-06-12T09:27:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3fc2648a22ac52592be2af5ca94d591cc31b9bde",
"body": null,
"is_bot": false,
"headline": "v0.2.3; add classmember; add example",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-30T13:35:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "320b40327e44341c459a0279aecf1b56a23151de",
"body": null,
"is_bot": false,
"headline": "add missing files",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-18T08:24:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16297e0a13d2f521d4323e679354070534bb2cf5",
"body": null,
"is_bot": false,
"headline": "v0.2.2; add visual; add neighbors; update examples",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-18T08:15:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5c7e8ca59353865a4f8524f237af3341a77fa1b",
"body": null,
"is_bot": false,
"headline": "add missing required files",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-11T01:42:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca96eca554d77cc94ef94effbc77b0a4322cad7a",
"body": null,
"is_bot": false,
"headline": "add missed example; add example readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-11T01:28:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65f176495477056703495d082c3575c44793e0aa",
"body": "…fix bug in IPAware flag management",
"is_bot": false,
"headline": "v0.2.1; support multiple file output; change priority specification; …",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-05-11T01:20:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69b5b6fc7b4aa51b9b3ca9364670b2c147306fbf",
"body": null,
"is_bot": false,
"headline": "v0.2.0; use gographviz; support group; note: may lose compatibility",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-03-22T05:29:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c5a3a56f9b911b91a06fa1ed059438ec9ef719e",
"body": null,
"is_bot": false,
"headline": "mod examples",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-01-20T07:00:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef7cf53cdc814a8f94336b182818234cf84a3cd3",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-01-18T09:19:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7cc77e5d875702e859e3d01e6c136f3fbfc5b2be",
"body": null,
"is_bot": false,
"headline": "v0.1.0; containerlab support; multiple ipspaces; primary classes",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2023-01-18T08:59:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55f158349fb6d1cec5cc527804959ca3238461f5",
"body": null,
"is_bot": false,
"headline": "multiple ipspace for ip dualstack and tunneling",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-12-29T15:04:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e03067ef6fde2e4b6d0d1423aaa34ba6a4e38a1",
"body": null,
"is_bot": false,
"headline": "add clab support",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-12-28T12:25:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e69bd510cf6d3b2493b523936b79cb2070789b0",
"body": null,
"is_bot": false,
"headline": "add figure for readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-12-16T06:18:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccaf21f27a081f913b1014f527ddc788c1e80080",
"body": null,
"is_bot": false,
"headline": "v0.0.2; support IP address reservation by value labels",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-12-16T06:13:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0749181dca329a8a86d9b3b334b9d812b3cc4728",
"body": null,
"is_bot": false,
"headline": "mod readme",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-09-07T06:00:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cfaa037343a1550020dde2b911b8b151f4a80f9",
"body": null,
"is_bot": false,
"headline": "support multigraph; add extended labels",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-09-07T03:52:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "999e265acb9e7083879c8178c3f5488e9f1e8035",
"body": null,
"is_bot": false,
"headline": "init",
"author_name": "sat",
"author_login": "cpflat",
"committed_at": "2022-09-05T07:44:45Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 65,
"latest_release_at": "2026-07-16T11:27:18Z",
"latest_release_tag": "v0.7.2",
"releases_from_tags": false,
"days_since_last_push": 11,
"active_weeks_last_year": 11,
"days_since_latest_release": 11,
"mean_days_between_releases": 65.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/cpflat/dot2net",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/cpflat/dot2net",
"is_deprecated": false,
"latest_version": "v0.7.2",
"repository_url": "https://github.com/cpflat/dot2net",
"versions_count": 24,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-16T11:11:47Z",
"latest_version_yanked": null,
"days_since_latest_publish": 11
}
]
},
"popularity": {
"forks": 1,
"stars": 9,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2024-02-19",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example"
],
"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": 66607,
"source_files_sampled": 39,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "0.4.0",
"severity": "critical",
"ecosystem": "go",
"cvss_score": 10,
"advisory_ids": [
"GHSA-45gg-vh54-h5m9",
"GHSA-45x7-px36-x8w8",
"GHSA-5cgq-3rg8-m6cv",
"GHSA-78mq-xcr3-xm33",
"GHSA-89gr-r52h-f8rx",
"GHSA-9m57-25v3-79x9",
"GHSA-f5wc-c3c7-36mc",
"GHSA-f6x5-jh6r-wrfv",
"GHSA-hcg3-q754-cr77",
"GHSA-j5w8-q4qc-rx2x"
],
"fixed_version": "3.4.0",
"advisory_count": 38,
"oldest_advisory_days": 952
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "0.5.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 66
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 1,
"critical": 1
},
"advisory_count": 39,
"affected_count": 2,
"assessed_count": 14,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/awalterschulze/gographviz",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.0.3+incompatible"
},
{
"name": "github.com/deckarep/golang-set/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.2.0"
},
{
"name": "github.com/goccy/go-yaml",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.5"
},
{
"name": "github.com/google/go-cmp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.7.0"
},
{
"name": "github.com/urfave/cli/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.11.1"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/deckarep/golang-set/v2",
"direct": true,
"version": "2.2.0",
"ecosystem": "go"
},
{
"name": "github.com/goccy/go-yaml",
"direct": true,
"version": "1.9.5",
"ecosystem": "go"
},
{
"name": "github.com/google/go-cmp",
"direct": true,
"version": "0.7.0",
"ecosystem": "go"
},
{
"name": "github.com/urfave/cli/v2",
"direct": true,
"version": "2.11.1",
"ecosystem": "go"
},
{
"name": "github.com/cpflat/gographviz",
"direct": false,
"version": "0.0.0",
"ecosystem": "go"
},
{
"name": "github.com/cpuguy83/go-md2man/v2",
"direct": false,
"version": "2.0.2",
"ecosystem": "go"
},
{
"name": "github.com/fatih/color",
"direct": false,
"version": "1.13.0",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-colorable",
"direct": false,
"version": "0.1.12",
"ecosystem": "go"
},
{
"name": "github.com/mattn/go-isatty",
"direct": false,
"version": "0.0.16",
"ecosystem": "go"
},
{
"name": "github.com/russross/blackfriday/v2",
"direct": false,
"version": "2.1.0",
"ecosystem": "go"
},
{
"name": "github.com/xrash/smetrics",
"direct": false,
"version": "0.0.0-20201216005158-039620a65673",
"ecosystem": "go"
},
{
"name": "golang.org/x/crypto",
"direct": false,
"version": "0.4.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": false,
"version": "0.5.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/xerrors",
"direct": false,
"version": "0.0.0-20220609144429-65e65417b02f",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 14,
"direct_count": 4,
"indirect_count": 10
}
},
"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": "cpflat",
"commits": 97,
"avatar_url": "https://avatars.githubusercontent.com/u/3687158?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"release.yaml"
],
"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": 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": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": 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": 0,
"reason": "21 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "7b635a8318a1fd972c04d69f59306471815c33c9",
"ran_at": "2026-07-28T00:32:06Z",
"aggregate_score": 3,
"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-16T11:27:20Z",
"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/cpflat/dot2net",
"host": "github.com",
"name": "dot2net",
"owner": "cpflat"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 44,
"vitality": 71,
"community": 31,
"governance": 38,
"engineering": 56
},
"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": 63,
"inputs": {
"commits_last_year": 65,
"human_commit_share": 1,
"days_since_last_push": 11,
"active_weeks_last_year": 11
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 11 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 11
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "11/52 weeks with commits",
"points": 7.6,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 11
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "65 commits in the last year",
"points": 16.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 65
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 83,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v0.7.2",
"releases_from_tags": false,
"days_since_latest_release": 11,
"mean_days_between_releases": 65.7
},
"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 11 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 11
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~65.7 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 65.7
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 11,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 11 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 11
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 31,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 15,
"inputs": {
"forks": 1,
"stars": 9,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "9 stars",
"points": 14.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 9
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 38,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 16,
"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 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"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": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 50,
"inputs": {
"followers": 13,
"owner_type": "User",
"is_verified": null,
"owner_login": "cpflat",
"public_repos": 24,
"account_age_days": 4901
},
"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": "13 followers of cpflat",
"points": 8.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 13,
"login": "cpflat"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "24 public repos, account ~13 yr old",
"points": 22.2,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 24
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/cpflat/dot2net"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 11
},
"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 11 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 11
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "24 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 24
}
}
],
"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": 56,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"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": 60,
"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": "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": 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": "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": 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": "at_risk",
"name": "Security",
"value": 44,
"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. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 30,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3
},
"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 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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": "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": "21 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"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 14 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": 14
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 39,
"affected_packages": 2,
"assessed_packages": 14,
"unassessed_packages": 0,
"affected_by_severity": "critical 1, unknown 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "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": 14,
"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
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 52,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.309,
"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": "30 of 97 human commits state their intent (structured subject or explanatory body)",
"points": 16.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 30,
"sampled": 97
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 66,
"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.392,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"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": "38 of the last 97 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 38,
"sampled": 97
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 66607,
"source_files_sampled": 39,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/39 source files over 60KB",
"points": 53.6,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 39,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "example",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-28T00:32:10.176029Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/c/cpflat/dot2net.svg",
"full_name": "cpflat/dot2net",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}