JSON-Rohbericht maschinenlesbar
{
"data": {
"icon": {
"bytes": 2353,
"width": 135,
"height": 135,
"rejected": [],
"collected": true,
"media_type": "image/png",
"source_url": "https://avatars.githubusercontent.com/u/54788905?v=4&s=256",
"source_type": "avatar",
"content_hash": "e1867892494cc0351031e00fafc79f8cac6d1ddc2e9bdcbd3b88aaf9a7e57f3c",
"candidates_considered": 1
},
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 290,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 325107
},
"pushed_at": "2026-07-26T06:17:54Z",
"created_at": "2026-07-20T04:29:48Z",
"owner_type": "User",
"updated_at": "2026-07-26T06:17:48Z",
"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": "justphantom",
"type": "User",
"login": "justphantom",
"company": null,
"location": null,
"followers": 0,
"avatar_url": "https://avatars.githubusercontent.com/u/54788905?v=4",
"created_at": "2019-09-02T04:07:38Z",
"is_verified": null,
"public_repos": 16,
"account_age_days": 2529
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2026-07-26T06:17:31Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-07-25T19:44:00Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-25T17:14:28Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-07-25T15:29:39Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-07-25T12:14:27Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-07-24T12:13:22Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-07-24T11:31:49Z"
},
{
"tag": "v0.0.8",
"kind": "patch",
"published_at": "2026-07-24T02:40:13Z"
},
{
"tag": "v0.0.7",
"kind": "patch",
"published_at": "2026-07-24T00:32:53Z"
},
{
"tag": "v0.0.6",
"kind": "patch",
"published_at": "2026-07-23T06:36:57Z"
},
{
"tag": "v0.0.5",
"kind": "patch",
"published_at": "2026-07-22T17:39:15Z"
},
{
"tag": "v0.0.4",
"kind": "patch",
"published_at": "2026-07-22T16:40:41Z"
},
{
"tag": "v0.0.3",
"kind": "patch",
"published_at": "2026-07-22T14:52:53Z"
},
{
"tag": "v0.0.2",
"kind": "patch",
"published_at": "2026-07-22T07:13:47Z"
},
{
"tag": "v0.0.1",
"kind": "patch",
"published_at": "2026-07-21T17:22:08Z"
}
],
"recent_commits": [
{
"oid": "69c35d0e90013990956f298a1f7af0b780282f0d",
"body": "按 docs/simplification-assessment.md 落地 P0 五项零风险简化:\n\n1. 删除 highevent_constructor.go(-72):仓内零调用的测试构造器\n (NewHighEvent + 9 个 WithXxx option),注释自称供外部 bridge 使用,\n 本仓应自洽,外部需要可自行维护。\n\n2. discardHandler 用 slog.NewTextHandler(io.Discard, nil) 替代(-9):\n 自实现 4 方法 slog.Handler 接口冗余——标准库 NewTextHandler 已可用\n \n[…]\n块合并为\n 单个 if 块,5 行注释精简到 5 行。\n\n净减少 96 行(143-47),无 API 变化,全部 -race 通过,golangci-lint 0 issues。\nP1(finalText/finalReasoning 合并 + drainSrcOnExit/waitForTerminalInGrace\n合并)和 P2(pump/processOneEvent 统一)待后续。",
"is_bot": false,
"headline": "Simplify code: P0 five-item cleanup (-96 lines)",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-26T06:17:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c0a16b2368fa345a54165f5d2f729b2c6f8ac2cc",
"body": "…leak\n\n修复代码审查发现的 3 个 P0 问题(2 CRITICAL/HIGH 中阻断生产可靠性):\n\nC1 [CRITICAL] dispatch 写已 close chan panic 让 run 静默退出:\n Subscribe/Unsubscribe 替换订阅者时与 dispatch 存在 race——dispatch 持有\n 旧 chan 引用,写入触发 panic,沿调用栈传到 run 的 defer recoverPanic,\n run 整个退出不再重连;close(done) 仍执行 → Close() 调用方完全无感,\n 整条流静默死亡。修复:dispatch \n[…]\numpExitsWhenConsumerStuck:consumer 不读 + ctx 取消,pump 3s 内退出\n- TestNewRequest_PreservesBaseURLPathPrefix:6 种 baseURL 形态前缀全保留\n- TestNewRequest_QueryMerged:query 合并不破坏\n\n全部 -race 通过,golangci-lint 0 issues。",
"is_bot": false,
"headline": "Fix P0 reliability issues: dispatch panic, baseURL prefix, goroutine …",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T19:44:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "524c4a9c9f9d9254c1043aa47b1fec10dfca1a96",
"body": "文档与示例与 v0.2/v0.3 新能力严重脱节(examples/basic 仍写「思考增量默认丢弃」,\nREADME 未提任何 v0.2-v0.3 API),集成方接入成本高。本次同步:\n\nREADME:\n- Client 配置表加 WithLogger/WithBusinessIdleTimeout/WithDrainGrace (v0.2)\n- 「完整 turn 报告 (v0.3.0)」章节:Thinking/ReasoningTokens/ModelID/\n ProviderID/SessionTokens/SessionCost 五个新 Getter 的用法\n- 「可观测性与 c\n[…]\nng flag\n- 新增 observability demo:WithLogger + OnIdle + RunWithHandle +\n WaitTerminal,演示 v0.2 可观测性与 ctx 取消兜底;加 -cancel-after flag\n- examples/README 加 observability 条目与选型建议\n- .gitignore 忽略 example 二进制产物",
"is_bot": false,
"headline": "Docs/examples: cover v0.2-v0.3 capabilities",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T17:50:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fafcd96d2b82afb94fa70f6194aa7caf0e070cd3",
"body": "按宽语义决策:HighEventResult 集中 turn 全部元数据,不拆事件。\n\n新增字段(纯叠加,向后兼容):\n- ReasoningTokens() int:本次 reasoning token 用量(来自 step-finish,对齐\n input/output/cache 用 int)\n- ModelID()/ProviderID() string:本次回复所用 model(message 级)。双源:\n pump peek message.updated 帧为主,空则调 GetMessage 兜底(对称\n finalText/finalReasoning 模式)\n- Se\n[…]\n样 peek)\n- HighEventResult 时统一回填 model + session usage\n\n5 新测试:MessageInfo model 字段反序列化、reasoningTokens 投递、model 双源\n(SSE + GetMessage 兜底)、session usage 来自 GetSession。全部 -race 通过。\ngolangci-lint 0 issues。",
"is_bot": false,
"headline": "Promote HighEventResult to full turn report (model + session usage)",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T17:14:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e4981c7aa09326f3708c6a767d51d386cd5ef53c",
"body": null,
"is_bot": false,
"headline": "Remove AGENTS.md",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T16:53:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec5b437d0a7fc529e38f1dc0847012485a3f6db8",
"body": "- run.go pollAsked: 用类型转换替代 struct literal(S1016)。\n PermissionAskedData/QuestionAskedData 与对应 Request 类型字段同构,\n 类型转换未来加字段不同步时会编译失败,比 literal 更安全。\n- run_child_test.go: 删除未使用的 childSessionJSON(unused)。\n 所有测试已改用 []SessionInfo{{...}} + writeJSON,helper 从未被调用。",
"is_bot": false,
"headline": "Clean up golangci-lint findings",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T15:39:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72cc9bfaf6315d48ff41651b1ca3e13461e534dd",
"body": "让调用方零状态获取 turn 完整思考文本,对称现有 accText→result 模式:\n\n- HighEvent 加 thinking 字段 + Thinking() getter(仅 HighEventResult 携带)\n- 新增 HighEventThinkingDone kind:mapToHighEvent 处理 part.updated\n {type=reasoning text!=\"\"} 终止帧,投递服务端整合的权威完整文本。\n 建块帧 text=\"\" 仅登记 partID,事件本身丢弃。\n- pump 加 accThinking 累积 HighEventThinking\n[…]\nnking,ctx 取消时 drain 路径同样回填 thinking\n\n7 新测试覆盖:建块帧丢弃、终止帧投递、delta 累积、终止覆盖累积、\ndrain 路径回填、无 reasoning 默认空、多 step 拼接语义。全部 -race 通过。\n\nAPI 兼容:HighEventThinking 行为不变;新增 kind/getter 纯叠加;\nRun/RunWithHandle 签名不变。",
"is_bot": false,
"headline": "Add HighEvent.Thinking for full reasoning text retrieval",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T15:29:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "75dbe3a6d70709f1bfcaaf1187fb120ad393c599",
"body": "Plan C P0 (sse-silence-fix-plan-sdk.md v3) — SDK 视角根治 SSE 静默故障:\n\n4.1 slog logger 注入:WithLogger option,覆盖 connect/dispatch/\nwatchdog 等埋点;recoverPanic 记 stack;cancelConn 带 reason。默认\nnewDefaultLogger(discardHandler,Go 1.22 无 slog.DiscardHandler)。\n\n4.2 双 watchdog:心跳(15s 保留)+ 业务空闲(5min,pendingAsked\n自动维护,\n[…]\np、decode err heartbeat、\nbusiness idle trigger/skip/no-cancel/not-under-lock、heartbeat still\ncancels、drain recovers/empty/out-full、WaitTerminal receive/expire/\nchan-close、recoverPanic logs。全部 -race 通过。",
"is_bot": false,
"headline": "Add SSE silence failure observability and pump drain",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-25T12:14:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4c20954145f542c06088694e9497f9060f283b45",
"body": "task 工具 spawn 的子 session 是独立 sid,其 permission.asked /\nquestion.asked 事件挂在子 sid 上,GlobalEventStream.dispatch 按 sid 严格路由,\n父订阅者收不到——subagent 调需权限的工具时父 turn 永久挂起。\n\npump 内嵌 childTracker:周期性 + task 事件触发调 ListChildren 发现全部\n子孙 session,对新 sid Subscribe + 起 forward goroutine 只转发 asked\n(子 text/tool/idle 一律丢避免污\n[…]\n终止父 turn)。askedTracker\n跨父子 SSE/REST 轮询按 requestID 全局去重。pollAsked 拉全局 pending 后\n按父+子 sid 集合过滤。\n\nlark-bridge 零改动:handlePermissionAsked 按 requestID,ReplyPermission\n按 directory 隔离,子 session 与父同 directory。",
"is_bot": false,
"headline": "Forward subagent child session asked events in Run",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-24T12:13:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c984b2545f799e03b64e0bdcf039428f85dab8ff",
"body": "复用 session 时 pump 首轮 pollTodo 会把服务端持久化的上一轮残留\ntodo 当新快照投递。Todo 无 ID/时间戳无法逐项区分新旧,故按\nsession 是否复用区分:resumed 时首轮仅登记基线不投递,本 turn\ntodo 变化仍由 SSE 或后续 ticker 轮询按签名差异补投。",
"is_bot": false,
"headline": "Suppress stale session todo on resumed first poll",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-24T11:31:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c941d4cc8ac3ef4c56bec6b6065c39aa014ef822",
"body": null,
"is_bot": false,
"headline": "Consolidate run test mock servers into shared core",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-24T02:40:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cae00b1e451bcf485a7b9226b124b41b0ff2f8a3",
"body": null,
"is_bot": false,
"headline": "Dedup HTTP request build and SSE connect preamble",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-24T02:40:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd3709fcb9871bc25a62dc9ac9daa5dd8ad5caec",
"body": null,
"is_bot": false,
"headline": "Add todo.updated high event with compensation polling",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-24T02:20:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45ccb6e9251178afe67e21d6ee8b3e43c97d8ae4",
"body": null,
"is_bot": false,
"headline": "Recover lost asked events via compensation polling in Run",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-24T00:32:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d97861aa6c4fa84c6d719ae4f20ec7a14734fb66",
"body": null,
"is_bot": false,
"headline": "Add SessionMessage.ReasoningText to assemble reasoning parts",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-23T06:36:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6dfc29808ae2d847e53d32703d054f6987ad013",
"body": "Reasoning content arriving via message.part.delta (mapped to HighEventThinking)\nwas an unverified assumption — no test exercised it against real traffic, and\nthe existing golden used a model that produced reasoning_tokens=0.\n\n- Capture a real reasoning turn (glm-5.1) into testdata/sse_frames_reasoni\n[…]\n now backed by captured evidence.\n- Un-ignore the two SSE goldens so the replay tests run as permanent guards\n instead of skipping in a fresh checkout.\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Anchor reasoning (thinking) SSE delivery with a golden replay",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-22T17:39:15Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2a9c35da09baeb74f8d395a16c5920a66956c6cd",
"body": null,
"is_bot": false,
"headline": "Remove custom opencode agent definitions",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-22T17:26:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23627388800620e1aa2e0c1c6df2e116a642dadb",
"body": null,
"is_bot": false,
"headline": "Scope permission/question replies by directory query",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-22T16:40:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08808c2814ca34ae249c0761c18ca9c93300df37",
"body": null,
"is_bot": false,
"headline": "Follow latest step assistant messageID in multi-round agent loop",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-22T14:52:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81da0b6ab3ff85151038883ee68766df9e18c92b",
"body": null,
"is_bot": false,
"headline": "Fix historical gofmt issues in event_test.go and session.go",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-22T07:13:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c96a4d518a8fdd6bad43856a07d67fe5f45d586",
"body": null,
"is_bot": false,
"headline": "Test asked events passthrough and document consume pattern",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-22T06:44:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "891289210db351f1b68c287237c5d9a5cd6c9f21",
"body": null,
"is_bot": false,
"headline": "Add permission_asked/question_asked high events with payload passthrough",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-22T06:41:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "152116738ba31fab7be2ffca85c775cbc6b414d5",
"body": null,
"is_bot": false,
"headline": "Document session status/message APIs and Run result text source",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T17:22:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b615cde14944f8cc79bec296c1794f689d1c19f5",
"body": null,
"is_bot": false,
"headline": "Send default limit=200 in ListSessions to avoid serve truncation",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T17:11:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d617cacd0b7d8efe6cd122f2d247665d5b83548",
"body": null,
"is_bot": false,
"headline": "Prefer server-persisted text for Run final result",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T16:17:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea2030cbb98dee2ee20155b02270c70cea72e4d0",
"body": null,
"is_bot": false,
"headline": "Add Client.DeleteSessionIfIdle rejecting deletion of busy sessions",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T15:53:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49145303d203477f8d3316249e49c17da5977cff",
"body": null,
"is_bot": false,
"headline": "Add Client.SessionStatuses exposing GET /session/status",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T15:49:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d9a5e12ef0093164236dbb0967e4481eb454675",
"body": null,
"is_bot": false,
"headline": "Add opencode agent team adapted to SDK boundaries",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T15:37:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23a1937fbc19bf4f378353a924db4b572c7def34",
"body": null,
"is_bot": false,
"headline": "Add Client.ListConnectedProviders exposing connected provider ids",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T14:50:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ef0ee72becdabe14cde91718f86acf880e37bae",
"body": null,
"is_bot": false,
"headline": "Assert heartbeat watchdog actually fires cancelConn",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T07:22:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4bfe8f4ae42fb84dc53eb866bbe159a143607e7",
"body": null,
"is_bot": false,
"headline": "Treat step-finish reason=stop as terminal in dispatch",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T07:21:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a22de6a4b40518abf6e1fc33cbf1a006bea1e93d",
"body": null,
"is_bot": false,
"headline": "Fix stale V2 references in examples README",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T07:19:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69778bdc0fe77f4e7067739081b6c81736338e59",
"body": null,
"is_bot": false,
"headline": "Extract PartType constants and document exported types",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T06:25:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ea12c69fa3b6be27493584f6f82a3452105e17b",
"body": null,
"is_bot": false,
"headline": "Annotate intentional nolint for bodyclose/contextcheck/gosec",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T06:14:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4882d28fe40af2bc837b806b4be3733265721f90",
"body": null,
"is_bot": false,
"headline": "Fix HighEventError swallowing server error text",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T05:52:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c95cd50563d5d98ef691380acf8a2a519956012",
"body": null,
"is_bot": false,
"headline": "Stop tracking testdata fixtures",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-21T05:33:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf5c9554886427408bbeafe27dcf64a3d603c5d7",
"body": null,
"is_bot": false,
"headline": "Document prompt tools, file part and FinalText",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:23:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a9f5a33001989265bcba9758350f880ddf1477c",
"body": null,
"is_bot": false,
"headline": "Cover prompt tools, file attachment and final text in live tests",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:23:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba45126fae17d662f4fbdb13aaa81842e768f35d",
"body": null,
"is_bot": false,
"headline": "Assemble final reply text from message history",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:23:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "353ec54c7b667b8bbc8c1a13335b9115bfa8b12d",
"body": null,
"is_bot": false,
"headline": "Support tools switch and file attachments in prompt",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:22:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9ffc53eb59cbaac4f0839c73c59be23d31327f4",
"body": null,
"is_bot": false,
"headline": "Sync README and add requirements checklist",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a10b69477c0fde2da41e6e7f607ccbdb1385c517",
"body": null,
"is_bot": false,
"headline": "Cover new APIs and permission/question reply in live tests",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "657f9dfd7909f61991fbf646cba1729c4d4150ff",
"body": null,
"is_bot": false,
"headline": "Classify tool calls by kind",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3abcc1156651c1e448ba37eca1c553bce545dce2",
"body": null,
"is_bot": false,
"headline": "Add session update API",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be041a8bc902a8e1fdca837ae7e6685bd35ed05e",
"body": null,
"is_bot": false,
"headline": "Add command listing API",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90ac5b58344f3f3314c5e25af141938cb2f2287a",
"body": null,
"is_bot": false,
"headline": "Add skill listing API",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:12:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "767d9931cad1fb23bfd5556881ae6a57f5a30188",
"body": null,
"is_bot": false,
"headline": "Support permission ruleset on session creation",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:11:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36a17ee661c6eb53ee264e6a364b2812ab61f22d",
"body": null,
"is_bot": false,
"headline": "Add todo.updated event properties struct",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-21T02:11:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a9fbff32b54566717a40bcecdc9deb301a6df85",
"body": "…n replay",
"is_bot": false,
"headline": "Replace integration-check with tagged live-server tests and SSE golde…",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-20T19:35:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c31efbabc73c03860aded1cc38631a782faa25b3",
"body": "…directory-scoped bus, basic auth",
"is_bot": false,
"headline": "Fix event layer against live server: properties envelope, v1 events, …",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T18:29:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d5addaceb62a7b8fa86755dd5f78188f45938a9",
"body": null,
"is_bot": false,
"headline": "Tighten exported surface per encapsulation assessment",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T17:26:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37d8964dc9bc2886032878342a44acc2b29be030",
"body": null,
"is_bot": false,
"headline": "Rewrite README for v1 API",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T17:16:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4861e8964e28bf51a046a146d1edee4bff668afc",
"body": null,
"is_bot": false,
"headline": "Migrate SDK to v1 API and encapsulate prompt id generation",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T17:06:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfacfd737e82ed80402d1053fb9c50fb12b5fc67",
"body": null,
"is_bot": false,
"headline": "Wrap SwitchModel body with model key",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T14:44:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35871170c82e0b92f6844e761e839fc95ed1cb4a",
"body": null,
"is_bot": false,
"headline": "Drop SSE probe timeout from Run pump",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T14:44:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be8c69b2e47c57d97b8b9cddb262b470c94d13ea",
"body": null,
"is_bot": false,
"headline": "Fill tool result text from content/error",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T14:24:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af83d1a105300268f59684432d56a9004ba28e70",
"body": null,
"is_bot": false,
"headline": "Fill HighEventResult.result with accumulated text, not finish reason",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T14:09:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f85b7044074630c0a0a27a21221dba237f972fab",
"body": null,
"is_bot": false,
"headline": "Add NewHighEvent constructor for external test use",
"author_name": "Qoder",
"author_login": null,
"committed_at": "2026-07-20T11:03:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8605b0adde74f574b781c1c6c199d33a3e689e98",
"body": null,
"is_bot": false,
"headline": "Add integration examples for SDK consumers",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T08:32:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e79b68c54302e9ed94b2b664a267fb2b9157dab7",
"body": null,
"is_bot": false,
"headline": "gofmt cmd/integration-check",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T08:32:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a36eaf6cfec5c562c82434ce9463208e63f4b64",
"body": null,
"is_bot": false,
"headline": "Clarify Prompt is async in doc and README",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T07:58:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1aa2ea3e408aad50e05a3356577ededbe8d8e70",
"body": null,
"is_bot": false,
"headline": "Add integration-check end-to-end test harness",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T07:44:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49c83558c6dcae4a9f82e499d0359f5980a5a8ce",
"body": null,
"is_bot": false,
"headline": "Fix ModelCapabilities input/output to []string per live server",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T07:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03edd9e5db417938269433d95de655fb815dd15f",
"body": null,
"is_bot": false,
"headline": "gofmt",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:51:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c7670e87e3e5dbed3faf80bdc6b10877dde9afc",
"body": null,
"is_bot": false,
"headline": "Document GlobalEventStream, Run and aux APIs in README",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:51:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "839ec423e29155285817f73c528ccbbd6aa41707",
"body": null,
"is_bot": false,
"headline": "Add Run high-level event synthesis with assistantID filtering",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:48:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e2463b6834906b5d7999d6238a40904d1a2cabb",
"body": null,
"is_bot": false,
"headline": "Add GlobalEventStream with session-routed SSE and heartbeat reconnect",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:30:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36de1e30b4cebe7eb83bded8b93a799005bc7fa5",
"body": null,
"is_bot": false,
"headline": "Add GenerateMessageID with monotonic NTP-rollback safety",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:22:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "184178466463ca764bb870a1adc1fa2bd7282257",
"body": null,
"is_bot": false,
"headline": "Add DeleteSession via v1 endpoint",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:20:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a208f2828dd209bbd5a90ccf37763b8d9ec799e",
"body": null,
"is_bot": false,
"headline": "Add Health check for /api/health",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:19:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfa3437c25447c8167d729ef5e2e1055ac10c738",
"body": null,
"is_bot": false,
"headline": "Add ListAgents for /api/agent",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T06:18:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dc67e6f549393c3bd438876d62e46f5877b5433",
"body": null,
"is_bot": false,
"headline": "Ignore docs directory",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T05:55:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0602cfde040c99d2c2924830e4de4966e92ff8a5",
"body": null,
"is_bot": false,
"headline": "Fix module path to justphantom/opencode-go-sdk-lite",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T05:21:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3d280ffe146ea58eea3e7d6a557125019b2b952",
"body": null,
"is_bot": false,
"headline": "Document implemented API surface in README",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T05:11:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdd1002536b4ca9ba332d5c6fe20c87cf961ba48",
"body": null,
"is_bot": false,
"headline": "Ignore .zcode client metadata",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T05:06:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b390a36667afecd2f50f87abdd2a0e1c97cb5352",
"body": "Stdlib-only thin client covering session lifecycle, prompt, model/provider\nlisting, permission & question replies, and session-scoped SSE subscription\nwith after-cursor reconnect and durable.seq dedup.",
"is_bot": false,
"headline": "Add opencode v2 SDK with SSE reconnect",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T05:04:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f2efb85a2de7ab9ca2d8a3e35507d5fba4ef87c",
"body": null,
"is_bot": false,
"headline": "Add contributor guidelines",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T04:34:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1654ba3fa5750d7407933d307db7d71ddc6a124e",
"body": null,
"is_bot": false,
"headline": "Add opencode OpenAPI spec",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T04:33:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce247f8f91de802d35c31e7e53e2968529952b9b",
"body": null,
"is_bot": false,
"headline": "Ignore bin output directory",
"author_name": "loneagle",
"author_login": null,
"committed_at": "2026-07-20T04:33:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7acb430f1fa824b640c4f0fe72cf086dac89b1dc",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "justphantom",
"author_login": "justphantom",
"committed_at": "2026-07-20T04:29:49Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 15,
"commits_last_year": 80,
"latest_release_at": "2026-07-26T06:17:31Z",
"latest_release_tag": "v0.3.2",
"releases_from_tags": true,
"days_since_last_push": 10,
"active_weeks_last_year": 2,
"days_since_latest_release": 10,
"mean_days_between_releases": 0.3
},
"artifacts": {
"collected": true,
"structure": [
"tree.go_importable"
],
"declarations": []
},
"community": {
"has_readme": true,
"has_license": true,
"readme_badges": {
"hosts": [],
"total": 0,
"header": 0,
"collected": true,
"has_inspect_badge": false
},
"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/justphantom/opencode-go-sdk-lite",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"categories": [],
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/justphantom/opencode-go-sdk-lite",
"declared_type": null,
"is_deprecated": false,
"latest_version": "v0.3.2",
"repository_url": "https://github.com/justphantom/opencode-go-sdk-lite",
"versions_count": 15,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-26T06:17:31Z",
"latest_version_yanked": null,
"days_since_latest_publish": 10
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": 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": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 34152,
"source_files_sampled": 52,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "justphantom",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/54788905?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"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": "69c35d0e90013990956f298a1f7af0b780282f0d",
"ran_at": "2026-08-05T09:09:47Z",
"aggregate_score": 2.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"recent_prs": {
"merged_7d": 0,
"decided_7d": 0,
"merged_30d": 0,
"authors_30d": 0,
"decided_30d": 0,
"sample_size": 0,
"window_days": 30,
"sample_exhausted": false,
"authors_probed_30d": 0,
"newcomer_merged_30d": 0,
"bot_prs_excluded_30d": 0,
"newcomer_authors_30d": 0,
"newcomer_decided_30d": 0
},
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/justphantom/opencode-go-sdk-lite",
"host": "github.com",
"name": "opencode-go-sdk-lite",
"owner": "justphantom"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": "The weighted overall 37 is calibrated to 31 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 37,
"calibrated": 31,
"calibration": "2026-08-02"
}
}
],
"value": 31,
"inputs": {
"security": 26,
"vitality": 63,
"community": 24,
"governance": 33,
"calibration": "2026-08-02",
"engineering": 34,
"ai_readiness": 44,
"weighted_overall_raw": 37
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 63,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "weak",
"name": "Development activity",
"note": null,
"notes": [],
"value": 47,
"inputs": {
"commits_last_year": 80,
"human_commit_share": 1,
"days_since_last_push": 10,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 10 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 10
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "80 commits in the last year",
"points": 17.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 80
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "project was created within the last 90 days. Please review its contents carefully",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"releases_count": 15,
"latest_release_tag": "v0.3.2",
"releases_from_tags": true,
"days_since_latest_release": 10,
"mean_days_between_releases": 0.3
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "15 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 15
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 10 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 10
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.3 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.3
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "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": "at_risk",
"name": "Community & Adoption",
"value": 24,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": 0,
"has_contributing": false,
"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 (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 33,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance, Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance",
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"prs_merged_7d": 0,
"prs_decided_7d": 0,
"prs_merged_30d": 0,
"prs_decided_30d": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0,
"first_time_authors_30d": 0,
"first_time_prs_merged_30d": 0,
"first_time_prs_decided_30d": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 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 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "weak",
"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": 39,
"inputs": {
"followers": 0,
"owner_type": "User",
"is_verified": null,
"owner_login": "justphantom",
"public_repos": 16,
"account_age_days": 2529
},
"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": "0 followers of justphantom",
"points": 0,
"status": "missed",
"details": [
{
"code": "owner_followers",
"params": {
"count": 0,
"login": "justphantom"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "16 public repos, account ~6 yr old",
"points": 21,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 16
}
},
{
"code": "account_age_years",
"params": {
"years": 6
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/justphantom/opencode-go-sdk-lite"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 10
},
"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 10 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 10
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "15 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 15
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 34,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 30,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "weak",
"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": 26,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 26,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 12,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 6,
"scorecard_aggregate": 2.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "weak",
"name": "AI Readiness",
"value": 44,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 7,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.138,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "11 of 80 human commits state their intent (structured subject or explanatory body)",
"points": 7.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 11,
"sampled": 80
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 53,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.013,
"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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "1 of the last 80 commits agent-authored or agent-credited",
"points": 2.5,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"sampled": 80
}
}
],
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 34152,
"source_files_sampled": 52,
"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/52 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 52,
"oversized": 0
}
}
],
"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": {
"top": [
"library"
],
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 3
},
{
"tier": "structure",
"label": "library",
"source": "tree.go_importable",
"weight": 3
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.5.0"
},
"warnings": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-08-05T09:09:51.398760Z",
"schema_version": "0.31.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/j/justphantom/opencode-go-sdk-lite.svg",
"full_name": "justphantom/opencode-go-sdk-lite",
"license_state": "standard",
"license_spdx": "MIT"
}