原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 206,
"has_wiki": false,
"homepage": null,
"languages": {
"Go": 371767,
"Shell": 12585,
"Makefile": 8135
},
"pushed_at": "2026-07-22T11:54:02Z",
"created_at": "2026-04-13T03:34:45Z",
"owner_type": "Organization",
"updated_at": "2026-07-26T07:14:34Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://zvec.org/en",
"name": "Zvec-AI",
"type": "Organization",
"login": "zvec-ai",
"company": null,
"location": null,
"followers": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/254627891?v=4",
"created_at": "2026-01-13T07:46:22Z",
"is_verified": null,
"public_repos": 10,
"account_age_days": 199
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2026-07-22T13:05:53Z"
},
{
"tag": "v0.5.1",
"kind": "patch",
"published_at": "2026-07-08T15:17:17Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-06-10T13:58:32Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-06-10T08:14:09Z"
}
],
"recent_commits": [
{
"oid": "f5c6c6cb3dca02b14bf406ca33b86e0c134c179f",
"body": "- Add diskann_test.go with 14 test cases covering:\n * IndexParams: NewDiskANNIndexParams, SetDiskANNParams, getters, Destroy\n * DiskANNQueryParams: New, Set/Get for list_size/radius/is_linear/is_using_refiner\n * SetDiskANNParams ownership transfer on SearchQuery/GroupBySearchQuery/SubQuery\n * Ni\n[…]\ns InvalidArgument error\n instead of panicking, matching the purego backend behavior\n- Bump zvec submodule to main latest (7647544) which includes\n fix(diskann): add diskann into zvec core lib (#602)",
"is_bot": false,
"headline": "test: add DiskANN unit tests and bump zvec submodule",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-22T09:17:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9199195b29dac4bf369bb16954464ddf2d73e932",
"body": null,
"is_bot": false,
"headline": "test: update purego version validation test cases for 0.6.0 ABI",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-21T02:33:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d22f1719aa0385c28499e03d1f5b6bb7695b5dc",
"body": null,
"is_bot": false,
"headline": "fix: bump purego ABI version to 0.6.0 to match zvec C-API",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-21T01:59:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f27961c04068af12f1721f9f60a85198ad4105ab",
"body": null,
"is_bot": false,
"headline": "fix: rename SetGroupTopK to SetTopkPerGroup in tests and examples",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-20T12:01:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ef5cf5955db8edb659af72c94fb997bd3beb58d",
"body": "… v0.6.0 C-API\n\n- Add missing defer lockErrorThread()() to DiskANN cgo methods\n- Add DiskANN index/query/sub-query bindings to purego backend\n- Rename purego GroupBySearchQuery.SetGroupTopK -> SetTopkPerGroup to match v0.6.0 C-API symbol",
"is_bot": false,
"headline": "fix: restore DiskANN support after PR #13 merge and align purego with…",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-20T11:44:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb0b115c372d2b19dfe596d1c4a45312459fb541",
"body": "Add purego runtime FFI backend and improve CGO thread safety\n\n- Enable automatic no-cgo backend via github.com/ebitengine/purego\n- Lock OS thread around C calls for thread-local error retrieval\n- Add FieldSchema lifetime validation against owner schema mutations\n- Change GetFTS to return an independent copy with clear ownership\n- Add purego integration tests in CI\n\nNote: DiskANN support will be restored in a follow-up commit.",
"is_bot": false,
"headline": "Merge pull request #13 from zvec-ai/purego",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-20T11:34:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "549945426c94867930a5829ab259be064dfa1411",
"body": "- Update zvec submodule from v0.5.1 to v0.6.0\n- Add IndexTypeDiskANN constant (types.go)\n- Add IndexParams.SetDiskANNParams/GetDiskANN* helpers and\n NewDiskANNIndexParams constructor (schema.go)\n- Add DiskANNQueryParams type with create/set/get helpers (query.go)\n- Add SetDiskANNParams on SearchQue\n[…]\no, multi_query.go)\n- Adapt GroupBySearchQuery.SetGroupTopK to v0.6.0 C-API rename\n (zvec_group_by_vector_query_set_topk_per_group)\n- Bump all v0.5.1 references to v0.6.0 in docs, scripts and workflow",
"is_bot": false,
"headline": "feat: bump zvec submodule to v0.6.0 and add DiskANN index support",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-20T11:09:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e8d18d3daf26d7d5347c78393e46ad18d11016cc",
"body": null,
"is_bot": false,
"headline": "test(purego): move FTS smoke flow into integration tests",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-13T06:19:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5f51cdbc123858fa34a65f99b33b82dd067f651",
"body": null,
"is_bot": false,
"headline": "perf(purego): reduce runtime FFI overhead",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-13T05:36:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6b820a10566ff03e8774125b062d9ef55691303",
"body": null,
"is_bot": false,
"headline": "feat(purego): enable automatic no-cgo backend",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-10T09:45:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6e8e248012481c50ee7718be6f6158510a6637e",
"body": null,
"is_bot": false,
"headline": "feat(purego): complete missing ffi api bindings",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-09T06:53:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c365673ef311cf194f12338abe1f35aa2784157e",
"body": null,
"is_bot": false,
"headline": "feat: bind purego fts and hybrid search",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-09T05:44:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f0e6c4adc12ab2afe3ee58ba92fe5ac4f0b9320",
"body": null,
"is_bot": false,
"headline": "feat: add purego runtime ffi backend",
"author_name": "fy",
"author_login": "fy0",
"committed_at": "2026-07-09T05:44:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e25a7b93678dbe3c70d57b8256bce4c44c4cc5c5",
"body": "The Package libraries (Windows) step failed for v0.5.1 because zvec\nv0.5.1's cmake config picks the Ninja generator on Windows runners\n(single-config), which outputs zvec_c_api.dll to zvec/build/bin/\n(without the Release/ subdirectory that the Visual Studio multi-config\ngenerator produces). The scri\n[…]\nReorder the search list to try bin/ first (where modern cmake puts\n runtime artifacts).\n- Move the Get-ChildItem diagnostic before Write-Error so the .dll\n listing is actually printed before exit 1.",
"is_bot": false,
"headline": "fix(release): cover Ninja single-config output paths on Windows",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-08T14:07:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3761847638680e09a5319aaa2bb37adc662013db",
"body": "- Update zvec submodule from v0.5.0 to v0.5.1 (c_api: add FTS support\n for sub-query, #520)\n- Add SubQuery.SetFTSParams / SubQuery.SetFTS in multi_query.go to\n expose the new c_api entry points\n- This enables FTS + Vector combination inside MultiQuery with\n RRF/Weighted rerank\n- Bump all version references from v0.5.0 to v0.5.1 (README,\n README_CN, CONTRIBUTING, sync-zvec.sh, download-libs examples,\n release.yml workflow_dispatch description)",
"is_bot": false,
"headline": "feat: bump zvec submodule to v0.5.1 and expose SubQuery FTS APIs",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-07-08T12:53:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fe101708edb85552ca1d109c463a79a1574bde4",
"body": "- ci.yml: switch source-test and vendor-test macOS runner from macos-15\n to macos-14 to match release.yml, ensuring CI validates the same\n environment used to build release artifacts.\n- release.yml: replace shell variable $TAG (which was not expanded\n inside a single-quoted heredoc) with the GitHub Actions expression\n ${{ steps.tag.outputs.tag }}, so the release notes title shows the\n actual tag instead of the literal string \"$TAG\".",
"is_bot": false,
"headline": "ci: align macos runner to macos-14 and fix release notes tag expansion",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-11T07:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8917e36c218553ed116a43a60c4a69392599956",
"body": "… file\n\n- Replace readVersionFile with fetchLatestReleaseTag using GitHub's\n /repos/{owner}/{repo}/releases/latest endpoint.\n- Honor GITHUB_TOKEN to lift the unauthenticated rate limit when set.\n- Remove the VERSION file; releases now only need a git tag bump.\n- Update generate.go doc comment accordingly.\n- Drive-by: bump example version strings in release.yml workflow_dispatch\n description and scripts/sync-zvec.sh usage to v0.5.0.",
"is_bot": false,
"headline": "refactor(download-libs): query GitHub Releases API instead of VERSION…",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-11T07:37:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a1bc1f81ecec4b12b03ae9e6ddcb64af05fc386",
"body": null,
"is_bot": false,
"headline": "docs: bump sync-zvec.sh example to v0.5.0",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-10T13:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65ee6577568e16aff4524d0ffc7726331422618f",
"body": null,
"is_bot": false,
"headline": "ci(release): checkout tag ref on workflow_dispatch",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-10T07:30:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a1d1aa976849b977b1ed0ea7b8d64667c224e85",
"body": null,
"is_bot": false,
"headline": "chore: bump zvec submodule to v0.5.0",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-10T07:21:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f1055be39a14e11d443a2231f1ba5b28cf0fcdf",
"body": null,
"is_bot": false,
"headline": "ci(release): fetch full history and tags for zvec submodule",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-10T07:17:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c87156de335e767a5ede9c077ef95f4aa5e9cce",
"body": "* feat: add FTS and multi-query APIs aligned with zvec 823b5e6\n\n* style: fix gofmt alignment in ErrorCode constants\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\n\n* chore: update zvec submodule to v0.5.0\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\n\n* fix: adapt Reranker API t\n[…]\nply@anthropic.com>\n\n* style: remove extra blank line in multi_query_test.go\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refact: refact code base new v0.5.0 c_api.h (#12)",
"author_name": "lichen2015",
"author_login": "chinaux",
"committed_at": "2026-06-10T01:09:36Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "46efa526ca202ab6b83cd611254dd427fe840df4",
"body": null,
"is_bot": false,
"headline": "Update zvec submodule",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-07T14:42:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64cfac8c2487a8417304abc67565c3408e8902f6",
"body": null,
"is_bot": false,
"headline": "Disable Dependabot",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-06-07T14:31:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83441028a0862eb4dd86efcbe54c67636fd20e86",
"body": "…fixes\n\n- Update quick start instructions in README and README_CN\n- Fix find command to exclude zvec submodule from gofmt check\n- Use manylinux_2_28_x86_64 container for linux-x64 release build\n- Install ninja-build and gcc in manylinux container\n- Add CMAKE_POLICY_VERSION_MINIMUM for CMake 3.30 compatibility",
"is_bot": false,
"headline": "ci(release): build linux-x64 in manylinux container with docs and ci …",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-05-06T10:41:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34ee4473f9fe6f56411723370ceb0fd3828a774b",
"body": null,
"is_bot": false,
"headline": "fix(download-libs): 修复 Linux 下 filepath.Join 处理绝对路径的 bug",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-05-06T03:47:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ece0da852a96989f11d8c6e7f46654cbe6c1299",
"body": "- 修复 Windows CMake 4.x 构建失败和子模块污染问题\n- 启用 go generate 并修复 macOS 兼容性\n- 统一 generate.go 的包名为 zvec\n- macOS runner 兼容 sha256sum 命令\n- 处理 tar/zip 解压中的 ./ 前缀路径遍历问题\n- 更新 README 使用说明,推荐 go run ./cmd/download-libs 方式",
"is_bot": false,
"headline": "fix(ci): 修复 release workflow 多平台构建问题",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-04-25T15:13:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81379743c7fd7a80e55f327dc6beaed8ec7af9d8",
"body": "chore(ci): 更新 CI 配置并优化 Go 测试排除规则",
"is_bot": false,
"headline": "Merge pull request #7 from sunhailin-Leo/fix/ci-execute",
"author_name": "lichen2015",
"author_login": "chinaux",
"committed_at": "2026-04-22T02:03:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29a2b1469f0a8f15341f2cae64e3d4bda0b54943",
"body": "将多个测试用例中的`t.TempDir()`替换为统一的`testTempDir(t)`函数调用,提高测试代码的一致性和可维护性。同时添加了跨平台的测试辅助函数实现。\n\nCo-developed-by: Aone Copilot <noreply@alibaba-inc.com>",
"is_bot": false,
"headline": "refactor(collection_test.go): 统一使用自定义临时目录函数替代t.TempDir()",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T11:35:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a97f4e7bfc5a9860eab66f5146b23fc2dfbd4306",
"body": "将多个测试文件中的路径拼接方式从直接字符串连接改为使用`filepath.Join`方法,提高跨平台兼容性。\n\nCo-developed-by: Aone Copilot <noreply@alibaba-inc.com>",
"is_bot": false,
"headline": "refactor(test): 使用 filepath.Join 替代字符串拼接构建路径",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T10:49:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86ead7c2fe7afd43ccbc455c0fb15d96d6cf843d",
"body": null,
"is_bot": false,
"headline": "fix ci.yml",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T09:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd011ce6110220eab22124efc5d66023ca0aca6e",
"body": null,
"is_bot": false,
"headline": "fix ci.yml",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T09:02:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f832b21a406e049a3032e9cd34fc5b1a539ef71f",
"body": "将 Windows 平台上的 CMake 和 Ninja 安装从 Chocolatey 改为使用 pip 进行安装,同时更新 shell 为 pwsh。\n\nCo-developed-by: Aone Copilot <noreply@alibaba-inc.com>",
"is_bot": false,
"headline": "chore(ci.yml): 更新 CI 构建脚本中的 CMake 和 Ninja安装方式",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T08:03:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30ad7c5285ed0f5713293ce99de638a45e1c8bff",
"body": "更新了 CMake 构建流程,添加 Ninja 生成器支持,并改进了 Go 测试脚本以排除 zvec 子模块中的无关依赖包。同时更新 .gitignore 忽略 zvec 目录下的构建产物。\n\nCo-developed-by: Aone Copilot <noreply@alibaba-inc.com>",
"is_bot": false,
"headline": "chore(ci): 更新 CI 配置并优化 Go 测试排除规则",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-21T07:10:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "314b44fd40756f144aca703b791a0a90da7ae757",
"body": "feat: 添加Go SDK基础结构和示例代码",
"is_bot": false,
"headline": "Merge pull request #1 from sunhailin-Leo/dev/go_sdk",
"author_name": "lichen2015",
"author_login": "chinaux",
"committed_at": "2026-04-21T06:40:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba96c8cff413db5c8a783832b12cd7d0c5248245",
"body": "添加了完整的Go项目基础设施,包括:\n- Go模块配置和依赖管理\n- 核心数据结构定义(types.go, schema.go, query.go等)\n- 错误处理机制\n- 各平台CGO支持文件\n- 完整的单元测试和基准测试\n- 多个功能示例程序\n- CI/CD工作流和构建脚本\n- 贡献指南和文档更新\n\nCo-developed-by: Aone Copilot <noreply@alibaba-inc.com>",
"is_bot": false,
"headline": "feat: 添加Go项目基础结构和示例代码",
"author_name": "LeoSun",
"author_login": "sunhailin-Leo",
"committed_at": "2026-04-16T06:03:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dab03cb3e91bc835325c60e4c534a2f5314a4b66",
"body": null,
"is_bot": false,
"headline": "add license and gitignore",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-04-13T07:47:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbf62550bee46144420cf49d69ab3eee71f43666",
"body": null,
"is_bot": false,
"headline": "first commit",
"author_name": "lc285652",
"author_login": "chinaux",
"committed_at": "2026-04-13T03:47:29Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 38,
"latest_release_at": "2026-07-22T13:05:53Z",
"latest_release_tag": "v0.6.0",
"releases_from_tags": false,
"days_since_last_push": 9,
"active_weeks_last_year": 8,
"days_since_latest_release": 9,
"mean_days_between_releases": 14.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": true,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/zvec-ai/zvec-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/zvec-ai/zvec-go",
"is_deprecated": false,
"latest_version": "v0.6.0",
"repository_url": "https://github.com/zvec-ai/zvec-go",
"versions_count": 4,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-20T11:09:36Z",
"latest_version_yanked": null,
"days_since_latest_publish": 11
}
]
},
"popularity": {
"forks": 5,
"stars": 21,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-04-16",
"count": 1
},
{
"date": "2026-04-23",
"count": 1
},
{
"date": "2026-06-22",
"count": 1
},
{
"date": "2026-07-09",
"count": 1
},
{
"date": "2026-07-26",
"count": 1
}
],
"complete": true,
"collected": 5,
"total_forks": 5
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"examples/basic/go.mod",
"examples/collection_management/go.mod",
"examples/configuration/go.mod",
"examples/crud_operations/go.mod",
"examples/error_handling/go.mod",
"examples/schema_and_index/go.mod",
"examples/vector_query/go.mod",
"go.mod"
],
"largest_source_bytes": 75993,
"source_files_sampled": 49,
"oversized_source_files": 1,
"agent_instruction_files": [
".github/copilot-instructions.md"
],
"agent_instruction_max_bytes": 3607
},
"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/ebitengine/purego",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.10.1"
}
],
"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": 5,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 1,
"closed_unmerged_prs": 7
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "chinaux",
"commits": 25,
"avatar_url": "https://avatars.githubusercontent.com/u/2996642?v=4"
},
{
"type": "User",
"login": "sunhailin-Leo",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/17564655?v=4"
},
{
"type": "User",
"login": "fy0",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/1579850?v=4"
}
],
"contributors_sampled": 3,
"top_contributor_share": 0.658
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"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": 6,
"reason": "2 out of 3 merged PRs checked by a CI test -- score normalized to 6",
"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 2/22 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": 10,
"reason": "project is fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "26 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": "f5c6c6cb3dca02b14bf406ca33b86e0c134c179f",
"ran_at": "2026-07-31T17:08:16Z",
"aggregate_score": 4.4,
"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-22T13:05:56Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-20T11:34:39Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/zvec-ai/zvec-go",
"host": "github.com",
"name": "zvec-go",
"owner": "zvec-ai"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 55 is calibrated to 57 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 55,
"calibrated": 57,
"calibration": "2026-08-02"
}
}
],
"value": 57,
"inputs": {
"security": 44,
"vitality": 71,
"community": 47,
"governance": 56,
"calibration": "2026-08-02",
"engineering": 48,
"ai_readiness": 73,
"weighted_overall_raw": 55
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 71,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 38,
"human_commit_share": 1,
"days_since_last_push": 9,
"active_weeks_last_year": 8
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 9 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 9
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "8/52 weeks with commits",
"points": 5.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 8
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "38 commits in the last year",
"points": 14.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 38
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "26 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v0.6.0",
"releases_from_tags": false,
"days_since_latest_release": 9,
"mean_days_between_releases": 14.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 9 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 9
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~14.1 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 14.1
}
}
],
"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": "exceptional",
"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": "weak",
"name": "Community & Adoption",
"value": 47,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"forks": 5,
"stars": 21,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "21 stars",
"points": 21.1,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 21
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "5 forks",
"points": 5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 5
}
}
],
"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": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"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": 56,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 31,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 3,
"top_contributor_share": 0.658
},
"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 66% of commits",
"points": 7.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 66
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "3 contributors",
"points": 4.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 3
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "moderate",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 63,
"inputs": {
"merged_prs": 5,
"open_issues": 0,
"closed_issues": 1,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 7,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "5/12 decided PRs merged",
"points": 12.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 5,
"decided": 12
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/22 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "weak",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"followers": 23,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "zvec-ai",
"public_repos": 10,
"account_age_days": 199
},
"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": "23 followers of zvec-ai",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 23,
"login": "zvec-ai"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "10 public repos, account ~0 yr old",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 10
}
},
{
"code": "account_age_years",
"params": {
"years": 0
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/zvec-ai/zvec-go"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 11
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 11 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 11
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "weak",
"name": "Engineering Quality",
"value": 48,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"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": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "2 out of 3 merged PRs checked by a CI test -- score normalized to 6",
"points": 12,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 30,
"inputs": {
"topics": [],
"has_wiki": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "weak",
"name": "Security",
"value": 44,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"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": 44,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 4.4
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "2 out of 3 merged PRs checked by a CI test -- score normalized to 6",
"points": 1.5,
"status": "partial",
"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 2/22 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 2.5,
"status": "met",
"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 fuzzed",
"points": 5,
"status": "met",
"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": "26 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"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"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 4
},
"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": "good",
"name": "AI Readiness",
"value": 73,
"weight": 0.04,
"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.842,
"agent_instruction_files": [
".github/copilot-instructions.md"
],
"agent_instruction_max_bytes": 3607
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": ".github/copilot-instructions.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".github/copilot-instructions.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": "32 of 38 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 32,
"sampled": 38
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.026,
"toolchain_manifests": [
"examples/basic/go.mod",
"examples/collection_management/go.mod",
"examples/configuration/go.mod",
"examples/crud_operations/go.mod",
"examples/error_handling/go.mod",
"examples/schema_and_index/go.mod",
"examples/vector_query/go.mod",
"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": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "1 of the last 38 commits agent-authored or agent-credited",
"points": 5.3,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"sampled": 38
}
}
],
"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": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 75993,
"source_files_sampled": 49,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/49 source files over 60KB",
"points": 53.9,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 49,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"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? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"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-31T17:08:26.642301Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/z/zvec-ai/zvec-go.svg",
"full_name": "zvec-ai/zvec-go",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}