Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 245,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 333852
},
"pushed_at": "2026-07-24T05:09:54Z",
"created_at": "2026-06-21T06:25:04Z",
"owner_type": "User",
"updated_at": "2026-07-25T14:41:09Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "xiaofei",
"type": "User",
"login": "xiaozhou26",
"company": "Amazon",
"location": null,
"followers": 56,
"avatar_url": "https://avatars.githubusercontent.com/u/122727418?v=4",
"created_at": "2023-01-15T11:29:51Z",
"is_verified": null,
"public_repos": 85,
"account_age_days": 1289
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.5.2",
"kind": "patch",
"published_at": "2026-07-24T05:11:59Z"
},
{
"tag": "v0.5.1",
"kind": "patch",
"published_at": "2026-07-23T16:05:02Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-07-14T13:16:31Z"
},
{
"tag": "v0.4.1",
"kind": "patch",
"published_at": "2026-07-13T17:15:18Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-13T16:34:14Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-13T11:59:44Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-07-13T02:41:17Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-06-21T07:13:37Z"
}
],
"recent_commits": [
{
"oid": "3bd320fe61c3ef2189c9905923a79c73af6189cf",
"body": "…nnel path (#17)\n\n* perf: cut per-request contention, allocations, and syscalls on the tunnel path\n\nPer-request lock contention (mutex-profile delay on the tunnel-setup\nbenchmark drops 223.8ms -> 57.3ms per 20k tunnels, ~4x):\n\n- CopyBidirectionalContext: replace the grace-timer sync.Once with an\n a\n[…]\nine SO_REUSEPORT on solaris, so the\nunix-tagged reuseport file broke the solaris build (CI only compiles\nlinux/windows/darwin and did not catch it). Route solaris through the\nsingle-listener fallback.",
"is_bot": false,
"headline": "perf: cut per-request contention, allocations, and syscalls on the tu…",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-24T05:08:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "61b56c5c6750fa5c6d4882c88c155e98d1144824",
"body": "…ound-trip (#16)\n\n- serverbase.ConnectionSet: 32 lock stripes keyed by connection identity (per-shard closed flags preserve the CloseAll shutdown invariant) instead of one process-wide mutex on every open/close. BenchmarkConnectionSetChurnParallel -cpu 4: 312 -> 53 ns/op.\n- serverbase.AddrPortOf rep\n[…]\nUDP source authz).\n\nVerified: -race full suite + CONNECT/HTTPS/UDP stress @300, cross-compile 5 targets, real-binary 128KB payload integrity, new ConnectionSet-shutdown + AddrPortOf-equivalence tests.",
"is_bot": false,
"headline": "perf: shard the connection registry and drop the per-accept address r…",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-23T15:24:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "80fb10e2bc9c2ccd5ed318625015a115942145f0",
"body": "…e contention (#15)\n\n- perf(server): buffer the SOCKS5 handshake (one recv per client flight vs ~a dozen; splice preserved via a pre-copy drain) and decouple both accept loops from the connection gate so a saturated --concurrent gate no longer serializes SO_REUSEPORT shards; fmt.Sscanf -> strconv.Pa\n[…]\nesolveHost and UDP LookupCached paths.\n\nVerified: -race full suite + CONNECT/HTTPS/UDP stress @300, non-race @800, 4-target cross-compile, real-binary 256KB payload integrity (plain + -session- auth).",
"is_bot": false,
"headline": "perf: cut per-connection syscalls, accept serialization, and DNS-cach…",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-23T14:21:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a3122ad77163dbac698a8ee523625f13514683b2",
"body": "The inbound pump and the response pump bumped shared atomic counters\n(inPackets/inBytes, outPackets/outBytes) once per datagram. Both already\nprocess packets in batches, so accumulate the counts in locals and flush\neach metric with one atomic Add per batch, cutting shared cache-line\ncontention on th\n[…]\nudpResponder.pumpOnce batch.\nTotals are identical, just flushed per batch.\n\nTestUDPMetricsBatchedCounts drives 50 datagrams and asserts\ninPackets/outPackets == 50 and inBytes/outBytes == 5000 exactly.",
"is_bot": false,
"headline": "perf(udp): batch UDP metric counter updates (#2) (#10)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T12:57:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cc71e2da479e1420491c0e4b7b852813c19b1ac5",
"body": "Add --reuse-port (Linux/BSD, off by default). When enabled, each proxy\nserver binds N SO_REUSEPORT listeners on the same address (N scales with\nGOMAXPROCS, capped) and runs one accept loop per listener, so the kernel\nspreads incoming connections across cores instead of funneling them\nthrough a singl\n[…]\nnds with clean multi-listener shutdown; full suite; 8-target\ncross-compile (unix + non-unix fallback); real binary shows 4 listen\nsockets with --reuse-port vs 1 without. README documents --reuse-port.",
"is_bot": false,
"headline": "perf(server): SO_REUSEPORT accept sharding (#3) (#11)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T12:43:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f5801b1f8046e612a72269e39fbe618cd1aaead5",
"body": "PR #9 added the maxPendingDials parameter to connect.New and updated all\ncall sites that existed in its (pre-#13) base. The udp_footprint_test.go\nand udp_idle_test.go callers were introduced by #13 (epoll reactor) after\n#9 branched, so #9's squash-merge did not update them, leaving the socks\ntest build broken on main (go build passes; go vet/test fail). Pass 0\n(unlimited), matching every other test caller.",
"is_bot": false,
"headline": "fix(socks): add maxPendingDials arg to connect.New test callers (#14)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T12:37:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97086418fecc4c90fba140d3a0cc35a1174727cd",
"body": "…(#6) (#9)\n\n#1 Configurable TCP dial concurrency:\nThe outbound TCP dial semaphore was a hard-coded 512. Add --max-pending-dials\n(config.MaxPendingDials); 0 leaves dialing unbounded (nil semaphore). Raises\nthe ceiling for CONNECT-heavy high-concurrency pools whose targets dial slowly.\n\n#6 Cached-doma\n[…]\nn\nend-to-end domain-target relay test (cold worker path then warm cached path);\n-race UDP stress 300, non-race 800; TCP concurrency smoke; 6-target\ncross-compile. README documents --max-pending-dials.",
"is_bot": false,
"headline": "perf: configurable TCP dial cap (#1) and cached-domain UDP fast path …",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T12:08:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9ed65b901b2d9efd4fc8509e6b487423deacfe9b",
"body": "…io (stages 0/1a/1b/2) (#13)\n\n* perf(udp): reactor stage 0+1a — baseline footprint + epoll core\n\nApproach A toward matching the Rust (tokio) concurrency model: replace the\ngoroutine-per-socket UDP relay with a shared epoll reactor so N associations\nshare M ≪ N goroutines.\n\nStage 0 — baseline: TestUD\n[…]\ner -race; -race stress\n300, non-race 800/2000 (zero loss); 6-target cross-compile (linux reactor +\nnon-linux fallback goroutines); real binary relays 50/50 round trips and shuts\ndown cleanly (exit 0).",
"is_bot": false,
"headline": "perf(udp): epoll reactor — ~1 goroutine per association, matching tok…",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T11:46:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8c5fdd4aef7b730528d5cf6a66fe4175f2b91848",
"body": "GitHub is forcing the Node 20 actions onto Node 24 and warning about\ndeprecation. Bump to current majors, all on the node24 runtime:\n\n- actions/checkout v4 -> v7\n- actions/setup-go v5 -> v6\n- actions/upload-artifact v4 -> v7\n- actions/download-artifact v4 -> v8\n- softprops/action-gh-release v2 -> v3\n\nVerified the inputs the workflow uses still exist at the target versions\n(upload: name/path; download: path/merge-multiple; release: token/files/\nprerelease/generate_release_notes).",
"is_bot": false,
"headline": "ci: upgrade GitHub Actions to Node 24 runtimes (#8)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-14T00:30:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "402363c618b6b297504d8ae2da8087d62542aea4",
"body": "The directory was a leftover Go build cache from the init commit and is\nalready gitignored; the active GOCACHE is elsewhere.",
"is_bot": false,
"headline": "chore: drop accidentally committed .codex-go-cache build cache",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T17:10:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ea47a9b2aad52ee9d369d56c24a6b05174a3b17",
"body": "Two hot-path allocation sources removed:\n\n- Send path: linuxUDPBatchWriter (and the generic writer) called\n net.UDPAddrFromAddrPort per datagram, allocating a *net.UDPAddr plus an\n IP slice each time - 64 allocs per 32-packet batch. The writers now own\n one reusable *net.UDPAddr per message slot \n[…]\nrseUdpHeader parity + short-buffer\ntests; the -race multi-target test confirms each reused address still\nroutes to the correct target; -race UDP stress 300, non-race 800/2000;\n12-target cross-compile.",
"is_bot": false,
"headline": "perf(udp): drop per-packet allocations on the relay hot path (#7)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T17:07:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4e7d1296b3846405036f1fbfac7f2033b0fd0c00",
"body": "Add --udp-gro (Linux, off by default), the receive-side counterpart to\n--udp-gso. When enabled and supported, the relay's inbound and outbound\nsockets set UDP_GRO so the kernel - or a GRO-offload NIC - coalesces a\nburst of same-flow, same-size datagrams into one recvmsg. readGRO reads\nthe segment si\n[…]\nrace\nend-to-end association test with GRO on; -race UDP stress 300, non-race\n800; 12-target cross-compile; and strace of the real binary showing\nsetsockopt(SOL_UDP, UDP_GRO, [1]) on the relay sockets.",
"is_bot": false,
"headline": "perf(udp): optional UDP_GRO receive coalescing (#6)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T16:23:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3e606d89cb6176b88700bbd38149e451b3a081a4",
"body": "Add --udp-gso (Linux, off by default). When enabled and the kernel\nsupports UDP_SEGMENT, a drained request batch that targets a single\ndestination with uniform-size datagrams (all but the last equal size) is\nsent as one sendmsg carrying a UDP_SEGMENT control message, so the kernel\n- or a GSO-offload\n[…]\n stress 300 and non-race 800; 11-target\ncross-compile; and strace of the real binary showing sendmsg with\ncmsg_type=UDP_SEGMENT, gso_size=1200, iov_len=38400 (32 datagrams\ncoalesced into one syscall).",
"is_bot": false,
"headline": "perf(udp): optional UDP_SEGMENT (GSO) batching for uniform bursts (#5)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T15:22:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6e27051bf080a9d9a6e1e4a53311be2ec88be531",
"body": "The response direction (target->client) already used sendmmsg, but the\nrequest direction dispatched every packet to a send worker doing one\nWriteToUDP (sendto) syscall. Under burst load that is one syscall per\ndatagram.\n\nhandleUDP now drains the packets the inbound batch reader has queued (up\nto Bat\n[…]\n: gofmt/vet/tests; new -race multi-target test spanning IPv4 and\nIPv6 targets (per-message + per-family routing); -race UDP stress at 300,\nnon-race at 800 and 2000 (zero loss); 9-target cross-compile.",
"is_bot": false,
"headline": "perf(udp): batch client->target sends with sendmmsg (#4)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T14:16:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7023dc678f19830f01f045fb6231ac3152a019ef",
"body": "dispatch() took a process-wide RWMutex.RLock on every packet across all\nassociations, solely to avoid racing the shutdown path that closed the\nshard channels. That shared lock is a contended cache line at high packet\nrates.\n\nInstead, never close the shard channels: workers now select on their job\nch\n[…]\ndown\ndispatch, and concurrent-shutdown-no-panic; -race UDP stress at 300 and\nnon-race at 800; a real-binary SIGTERM shutdown with an active association\n(clean exit, no hang); cross-compile spot check.",
"is_bot": false,
"headline": "perf(udp): make the UDP send dispatch lock-free (#3)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T13:17:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cf64d7bb52daf8cf567c4bd83e33fad7716ee317",
"body": "…ers (#2)\n\nFollow-up tuning for high-concurrency UDP pools:\n\n- relayUDPResponses: hoist the per-batch `writes`/`payloadBytes` slices out\n of the read loop and reuse them (reset with [:0]), removing two heap\n allocations per batch on every association's outbound reader.\n- handleUDP: size the inboun\n[…]\ne UDP stress at 300, non-race at 800,\n9-target cross-compile, and a real-binary check that the clamp warning\nfires without CAP_NET_ADMIN (granted 425984 for an 8 MiB request) and\nstays silent with it.",
"is_bot": false,
"headline": "perf(udp): reduce relay hot-path allocations and warn on clamped buff…",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T13:17:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "622056fc4e0bfa33e149c3453227230abf2a7ea9",
"body": "…ability\n\nmacOS caps single UDP datagrams at net.inet.udp.maxdgram (9216 bytes by\ndefault), so the 32KiB payload in TestSOCKS5UDPLargeDatagram failed with\n'sendto: message too long' on macos-latest CI while passing on Linux.\n8KiB stays within every platform's default per-datagram limit and still\nexercises the larger-than-MTU relay path.",
"is_bot": false,
"headline": "test(socks): shrink large-datagram UDP payload to 8KiB for macOS port…",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T11:56:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c724331e3a822260aeb502240f8e986ad74a1de",
"body": "…tion prefix",
"is_bot": false,
"headline": "docs(readme): replace real IPv6 CIDR examples with RFC 3849 documenta…",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T11:52:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6e8bd0e1906198929678c5ae5c28aec4aa2ea33",
"body": "Add --udp-socket-buffer to size SO_RCVBUF/SO_SNDBUF on the SOCKS5 UDP\nrelay sockets (inbound + dual-stack outbound). On Linux the buffers are\nset via SO_RCVBUFFORCE/SO_SNDBUFFORCE to bypass the net.core.rmem_max /\nwmem_max ceilings when CAP_NET_ADMIN is available, falling back to the\nclamped SetRead\n[…]\non-race at 300/800/2000,\n13-target cross-compile, and a real-binary IPv6-pool test (300x40 and\n800x30 UDP round-trips, zero loss; 400 concurrent sessions spread across\n322 distinct pool IPv6 sources).",
"is_bot": false,
"headline": "feat(udp): tune UDP relay socket buffers for high-concurrency pools (#1)",
"author_name": "xiaofei",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T11:44:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9979ac8b489e93bb7e85de47003b461b47c8d25b",
"body": null,
"is_bot": false,
"headline": "init",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T08:45:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c822ae4bf11df8f2dacd8919512ff326bc527226",
"body": "此提交完成多项核心改进:\n1. 新增平台差异化实现文件,支持非Unix系统编译运行\n2. 优化TLS配置,移除不支持的h2协议广告\n3. 提升默认并发连接数至8192并完善参数校验\n4. 添加DNS缓存与连接池优化,减少DNS查询与内存分配\n5. 新增大量并发测试与单元测试覆盖\n6. 完善Linux平台源CIDR路由配置与校验逻辑\n7. 重构服务器启动与关闭流程,提升优雅关闭稳定性\n8. 更新文档与默认配置项",
"is_bot": false,
"headline": "refactor: 重构项目适配非Unix平台,新增多平台支持与并发优化",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-07-13T02:37:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9165f48e2262e92ba414401bba58ed95569ed463",
"body": "在README中添加项目灵感来源的标注,注明源自高性能透明代理工具vproxy",
"is_bot": false,
"headline": "docs(readme): add inspiration source to the readme",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-06-21T07:19:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e3b781e20a5b6d554fd35dc6ee2ee0e247c6d05",
"body": null,
"is_bot": false,
"headline": "ci: 添加github actions CI/CD工作流",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-06-21T07:06:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f1373f4a4829569b54dbd2ee7a38a6ed2eb333a",
"body": "新增完整的MIT许可证文件,明确项目的开源版权和使用条款",
"is_bot": false,
"headline": "chore: 添加MIT协议开源许可证文件",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-06-21T06:41:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af1a88c9c7de4874bb671258bdc40d23c2a6c49e",
"body": "首先创建了.gitignore文件忽略exe文件,然后补充了完整的项目说明文档README.md,包含项目特性、安装、使用方式、配置选项和用户名扩展说明,同时添加了CLAUDE.md用于提供项目开发相关的上下文指导。",
"is_bot": false,
"headline": "chore: 初始化仓库,添加.gitignore、README和CLAUDE文档",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-06-21T06:38:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b28e9b8061dd5e2d3ac79b3aeb2e33884b48b58f",
"body": null,
"is_bot": false,
"headline": "init",
"author_name": "xiaozhou26",
"author_login": "xiaozhou26",
"committed_at": "2026-06-21T06:30:36Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 8,
"commits_last_year": 26,
"latest_release_at": "2026-07-24T05:11:59Z",
"latest_release_tag": "v0.5.2",
"releases_from_tags": false,
"days_since_last_push": 4,
"active_weeks_last_year": 4,
"days_since_latest_release": 4,
"mean_days_between_releases": 4.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/xiaozhou26/outway",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/xiaozhou26/outway",
"is_deprecated": false,
"latest_version": "v0.5.2",
"repository_url": "https://github.com/xiaozhou26/outway",
"versions_count": 8,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-24T05:08:27Z",
"latest_version_yanked": null,
"days_since_latest_publish": 4
}
]
},
"popularity": {
"forks": 0,
"stars": 3,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 32153,
"source_files_sampled": 91,
"oversized_source_files": 0,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 6774
},
"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/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.2"
},
{
"name": "github.com/vishvananda/netlink",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.3.1"
},
{
"name": "golang.org/x/net",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.56.0"
},
{
"name": "golang.org/x/sys",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.46.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": 16,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "xiaozhou26",
"commits": 26,
"avatar_url": "https://avatars.githubusercontent.com/u/122727418?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/26 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": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "3bd320fe61c3ef2189c9905923a79c73af6189cf",
"ran_at": "2026-07-28T07:43:34Z",
"aggregate_score": 3.1,
"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-24T05:12:02Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-24T05:08:27Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/xiaozhou26/outway",
"host": "github.com",
"name": "outway",
"owner": "xiaozhou26"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 31,
"vitality": 67,
"community": 26,
"governance": 54,
"engineering": 57
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 67,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"commits_last_year": 26,
"human_commit_share": 1,
"days_since_last_push": 4,
"active_weeks_last_year": 4
},
"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": "4/52 weeks with commits",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 4
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "26 commits in the last year",
"points": 12.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 26
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 8,
"latest_release_tag": "v0.5.2",
"releases_from_tags": false,
"days_since_latest_release": 4,
"mean_days_between_releases": 4.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "8 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 8
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 4 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 4
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~4.7 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 4.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": "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": 26,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 5,
"inputs": {
"forks": 0,
"stars": 3,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "3 stars",
"points": 4.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 3
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 13,
"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 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 68,
"inputs": {
"merged_prs": 16,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"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": "16/17 decided PRs merged",
"points": 36,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 16,
"decided": 17
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/26 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": 53,
"inputs": {
"followers": 56,
"owner_type": "User",
"is_verified": null,
"owner_login": "xiaozhou26",
"public_repos": 85,
"account_age_days": 1289
},
"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": "56 followers of xiaozhou26",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 56,
"login": "xiaozhou26"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "85 public repos, account ~3 yr old",
"points": 20.1,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 85
}
},
{
"code": "account_age_years",
"params": {
"years": 3
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/xiaozhou26/outway"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 4
},
"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 4 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 4
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"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": 57,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "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": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 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": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 31,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 31,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.1
},
"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": "16 out of 16 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/26 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": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 74,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.923,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 6774
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "CLAUDE.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "24 of 26 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 24,
"sampled": 26
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"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,
"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": "no agent-authored commits among the last 26",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 26
}
}
],
"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": 32153,
"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
}
]
}
],
"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",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-28T07:43:44.886957Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/x/xiaozhou26/outway.svg",
"full_name": "xiaozhou26/outway",
"license_state": "standard",
"license_spdx": "MIT"
}