Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 2232,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 476474,
"Shell": 17540,
"Makefile": 691,
"Dockerfile": 992
},
"pushed_at": "2026-07-17T22:16:05Z",
"created_at": "2026-07-17T19:13:13Z",
"owner_type": "Organization",
"updated_at": "2026-07-17T19:13:14Z",
"description": "Simple Golang iSCSI Target framework",
"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": null,
"name": "AppMana",
"type": "Organization",
"login": "AppMana",
"company": null,
"location": null,
"followers": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/84285505?v=4",
"created_at": "2021-05-16T17:15:48Z",
"is_verified": null,
"public_repos": 105,
"account_age_days": 1892
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.2.2",
"kind": "patch",
"published_at": "2022-12-13T01:57:15Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2021-08-17T04:44:56Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2020-07-14T14:11:11Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2019-11-22T01:41:00Z"
}
],
"recent_commits": [
{
"oid": "7f708d0cf94501c169846651ecf14812356eb96f",
"body": "fix: remove dead sessions from target session list",
"is_bot": false,
"headline": "Merge pull request #132 from gostor/fix/remove-dead-sessions",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-17T07:10:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7b58b8eb3f07b8d0a0612a53839fbc3b3a0a82a",
"body": "Discovery sessions have nil Target and nil ITNexus. The cleanup\npath crashed with nil pointer dereference when trying to remove\nITNexus or access Target.Sessions for discovery sessions.\n\nGuard against nil Target (just release TSIH) and nil ITNexus.\nAlso add nil safety to clearHostIP helper.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: handle discovery sessions in UnBindISCSISession",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-17T07:01:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "be3cad5aba3b7163e53d61c6282bb7248b301560",
"body": "Restore CurrentHostIP cleanup on connection close (needed for\nblockMultipleHostLogin feature). Extract to clearHostIP helper\nto reduce duplication.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: extract clearHostIP helper and restore IP cleanup on close",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-17T06:54:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8ffe5ec5ce257bd3ade7e77f9e7d1eb3722df836",
"body": "When a new login arrives while the previous connection's async cleanup\nis still running, LookupISCSISession finds the stale session but\nLookupConnection returns nil (old connection already closed). This\ncaused a nil pointer dereference when accessing existConn.session\nduring session reinstatement.\n\n\n[…]\none instead.\n\nAlso add sync.Once to removeConnectionFromSession to prevent\nconcurrent goroutine and main-path cleanup from racing.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: prevent nil deref on session reinstatement during cleanup race",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-17T06:37:16Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b7e5c4a7d22ffb2156cf2ba37775c563c574c1ee",
"body": "Move session cleanup out of iscsiExecLogout() and keep it only in\nthe CONN_STATE_CLOSE handler. The logout response must be fully sent\nbefore the session is removed; cleaning up during logout causes the\ndaemon to hang because subsequent operations reference a nil session.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: defer session cleanup to connection close, not logout",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-17T06:11:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "70e1955487f1ae0d4648fe9bc388568163745c44",
"body": "When an iSCSI connection closes or a logout occurs, the associated\nsession was never removed from the target's Sessions map, and the\nTSIH was never released back to the bitmap allocator. This caused\nsession and TSIH leaks over repeated connect/disconnect cycles.\n\nChanges:\n- Add removeConnectionFromS\n[…]\nut to a method and add session cleanup on logout\n- Release TSIH in UnBindISCSISession to prevent TSIH bitmap exhaustion\n\nFixes #42\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: remove dead sessions from target session list",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-16T09:22:01Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a75e34e9d38d06bf95a96b6c9719e0d97a748179",
"body": "feat: add S3-compatible object storage backend",
"is_bot": false,
"headline": "Merge pull request #131 from gostor/feat/s3-backend-store",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-16T09:03:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76ab15b0df1bb3731c41877fd693b24c9ec8adbd",
"body": "Add a new backend store that enables iSCSI targets backed by\nS3-compatible object storage (AWS S3, MinIO, Ceph RGW, etc.).\n\nThe implementation uses a chunked storage strategy where the virtual\nblock device is divided into fixed-size chunks (default 4 MiB), each\nstored as an independent S3 object. Th\n[…]\nit tests + 2 integration tests\n\nAlso updates CI workflow to run S3 backend tests and updates\nREADME with S3 backend documentation.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add S3-compatible object storage backend",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-16T08:22:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "67950263a3cdea31d1e079c4a1455941aed9193d",
"body": "ci: add CLI management tests for target, LU, and TPGT commands",
"is_bot": false,
"headline": "Merge pull request #130 from gostor/ci/add-cli-management-tests",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:55:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a2af97a2617656f1b54da479b78c2e53549c906",
"body": "Go's json.Encode outputs null for nil slices. Handle both null and\nempty array in the LU removal verification.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: handle null response when LU list is empty after deletion",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:52:58Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d8210c935ad3b19ab797f62ae9fa82fc242dfe7a",
"body": "The SCSILu.Path field is not populated during LU creation, so grep\nfor the file path won't work. Use python3 JSON validation to check\nthe array length instead.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: fix LU verification to check array length instead of path",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:49:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4beb2520aa3e6583f2a4701e87518f638221b240",
"body": "The gotgt CLI client prepends /v{version}/ to API paths, but when built\nfrom untagged commits the version is a git SHA that doesn't match the\nserver's version route regex. Use curl to hit the API directly instead.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: use curl for API tests to avoid client version routing issue",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:46:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "713e063a5dcc0beeabb8c624e7b1105d975ca7a1",
"body": "Add a new \"CLI management test\" step to the CI pipeline that exercises\nthe full lifecycle of the new management commands against a running\ndaemon:\n\n- list target / list lu / list tpgt (read existing config)\n- create target -> verify in list\n- create lu -> verify in list\n- rm lu -> verify removed\n- rm target -> verify removed\n\nEach step validates output with grep assertions so failures are\nimmediately visible.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: add CLI management tests for target, LU, and TPGT commands",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:40:31Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d0ec4ba6e22e5cc4511d147c2668ddadab979db7",
"body": "CI passed - all checks green",
"is_bot": false,
"headline": "Merge pull request #129 from gostor/feat/cmd-manage-targets-luns-tpgt",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:33:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93e1476a0fd0d99befa4f2dacbfef7dd158b3ccc",
"body": "- Fix target delete URL path mismatch (/targets/ -> /target/)\n- Implement target create/delete server handlers with proper validation\n- Add DeleteTarget method with force flag and mutex locking to SCSITargetService\n- Implement full LU management: create/list/delete through CLI, client, and server\n- Add TPGT list command to show target portal group tags\n- Add unit tests for target/LU router handlers and SCSI service\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement cmd management for targets, LUNs, and TPGTs (fixes #36)",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T12:30:47Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bbd373ba0e2edfca01014e12efd3c465a348d50c",
"body": "add end-to-end IO benchmarks and fix pprof-identified hotspots",
"is_bot": false,
"headline": "Merge pull request #128 from gostor/perf/benchmark-and-pprof",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T11:46:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5628f4ec0918fe9fc12d3dd39e2998e12752b7c",
"body": "Add comprehensive benchmark suite (io_bench_test.go):\n- BenchmarkEndToEndRead/Write: full SCSI stack (512B to 256KB)\n- BenchmarkEndToEndReadParallel/WriteParallel: concurrent IO\n- BenchmarkFileBackingStoreRead/Write: isolated backing store\n\npprof-guided optimizations:\n- Guard hot-path log.Debugf wit\n[…]\nad\n directly into InSDBBuffer, eliminating allocation + copy\n\nResults (256KB reads): +42% throughput, allocs reduced from 10 to 5\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "add end-to-end IO benchmarks and fix pprof-identified hotspots",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T11:41:48Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "87c25cf5cd32092313f0c8a615f65aa2a27594e3",
"body": "optimize performance: reduce allocations, buffered I/O, zero-copy reads",
"is_bot": false,
"headline": "Merge pull request #127 from gostor/perf/reduce-alloc-and-copies",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T11:07:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16108ced954d1c517f5beb37f7158b16f7c0ec93",
"body": "… reads\n\n- Read path: eliminate redundant allocation in bsPerformCommand - remove\n the pre-allocation before bs.Read() and the append loop for zero-fill,\n use direct copy and in-place zero-fill instead\n- parseHeader: use command pool (getCommand) instead of direct allocation,\n reducing GC pressur\n[…]\nI/O: add 256KB bufio.Writer to iSCSI connections, batching\n small PDU writes into fewer syscalls. Flush after txHandler completes\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "optimize performance: reduce allocations, buffered I/O, and zero-copy…",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T11:03:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "729b450ac9baeebe79de6f21593a1c1c2e22e8a5",
"body": "fix regex, remove unsafe pointer usage, and add graceful HTTP shutdown",
"is_bot": false,
"headline": "Merge pull request #126 from gostor/fix/unsafe-regex-shutdown",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:54:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "633b84009c4d02459e2f68da56a83e06ecfbc408",
"body": "gorilla/mux explicitly rejects capturing groups () in route regexps,\nonly non-capturing groups (?:) are allowed. The original regex was\nmissing the ? to make -dirty optional.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix versionMatcher: use non-capturing group (?:-dirty)? for gorilla/mux",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:51:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "549f0cb46019578e3b0c8d75dc8088f8e14c1118",
"body": "Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix gofmt import ordering",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:30:49Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f1cec4f5d439589ab5588fe3a8dcdc6c806774e3",
"body": "- Fix versionMatcher regex: gorilla/mux does not support (?:) syntax,\n and -dirty suffix was required instead of optional\n- Replace unsafe.Pointer LUN casts with binary.LittleEndian.Uint64\n in sbc.go, scsi.go, and target.go\n- Implement graceful HTTP server shutdown with 5s timeout using\n srv.Shut\n[…]\nerwriting\n- Add early context cancellation check in Do() to fail fast\n\nBased on review of PR #120 by @orzhang, with fixes applied.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix regex, remove unsafe pointer usage, and add graceful HTTP shutdown",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:27:56Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "345b8b25079de84325f95d3742e58253e5dc18f1",
"body": "…atch1\n\nsupport more SCSI commands (batch 1): ReadDefectData, Sanitize, expanded CI",
"is_bot": false,
"headline": "Merge pull request #125 from gostor/feat/support-more-scsi-commands-b…",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:17:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2f1607fe7a4f40da611d55ca79b6af7ff2b1dc5",
"body": "The OneCommand test expects CDB usage data in REPORT_SUPPORTED_OPCODES\nresponse which is not fully implemented yet.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "remove ReportSupportedOpcodes.OneCommand test (CDB length issue)",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:14:20Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "474a7b8eace2a64082380919aac49818f0ddef7a",
"body": "…ndWrite)\n\nThese tests cause gotgt to hang in CI when the command triggers\nan unexpected write-path state. Keep ReadDefectData tests which\nare read-only and confirmed working.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "remove CI tests that may cause hangs (OrWrite, GetLBAStatus, CompareA…",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T10:08:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "233019577f511595daedc81d0f9576e11d2b97cf",
"body": "PR write-path sense data propagation needs separate investigation.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "mark all Persistent Reservation tests as non-fatal",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T05:22:54Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d06ad7ca7f4ee2bd662af1cf7341ab7883aa2257",
"body": "PROUT write-path sense data propagation needs investigation.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "mark ProutRegister/ProutReserve tests as non-fatal",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T05:20:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "36149cd4a91441123e58b1e5e3a1b7ea265df6f9",
"body": "New SCSI commands implemented:\n- READ DEFECT DATA(10/12): returns empty defect list (virtual device)\n- SANITIZE: supports OVERWRITE and BLOCK ERASE (zeros all blocks)\n- EXTENDED COPY / RECEIVE COPY RESULTS: registered as unsupported\n\nNew unit tests for ReadDefectData10/12, Sanitize, and command regi\n[…]\nrite (Simple, BeyondEol, ZeroBlocks)\n- GetLBAStatus (Simple, BeyondEol)\n- ReportSupportedOpcodes (OneCommand)\n\nPartial fix for #55\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "support more SCSI commands: ReadDefectData, Sanitize, and expanded CI",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T05:06:35Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3c41cd619b7011f169704a7ed8c305b046a25d3c",
"body": "fix UNMAP data corruption by implementing block zeroing",
"is_bot": false,
"headline": "Merge pull request #123 from gostor/fix/unmap-data-corruption",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T04:31:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00d0c3a3063aff9fd98cf868e39b1a484ca6eed4",
"body": "The UNMAP command was a no-op in all backing stores, causing unmapped\nblocks to retain stale data instead of returning zeros per SCSI spec.\n\n- Implement Unmap in FileBackingStore to zero out unmapped blocks\n- Implement Unmap in IOUringBackingStore to zero out unmapped blocks\n- Enable Unmap in RemBac\n[…]\nom uint32 to uint64 to prevent\n integer overflow when converting block count to byte length with\n large block shifts\n\nFixes #119\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix UNMAP data corruption by implementing block zeroing",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T04:29:12Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ee49f63b792222ce041e8799789eb492d237960e",
"body": "…mpliance\n\nfix critical bugs and improve iSCSI protocol compliance",
"is_bot": false,
"headline": "Merge pull request #122 from gostor/fix/critical-bugs-and-protocol-co…",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T04:18:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2776dc5c2a67f2b046c44d2b085b93e69d6dd1a",
"body": "- Fix nil pointer dereference in BindISCSISession when existSess is nil\n- Fix reversed logic in SPCLuOffline/SPCLuOnline (Online flag was swapped)\n- Use negotiated MaxXmitDataSegmentLength for response PDU segmentation (issue #41)\n- Fix debug log incorrectly using Warn level in SBCGetLbaStatus\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix critical bugs and improve iSCSI protocol compliance",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T04:11:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2bfc4cae7de3d2cf4d9b991ca379186fb0ef5255",
"body": "support more features",
"is_bot": false,
"headline": "Merge pull request #121 from gostor/dev",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T03:49:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00cfac3d2410456edc5c05ecffaad5dfa15d1f2a",
"body": null,
"is_bot": false,
"headline": "optimize the perf and support more features",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2026-03-14T03:45:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e7ebacd9ddae0cf9d787f23bc4354c2ec50d598",
"body": "fix some issues",
"is_bot": false,
"headline": "Merge pull request #116 from march1993/master",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2023-04-19T01:17:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6cf150e950179d199d56c032d72f7cd1a5d9854",
"body": null,
"is_bot": false,
"headline": "fix some issues",
"author_name": "Wenhua Shi",
"author_login": "march1993",
"committed_at": "2023-04-17T11:29:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5fec6b24ded50246eb3823440eddb06fb246b22",
"body": "add target port as command flag",
"is_bot": false,
"headline": "Merge pull request #114 from gostor/daemon_port",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-13T01:57:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d94641a8d7c6c737f8e0108ac79f40993799b13e",
"body": null,
"is_bot": false,
"headline": "add target port as command flag",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-13T01:49:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cec09381862aecae7271f21377da27b1dd1103bc",
"body": "fix part of golint",
"is_bot": false,
"headline": "Merge pull request #112 from gostor/golint",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-11T02:08:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5834be72b330390d57d7f937a79f65fb7f6c7b51",
"body": null,
"is_bot": false,
"headline": "update README.md",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-11T02:03:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c9f8d3e06623972737f47ae0a205aa283f3356e",
"body": null,
"is_bot": false,
"headline": "fix part of golint",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-11T01:59:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6ab29e84227210d7ab7b3b462f42b1f3be14193",
"body": "configure github actions",
"is_bot": false,
"headline": "Merge pull request #111 from gostor/github-action",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T14:46:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7fb6876ad4122b184ed59c07b6d6285c4653450",
"body": null,
"is_bot": false,
"headline": "update README.md",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T14:43:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "937b9379f93f56092d01779e203750163baed9d5",
"body": null,
"is_bot": false,
"headline": "switch from travis to github actions",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T14:38:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a3e19f0c9993c2b9052503071ff104616248a2c",
"body": null,
"is_bot": false,
"headline": "fix daemon 's host flag",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T14:05:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d92d540c52817c0b561cb66780d5084175309a76",
"body": null,
"is_bot": false,
"headline": "gofmt -s",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T13:05:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1c52d71602224c00c70fe48350068559c3cd6b9",
"body": "fmt/gomod update",
"is_bot": false,
"headline": "Merge pull request #110 from gostor/dev1",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-10T12:34:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7745d3ae3bd28dc1f29ae19193a1815eb62c954e",
"body": null,
"is_bot": false,
"headline": "compile with 'ceph' flag to enable/disable cephstore",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-08T09:51:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "698eb1bb4077d01a9a76eb96cda9152a771b788d",
"body": null,
"is_bot": false,
"headline": "fmt/gomod update",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-08T09:27:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82b42798eeadb7868426a45c234cc55e9c02f08f",
"body": "Add support for block device storage endpoints.",
"is_bot": false,
"headline": "Merge pull request #103 from jeremy-gill/master",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2022-12-08T09:22:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5d5366e2b591a33a96fc14b2a890dbe0a7ad1db",
"body": "fix(state): reset the CurrentHostIP on closed iscsi connection",
"is_bot": false,
"headline": "Merge pull request #108 from prateekpandey14/handle-connection-state",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2021-08-17T04:44:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22c2b95d8f7880ab9a632a52846fc073d896e57d",
"body": "Signed-off-by: prateekpandey14 <prateekpandey14@gmail.com>",
"is_bot": false,
"headline": "fix(state): reset the CurrentHostIP on closed iscsi connection",
"author_name": "prateekpandey14",
"author_login": "prateekpandey14",
"committed_at": "2021-08-16T15:24:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fe48c7708fa02766c42a52a23b20fab4c535cf1",
"body": "Add flag to disable login on multiple hosts",
"is_bot": false,
"headline": "Merge pull request #106 from shubham14bajpai/login",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2021-07-01T10:31:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1beca4d230112047b368135aa9365bfd2275926d",
"body": "Signed-off-by: shubham <shubham.bajpai@mayadata.io>",
"is_bot": false,
"headline": "add flag to gotgt command",
"author_name": "shubham",
"author_login": "shubham14bajpai",
"committed_at": "2021-07-01T09:42:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b278ab3133cf4d01c04aba68199052a8b8113308",
"body": "Signed-off-by: shubham <shubham.bajpai@mayadata.io>",
"is_bot": false,
"headline": "Add flag to disable login on multiple hosts",
"author_name": "shubham",
"author_login": "shubham14bajpai",
"committed_at": "2021-06-29T15:45:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8468ecec8cb314da7aeb8ff9f317ab02a5c6610",
"body": null,
"is_bot": false,
"headline": "Resolve travis-ci / gofmt issue with common.go",
"author_name": "Jeremy Gill",
"author_login": null,
"committed_at": "2020-12-15T16:26:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b433a89c6dc246f2bcf2a9217d37fe4c3fb85cc",
"body": "fix(stats): concurrent map iteration and map write",
"is_bot": false,
"headline": "Merge pull request #104 from payes/fix-race",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-12-08T04:02:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5e3c09febbb1195e29384a9eb5c95721a1e0cda",
"body": "Signed-off-by: Payes Anand <payes.anand@mayadata.io>",
"is_bot": false,
"headline": "nit: remove unnecessary if-else block",
"author_name": "Payes Anand",
"author_login": "payes",
"committed_at": "2020-12-06T08:14:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec418673cba06710e6feb0c5d398cb9890bc4eb1",
"body": "Signed-off-by: Payes Anand <payes.anand@mayadata.io>",
"is_bot": false,
"headline": "fix: concurrent map iteration and map write",
"author_name": "Payes Anand",
"author_login": "payes",
"committed_at": "2020-12-05T09:21:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "228e53351da64cdfe436260eec116c30e67d22d5",
"body": null,
"is_bot": false,
"headline": "Add support for block device storage endpoints.",
"author_name": "Jeremy Gill",
"author_login": null,
"committed_at": "2020-09-04T17:28:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4d57bede22a5b9a33f7339f86989d7390f0af7a",
"body": "add version",
"is_bot": false,
"headline": "Merge pull request #102 from carmark/version",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-07-14T14:11:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e5cea1bd036d0a97a216cd91ae82899b6fd485e",
"body": "Signed-off-by: Lei Xue <vfs@live.com>",
"is_bot": false,
"headline": "add version",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-07-14T14:04:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db3093d24bd47cefa73fb9469060b5f885e53faa",
"body": "remove golang 1.12 version in travis-ci",
"is_bot": false,
"headline": "Update .travis.yml",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-07-14T13:51:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c08da2d7859738d911108aeea2dca850c066fe0f",
"body": "remove go dep",
"is_bot": false,
"headline": "Update .travis.yml",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-07-14T13:40:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be28a04ce2bbf04613aa9800363dc2488f383419",
"body": "switch Go Modules",
"is_bot": false,
"headline": "Merge pull request #101 from whywaita/feat/go-modules",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2020-07-14T12:33:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "361386bdf996d47c8c44868ab252ba55c9eda085",
"body": null,
"is_bot": false,
"headline": "Makefile use Go modules",
"author_name": "whywaita",
"author_login": "whywaita",
"committed_at": "2020-07-14T06:27:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0771f0c3030ab17de23d1824f9c1d40713030531",
"body": null,
"is_bot": false,
"headline": "bump up buildable version",
"author_name": "whywaita",
"author_login": "whywaita",
"committed_at": "2020-07-14T06:16:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a955929ad5773e2ae8574750ab65b403ab3f0ce",
"body": null,
"is_bot": false,
"headline": "switch Go modules",
"author_name": "whywaita",
"author_login": "whywaita",
"committed_at": "2020-07-14T06:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48fe2a9b6ed05597c027fdc34c735198586dc8ee",
"body": "iscsit: support AuthMethod=None security negotiation",
"is_bot": false,
"headline": "Merge pull request #100 from hugelgupf/security",
"author_name": "Le Zhang",
"author_login": "orzhang",
"committed_at": "2020-01-22T07:15:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6af024c2e322c8f831fc451fadc682e4de009a20",
"body": "Signed-off-by: Chris Koch <chrisko@google.com>",
"is_bot": false,
"headline": "iscsit: support AuthMethod=None security negotiation",
"author_name": "Chris Koch",
"author_login": "hugelgupf",
"committed_at": "2020-01-22T06:45:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f1d32710a93615f77916110673a8cf59a90a3d6",
"body": "Add unit test and rm conn.close",
"is_bot": false,
"headline": "Merge pull request #97 from utkarshmani1997/rmclose",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-11-28T09:54:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77d9428ea397c82f32702527504e05fd005860b6",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "address review comments",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-28T08:44:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "901974d8c457777d8de6a8ee95f4da5f1100f7f8",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "remove conn.close",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-28T08:25:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f14ea31cbb07dd2f3a5e95af2ec0ed268a67e66b",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "add unit test to test behaviour on start stop",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-28T08:13:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e73507f4613c6b05cefd44a009c5eabc32b96b7b",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "add target to install dependency",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-28T07:50:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2d6c776d4ace5e7f2a79bd2fd4941a630b69c9b",
"body": "Listen on configured IP and close conn on error",
"is_bot": false,
"headline": "Merge pull request #95 from utkarshmani1997/configuredIP",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-11-26T13:29:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f3172258729ffd6073907ff9745f27f553b799b",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Listen on configured IP",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-26T12:15:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e67c47fb71a5e8ff2cdcf19f783b586a54c9600e",
"body": "bump go version and use xenial as dist",
"is_bot": false,
"headline": "Merge pull request #94 from utkarshmani1997/jiva-integration",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-11-22T01:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b264cf3f1597ae88bf1835db04f8903ea28d53a3",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "fix partition creation step",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-21T14:04:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbb4ad7eb2000a7f79b515c7611cb54c4dfc8e8c",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "fix gofmt error",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-21T13:57:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcc4405e66b11db30c80cc0d6ac47efafaf14c83",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "bump go version and use xenial as dist",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-21T13:37:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc38cd4431adc43c97d3f646ee82c145ff5453f1",
"body": "integrate openebs/jiva with gotgt",
"is_bot": false,
"headline": "Merge pull request #93 from utkarshmani1997/jiva-integration",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-11-21T11:15:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "583e9b3a4ab7163217682ec0b84e5454f9f88387",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Add option to disable multipath and other fixes",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-21T08:12:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25f0038456b5cd631bdc1b52fac9a9b8a8d4d0a0",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Add tgtNSG to fullfeaturephase and tgtTrans to true",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-20T11:33:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7891b1f682e0f8e565d1faa78717c52748b1d07",
"body": "- Convert constant to var so that it can be configured from backend\n- Add options to disable persistent reservation and ORWrite16 commands\n\nSigned-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Implement stats and resize and fix remote backing store apis",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-20T09:04:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7caf89610a28d4bf3efcd69cb9c4d833ea98111",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Implement InitSCSILuMap func for jiva",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-19T04:49:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b02c7897e3fd5ec6ef026b22a0b9043e082f706",
"body": "- Respond with failure for unsupported task management commands\n- Increase MaxRecvDataSegmentLength to 65536, to match FirstBurstLength\n\nSigned-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "fix error handling for unsupported commands",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T12:50:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64deda8106a6ceeb48a89726b6ccfeb658c5a56e",
"body": "tttttt-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "convert initialR2T to always true for datadigest",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T12:40:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b8e996a6ca8860538b5e28de29b973efd940f09",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Reply with LUN busy when there is a read/write error from backend",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T11:00:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8cc3e6db20d53f39f79ac4fbcad84d4139bde3f",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "improve logs and add client (initiator) status",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T10:55:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5339f347a0470ad6a8e521e7e07e115cc1b7809",
"body": "- Gotgt was crashing for few opcodes (sg_inq (sg3-utils)) because InSDBBuffer\n was not initialized for such opcodes (Need help)\n\nSigned-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "Add nil pointer check for InSDBBuffer",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T10:26:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dbc82435f796505925eec4143631e53c8d18ef5",
"body": "…te to hang\n\nSigned-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "iSCSI target fixes for iSCSIResiduals tests causing libiscsi test sui…",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T09:46:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3ef8c973d0056d2735c1865e146b17263423ef1",
"body": "This commit implement the BackingStore Interface for remote backing\nstore.\n\nSigned-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "add initial implementation of remote backing store",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-11-18T09:22:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d3d165c749efa1071d7c6d073083757dbc8d952",
"body": "fix the scsi inquiry command for TPGS",
"is_bot": false,
"headline": "Merge pull request #91 from utkarshmani1997/fix-tpgs",
"author_name": "Le Zhang",
"author_login": "orzhang",
"committed_at": "2019-11-18T07:32:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f270eb4d83e7ec9401a50766b1c59ae8dcf0161",
"body": "Signed-off-by: Utkarsh Mani Tripathi <utkarsh.tripathi@mayadata.io>",
"is_bot": false,
"headline": "fix the scsi inquiry command for TPGS",
"author_name": "Utkarsh Mani Tripathi",
"author_login": null,
"committed_at": "2019-09-29T01:56:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a858d2e37fe8b1c8957c23e3c86410080efa066",
"body": "update ceph-deploy version to v2.0.2",
"is_bot": false,
"headline": "Merge pull request #92 from carmark/ci",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-09-29T01:50:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8be0578d4ce6c4719ddcbd308230dd027df9b1c6",
"body": null,
"is_bot": false,
"headline": "update ceph-deploy version to v2.0.2",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-09-29T01:40:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "336465795fb1629576be3d0132ca920b8beeaeab",
"body": "Add ability to build gotgt without cgo",
"is_bot": false,
"headline": "Merge pull request #88 from hugelgupf/nocgo",
"author_name": "Lei Xue",
"author_login": "carmark",
"committed_at": "2019-07-30T01:02:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f92573fd28f959a94bdad397bc09e1e2c70e1a66",
"body": "Signed-off-by: Chris Koch <chrisko@google.com>",
"is_bot": false,
"headline": "Add ability to build gotgt without cgo",
"author_name": "Chris Koch",
"author_login": "hugelgupf",
"committed_at": "2019-07-29T19:55:30Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 35,
"latest_release_at": "2022-12-13T01:57:15Z",
"latest_release_tag": "v0.2.2",
"releases_from_tags": true,
"days_since_last_push": 4,
"active_weeks_last_year": 1,
"days_since_latest_release": 1317,
"mean_days_between_releases": 372.3
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/gostor/gotgt",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": false,
"registry_url": "https://pkg.go.dev/github.com/gostor/gotgt",
"is_deprecated": false,
"latest_version": "v0.2.2",
"repository_url": "https://github.com/gostor/gotgt",
"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": "2022-12-13T01:57:15Z",
"latest_version_yanked": null,
"days_since_latest_publish": 1317
}
]
},
"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": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 39559,
"source_files_sampled": 91,
"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/aws/aws-sdk-go-v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.41.4"
},
{
"name": "github.com/aws/aws-sdk-go-v2/config",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.32.12"
},
{
"name": "github.com/aws/aws-sdk-go-v2/credentials",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.19.12"
},
{
"name": "github.com/aws/aws-sdk-go-v2/service/s3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.97.1"
},
{
"name": "github.com/ceph/go-ceph",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.30.0"
},
{
"name": "github.com/coreos/go-systemd",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20191104093116-d3cd4ed1dbcf"
},
{
"name": "github.com/docker/go-connections",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.5.0"
},
{
"name": "github.com/google/uuid",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/gorilla/mux",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.8.1"
},
{
"name": "github.com/johannesboyne/gofakes3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20260208201424-4c385a1f6a73"
},
{
"name": "github.com/mitchellh/go-homedir",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.0"
},
{
"name": "github.com/sirupsen/logrus",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.3"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.8.0"
},
{
"name": "github.com/spf13/viper",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.18.2"
},
{
"name": "golang.org/x/net",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.24.0"
},
{
"name": "golang.org/x/sync",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.20.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": "carmark",
"commits": 168,
"avatar_url": "https://avatars.githubusercontent.com/u/1132167?v=4"
},
{
"type": "User",
"login": "orzhang",
"commits": 26,
"avatar_url": "https://avatars.githubusercontent.com/u/2985765?v=4"
},
{
"type": "User",
"login": "payes",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/10355850?v=4"
},
{
"type": "User",
"login": "whywaita",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/4568341?v=4"
},
{
"type": "User",
"login": "hugelgupf",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1994130?v=4"
},
{
"type": "User",
"login": "donaldt10ydt",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/32481297?v=4"
},
{
"type": "User",
"login": "shubham14bajpai",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/16064787?v=4"
},
{
"type": "User",
"login": "tpaullee",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/30541172?v=4"
},
{
"type": "User",
"login": "zaccone",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2128139?v=4"
},
{
"type": "User",
"login": "march1993",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/5122675?v=4"
}
],
"contributors_sampled": 12,
"top_contributor_share": 0.778
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"gotgt.yml"
],
"has_docs_dir": true,
"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": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": 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": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "16 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "7f708d0cf94501c169846651ecf14812356eb96f",
"ran_at": "2026-07-22T09:59:47Z",
"aggregate_score": 2.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": null,
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/AppMana/forks-gotgt",
"host": "github.com",
"name": "forks-gotgt",
"owner": "AppMana"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 32,
"inputs": {
"security": 23,
"vitality": 40,
"community": 12,
"governance": 30,
"engineering": 50
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "at_risk",
"name": "Vitality",
"value": 40,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"commits_last_year": 35,
"human_commit_share": 1,
"days_since_last_push": 4,
"active_weeks_last_year": 1
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 4
}
}
],
"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": "35 commits in the last year",
"points": 14,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 35
}
}
],
"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": "critical",
"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": 24,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v0.2.2",
"releases_from_tags": true,
"days_since_latest_release": 1317,
"mean_days_between_releases": 372.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1317 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1317
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~372.3 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 372.3
}
}
],
"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": 12,
"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": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"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": 0,
"status": "missed",
"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": 30,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 30,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 12,
"top_contributor_share": 0.778
},
"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 78% of commits",
"points": 5,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 78
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "12 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 12
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"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": null,
"notes": [],
"value": 59,
"inputs": {
"followers": 5,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "AppMana",
"public_repos": 105,
"account_age_days": 1892
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "5 followers of AppMana",
"points": 5.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 5,
"login": "AppMana"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "105 public repos, account ~5 yr old",
"points": 23.4,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 105
}
},
{
"code": "account_age_years",
"params": {
"years": 5
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 50,
"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": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 35,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": false,
"has_docs_dir": true,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"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": "critical",
"name": "Security",
"value": 23,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"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": 23,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 2.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 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"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": "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 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": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "16 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"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": 9
},
"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": 59,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 32,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.61,
"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": "61 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 32.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 61,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 71,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": true,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.23,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile, lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "23 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 23,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 39559,
"source_files_sampled": 91,
"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/91 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 91,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Community profile unavailable",
"go package 'github.com/gostor/gotgt' points at a different repository (https://github.com/gostor/gotgt); excluded from ecosystem scoring",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-22T09:59:57.717738Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/AppMana/forks-gotgt.svg",
"full_name": "AppMana/forks-gotgt",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}