JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [
"iot",
"networking",
"robotics",
"spine"
],
"is_fork": false,
"size_kb": 17884,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 110187,
"Zig": 177642
},
"pushed_at": "2026-07-22T16:39:39Z",
"created_at": "2025-01-05T01:52:37Z",
"owner_type": "Organization",
"updated_at": "2026-07-22T16:41:17Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "Zig",
"significant_languages": [
"Zig",
"Go"
]
},
"owner": {
"blog": null,
"name": "Pois Noir",
"type": "Organization",
"login": "poisnoir",
"company": null,
"location": null,
"followers": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/193758454?v=4",
"created_at": "2025-01-05T01:43:34Z",
"is_verified": null,
"public_repos": 10,
"account_age_days": 563
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2026-07-22T16:39:48Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2026-07-17T23:54:35Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-07-17T22:55:06Z"
}
],
"recent_commits": [
{
"oid": "b8ad020e223ecb34ac73f43d1c99f2ca945aa09c",
"body": null,
"is_bot": true,
"headline": "chore: release v0.1.3 [skip ci]",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-07-22T16:39:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ca4b35d581c65937cd09a8e99ef9a3517413e41",
"body": null,
"is_bot": false,
"headline": "chore: trigger release for pub/sub mailbox redesign [release]",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-22T16:38:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5907ffe6798391b8544aff683365ab17fa486fa1",
"body": "The ring buffer bounded how far a slow subscriber could fall behind, but\npublish() still wrote to every client's socket synchronously under one\nlock, so a subscriber that stopped draining could stall delivery to every\nother subscriber and every other publish() call on that topic. Each\nconnected client now gets its own background writer task fed by a small\nmailbox (latest value wins); publish() only ever does an in-memory value\ncopy and an event flip, never a blocking socket write.",
"is_bot": false,
"headline": "Replace ring-buffer pub/sub with per-client latest-value-wins mailbox",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-22T16:33:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b939f8f3568bbdf3c815b9b0da45889d8cd9ba8",
"body": "…equential",
"is_bot": false,
"headline": "change pub/sub to use ring buffer for subscriber and publisher t be s…",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-07-20T20:55:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24d46b7a1adfb015a1e3efd6e6b5031381d042fc",
"body": "…causes message curruption",
"is_bot": false,
"headline": "fixed a threading bug in calling spined at the same time in one node …",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-07-20T18:54:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb4ceeb3cbe055311432c390a43b76356750f5b6",
"body": null,
"is_bot": false,
"headline": "bug fixes in spined and go client and new unit tests to capture the bugs",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-07-20T18:00:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac7f39f80f1d562991b758a0c77ce5a6ea9d8b00",
"body": null,
"is_bot": false,
"headline": "fixed squid removal tests",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-07-20T15:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc7c0072b0b190778383812f34052f3b9aa3f50b",
"body": null,
"is_bot": false,
"headline": "Delete .claude directory",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2026-07-20T15:20:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8875ff540b29cdc422ccd8b370050adec6e4a65c",
"body": null,
"is_bot": false,
"headline": "removed squid and moved its functionality to clients",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-07-20T15:16:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1385f30176b5b029ffef9283198f46b39c2a576",
"body": "Go's module resolution requires a git tag prefixed with the subdirectory\nfor a module that isn't at the repo root - without it, go get on\nclient-go's own module path fails with \"unknown revision\" even though the\nplain vX.Y.Z tag works fine for the Zig side. Both tags point at the same\ncommit, so this is still one shared version number per release, just two\nrefs to it. Verified by manually adding client-go/v0.1.2 as an alias tag\nfor the existing v0.1.2 release and confirming go get resolves it.",
"is_bot": false,
"headline": "release pipeline: also tag client-go/vX.Y.Z alongside vX.Y.Z",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-17T23:58:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62400efcaece7ceffe4bcdea025719f09e3980f0",
"body": null,
"is_bot": true,
"headline": "chore: release v0.1.2 [skip ci]",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-07-17T23:54:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c581fa0674497088a0e61e4a62d14ba909f56882",
"body": "client-go/go.mod declared module github.com/poisnoir/spine-go with no\n/client-go suffix, left over from before the Go/Zig monorepo merge moved\ngo.mod out of the repo root. Go's module resolution requires the import\npath to match where go.mod actually lives, so as of v0.1.1 there's no\nvalid module at the repo root at all - go get github.com/poisnoir/spine-go\nfails outright. Renamed the module (and every internal/example import) to\ngithub.com/poisnoir/spine-go/client-go.",
"is_bot": false,
"headline": "fix client-go module path to match its subdirectory location [release]",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-17T23:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93af4ced08ad44f6d51d15f9a5f2d77b97bbb30a",
"body": null,
"is_bot": false,
"headline": "added gitignore and releases",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-17T23:05:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99f4817e54fc90359416cd34b607088570b8fb63",
"body": null,
"is_bot": true,
"headline": "chore: release v0.1.1 [skip ci]",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-07-17T22:54:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7077a8878894c88741192b4bfd53ec2584a26770",
"body": null,
"is_bot": false,
"headline": "fixed pipline",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-17T22:54:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8960bef3a02e3b3cf8e7d20b99daee4b8902c171",
"body": null,
"is_bot": false,
"headline": "added go client",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-17T22:23:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37c26617855f3736c592cb4d1eeaec55c76e712f",
"body": "…ServiceCaller/ThreadedService\n\nAn entity is meant to live as long as its node does, the same way a\nlong-running HTTP server doesn't get told to stop individual handlers.\nEach entity now shares its node's context directly instead of deriving\nits own cancellable one. Close()/cancel semantics for Subscriber and\nServiceCaller specifically are coming back later, designed rather than\nbolted on.",
"is_bot": false,
"headline": "Remove entity-level Close()/cancel from Publisher/Subscriber/Service/…",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-11T04:49:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5dccf50639370c64b1600b617c4d90a565a29c2",
"body": null,
"is_bot": false,
"headline": "updaed benchmarks",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-07-09T04:00:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd7d0a1887af63b7f37189bc90ff5858d59629a5",
"body": null,
"is_bot": false,
"headline": "did improvements in routin leakage and fixed a bug in subscriber",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-18T18:55:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c38a6c811afdd39ca9d551b537872f74ed298711",
"body": null,
"is_bot": false,
"headline": "removed write func",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-18T17:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0fcf84c638ce2cc3d8f1654c4b290991a71e6e80",
"body": null,
"is_bot": false,
"headline": "fixed bugs linked contexts running out",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-18T17:11:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58e3d51a955a3e28a5f203b379e652a94c7fd68e",
"body": null,
"is_bot": false,
"headline": "updated readme",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-16T21:26:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19fb02d4f7d48330e69661f790065e2daeb310a1",
"body": null,
"is_bot": false,
"headline": "moved connect to constructor",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-16T21:05:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec6931e59a55b52599632fd1124a258fd958c12f",
"body": null,
"is_bot": false,
"headline": "moved away from kcp to unix socket",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-06-16T20:50:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f71549ad4e654423b80d54f4437e06ca4c48ff51",
"body": null,
"is_bot": false,
"headline": "did a redesign on subscriber api.",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-26T19:49:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "196c9f2639d478f7eb9bdeeff58d8cb8fa0670b9",
"body": "…oad requests",
"is_bot": false,
"headline": "fixed a bug in subscriber. ping requests were being processed as payl…",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-12T13:31:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fce5a2294797d36acfdbcd3f275729a10f2d42b3",
"body": "…it tests for sub/pub",
"is_bot": false,
"headline": "fixed a bug in discovery service for publishers, todo: really need un…",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-11T15:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c48c995f2b0e185c99ec92861e5b676c17969b9",
"body": null,
"is_bot": false,
"headline": "fixed a bug in service caller decoding",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-11T13:56:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e296f39a4cbce5216dd26c2c5c189786c489fb7",
"body": null,
"is_bot": false,
"headline": "fixed a bug in logging",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-07T18:51:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f421487663b16360aa38ef7800d287407cfb3c8",
"body": null,
"is_bot": false,
"headline": "fixed a bug in service sending response back",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-05-07T18:39:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73e7b6ad2852192ef7bd52593432636b91e21edf",
"body": null,
"is_bot": false,
"headline": "changed naming to be more compliant with avahi",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-04-23T20:59:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b5314f661c2eb7860ae1c50eaca6450c968f389c",
"body": null,
"is_bot": false,
"headline": "cleaned up some parts of code",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-04-23T18:36:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "77cad4c800d6929a9c9204042b369b144504849f",
"body": null,
"is_bot": false,
"headline": "fixed examples",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-04-09T17:01:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "667d729145f4c22b01171b15e4d40d5a9a6d0df3",
"body": null,
"is_bot": false,
"headline": "removed optional encryption to required",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-04-09T13:54:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f5ecbb8c4e229a852e4aa5f307ac429c4a320d5",
"body": null,
"is_bot": false,
"headline": "added context cancelation to service caller",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-31T20:59:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8195f2dd14b7088f412ac602f3cf3b2900f89b59",
"body": null,
"is_bot": false,
"headline": "removed caching ips and it seems it has solved random hangings",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-31T20:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25b0d0bb325f465ecad85de6b7ffbae89a3de1c1",
"body": null,
"is_bot": false,
"headline": "added error msg returns",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-31T17:17:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17db3b66f3437c348f2145c7c58eb453246c773f",
"body": null,
"is_bot": false,
"headline": "feat: changed subscriber to get the lastest data only",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-30T14:22:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45b005b5cb35bff4defa9978c56942d06ef7ae93",
"body": null,
"is_bot": false,
"headline": "fix: fixed ping code for subscriber",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T21:03:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbbce0c727e50ec6f84bfbd557cd539fb62f3d06",
"body": null,
"is_bot": false,
"headline": "fix: fixed not sending operation code in publisher",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T20:27:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9be449088be704fbcb0ef2497f28e7b503d7267",
"body": null,
"is_bot": false,
"headline": "feat: add backoff to subscriber",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T20:01:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2c79b170486b75be3243571a05f3edc593ac65f",
"body": null,
"is_bot": false,
"headline": "feat: got pub/sub initial connection working",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T18:53:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "916c1de5381bb1ef83083c4036bfd8d05959a423",
"body": null,
"is_bot": false,
"headline": "fix: fixed subscriber run not being spawned",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T18:28:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94b9f73f0c6ab7b64a4bfb7d66b4e23083e34e1e",
"body": null,
"is_bot": false,
"headline": "fix: removed py files",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T17:48:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f279157fe8ee4707b08a0a08963524633d572873",
"body": "…performance so it might get changed later",
"is_bot": false,
"headline": "feat: added new publisher. it uses a lot of reasourse to achive high …",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-27T17:47:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9c96d75e555967468733a1d5fff729ec5c4ee0f",
"body": null,
"is_bot": false,
"headline": "feat: restructured some pub/sub code",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-26T18:49:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b188032d1f1d5509f432423669fc2a9856cada52",
"body": null,
"is_bot": false,
"headline": "added error encoder and publisher base",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-13T18:12:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41c0e7a63182963f277afe9215357468a84b689f",
"body": null,
"is_bot": false,
"headline": "fixed handler error not being returned",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-13T13:23:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71617b47b9a13b92d7a27b990029203af4c3ba0d",
"body": null,
"is_bot": false,
"headline": "updated readme",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-12T19:55:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8476ebc20e846fa535abe6cb1408ac03c591b5c0",
"body": null,
"is_bot": false,
"headline": "added benchmark for threaded service and unit tests",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-12T19:22:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8294f779f17a3fc2bba47b4ccb408e8dcc42a539",
"body": null,
"is_bot": false,
"headline": "added threaded service",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-12T18:49:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ea9631ed122e4a91125943fa8661abd11e59bf2",
"body": null,
"is_bot": false,
"headline": "added base for subscriber",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-11T14:11:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98ebbc0c05b0376b92db5e65f970ed4f95c29a47",
"body": null,
"is_bot": false,
"headline": "added benchmark for with encryption",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-10T19:54:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54a0fca6598c7b30bd372836f6981e700b49a990",
"body": null,
"is_bot": false,
"headline": "added benchmark",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-10T19:22:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6914664a66d6b2813a0f8e4cd2a07c4ca7683f36",
"body": null,
"is_bot": false,
"headline": "fixed a bug for handler not being set and some indexing bugs",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-10T18:30:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff84890e471d666f0a864becca88f7d4e898cfe8",
"body": null,
"is_bot": false,
"headline": "added op code. testing waiting",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-05T21:59:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "add2772c50a2d783924aaf66a442a99ac9fd6866",
"body": "… code",
"is_bot": false,
"headline": "adeded examples and fixed service a little bit. need to add operation…",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-05T21:08:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3ad31193e5e3b0bb514fb576587be6a05f3bb65",
"body": null,
"is_bot": false,
"headline": "added connection multiplixing",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-05T18:21:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "089c6fc633b4d6b36614c955358685459bf1c817",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-04T21:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a6289e977761a768a32b8cf2dbf403c1eb8c70c",
"body": null,
"is_bot": false,
"headline": "added base to add conntection pooling",
"author_name": "agharibipour",
"author_login": null,
"committed_at": "2026-03-04T21:58:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c95efe88bb42a9152000f5d8d658e0392ee374e",
"body": null,
"is_bot": false,
"headline": "Fix mad-go repository link in README",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2026-03-04T18:37:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "663bb9af041d24b9d8fe75315ccea028f7a3d2db",
"body": null,
"is_bot": false,
"headline": "added queue system for handler instead of staling messages",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-02-20T21:00:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1f2a5f56d4ead099f45ddfcc67bbebd63908357",
"body": null,
"is_bot": false,
"headline": "fixed service caller",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-02-16T22:51:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd54fe088f6dad15560a71efc7a9c250a5d84dd7",
"body": null,
"is_bot": false,
"headline": "fixed merge confs",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-02-16T18:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa53679f0f34b3428bc066be7909dc16988d4723",
"body": null,
"is_bot": false,
"headline": "added some uptimizations and namespace",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-01-30T22:12:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85d54fe8a8793a3c3c5760e987eb28553cd54187",
"body": null,
"is_bot": false,
"headline": "I did a majour api redesign pulse update on the discovery",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2026-01-25T19:34:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a507ad5539e797bd5c37e6cf492746da8ba53cc",
"body": "updated the readme",
"is_bot": false,
"headline": "Merge pull request #15 from Pois-Noir/zero-conf",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-06-25T20:00:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4fbd5d73bc2a7c421ce370fbd551f96ef287bf8",
"body": null,
"is_bot": false,
"headline": "updated the readme",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-25T20:00:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "251af555f07607ec853483b4042a68edd4491f1a",
"body": "renamed the package and moved some files",
"is_bot": false,
"headline": "Merge pull request #14 from Pois-Noir/zero-conf",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-06-25T19:42:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ca86da7105ee8b82a3b5f384f6af00c2bb70fa9",
"body": null,
"is_bot": false,
"headline": "renamed the package and moved some files",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-25T19:42:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e59bbb49ccd81cb7353101889ca8e100332653b",
"body": "Zero conf added to replace botzilla server",
"is_bot": false,
"headline": "Merge pull request #13 from Pois-Noir/zero-conf",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-06-25T19:04:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7da23951ad1f7e7de5d72ff3cee2860941f8939",
"body": "…ages and functions",
"is_bot": false,
"headline": "finished zero conf look up. a clean up is needed for old and new pack…",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-25T19:03:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "525b1048b755429e929affce3292cb0d9160cb80",
"body": null,
"is_bot": false,
"headline": "added zero conf",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-24T00:20:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41726c9478175441a7e08127d28b7285b17be6d6",
"body": "updated dependency and added example",
"is_bot": false,
"headline": "Merge pull request #12 from Pois-Noir/amir-karim-bc",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-06-19T16:46:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd05dfe8f506cc6ac5fe3d23a4ca8e6f6bb80ace",
"body": null,
"is_bot": false,
"headline": "updated dependency and added example",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-19T16:45:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4653676f17bc023639892d2921ff83228dc3f89f",
"body": "updated botzilla with new header structure",
"is_bot": false,
"headline": "Merge pull request #11 from Pois-Noir/amir-karim-bc",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-06-16T22:35:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ae540d78bd36df15e410f7e3f3d730b32106163",
"body": null,
"is_bot": false,
"headline": "fixed new component",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-16T22:34:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a3c5f7cb889050a0b08ed75880336cb19af52f7",
"body": null,
"is_bot": false,
"headline": "fixed component with new core design",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-16T22:27:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b508607ed8bacc807d47bc79045ca3cc87ea00d",
"body": null,
"is_bot": false,
"headline": "fixed error checking and naming with new packages",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-16T22:18:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "413747b0b988d3bf72b4e4c35d934474b9a36ec3",
"body": null,
"is_bot": false,
"headline": "cleaned up bunch of stuff",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-16T20:54:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "acf37e0e0dc21be3ae0ce6fca6c5f94238a1d2ae",
"body": null,
"is_bot": false,
"headline": "fixed couple of stuff",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-16T20:40:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf349c30040cac6638b069fff2bad6ce4120b66e",
"body": null,
"is_bot": false,
"headline": "need to push before moving onto the server",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-14T22:07:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13631788d9fc402433a40a4e754a021ba1f8f612",
"body": null,
"is_bot": false,
"headline": "refactored parts of component code, need to speak with Amir",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-14T18:05:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f867e85c0a3295e2adddb2811f10f533fdee87eb",
"body": null,
"is_bot": false,
"headline": "partially refactored the request function in core package",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-14T17:00:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de35f4ee09aca4fccae7baa54c4f32821796a48c",
"body": "replace raw connections with a buffered reader, added more error checks like checking if all of the body was rcvd or not etc",
"is_bot": false,
"headline": "refactored parts of ConnectionHandler function in the core package",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-14T00:21:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17f4977f01cd747dfb739a3bbc7ca2733062a54f",
"body": null,
"is_bot": false,
"headline": "fixed dependencies",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-13T04:55:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c22bb99cb781df76d88a1eb357f9aed7452c736e",
"body": null,
"is_bot": false,
"headline": "code refactored, code is divided into seperate packages",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-13T04:27:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92cb2c3d2cd666dbeb67e37216e366d4b46a7ba2",
"body": null,
"is_bot": false,
"headline": "moved tunnel to its own package, refactored all the code",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-13T04:05:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15f6f51473d1bb0050ea4e2d0b1aa1ea32004ffe",
"body": "…s we are having to constantly make changes and re-import them",
"is_bot": false,
"headline": "removed all the imported repos, because there were too many of them a…",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-13T03:12:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "609ec69d54162e056956213effa828bb5f357bf5",
"body": null,
"is_bot": false,
"headline": "added the Mammad repo into botzilla client",
"author_name": "Nafiz Karim",
"author_login": "karimNafiz",
"committed_at": "2025-06-13T01:53:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1549e7571bd0e15780b77a44eae55a7aaa98e464",
"body": null,
"is_bot": false,
"headline": "safemap changed in tunnel",
"author_name": "sassanghz",
"author_login": "sassanghz",
"committed_at": "2025-06-06T21:19:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c38e2a37959ab23adb852133a2c3070b66252ebe",
"body": null,
"is_bot": false,
"headline": "added some comments and todos",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-06T21:00:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2198a2813c850ad0a81dbaa72c5577b9dc373f0c",
"body": null,
"is_bot": false,
"headline": "finished tunnel, TODO it needs testing",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-04T23:11:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba7028a6ff236fdd0a9a27fcbabee4eb6d385656",
"body": null,
"is_bot": false,
"headline": "added basic tunnel",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-02T20:23:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "defedc21dbdae4489f2d92dccaaebb29079f4f89",
"body": "…itten in udp",
"is_bot": false,
"headline": "commented out broadcast due to inefficient code. it is gonna the rewr…",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-06-01T21:08:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7b6e00de2bbf93530d37ab55bb947ac342bc318",
"body": null,
"is_bot": false,
"headline": "removed unused code",
"author_name": "rima1881",
"author_login": "rima1881",
"committed_at": "2025-05-21T23:13:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00df0792cadc1cc3798552a1755f7ead2443e56f",
"body": "Devwithsassan",
"is_bot": false,
"headline": "Merge pull request #8 from Pois-Noir/devwithsassan",
"author_name": "Amir",
"author_login": "rima1881",
"committed_at": "2025-02-03T14:34:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cc4cffab0efd647a6c85843ff34036f0c8525b4",
"body": null,
"is_bot": false,
"headline": "encrypting spicy messages",
"author_name": "sassanghz",
"author_login": "sassanghz",
"committed_at": "2025-01-31T23:25:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cda4671dfca83e84983fb6b5d1107eba515786cb",
"body": null,
"is_bot": false,
"headline": "send message func back to normal",
"author_name": "sassanghz",
"author_login": "sassanghz",
"committed_at": "2025-01-31T22:13:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3afdcd40a309196c068bb6c6964ae600b10bcf68",
"body": null,
"is_bot": false,
"headline": "sendMessage func added with encryption responses",
"author_name": "sassanghz",
"author_login": "sassanghz",
"committed_at": "2025-01-31T21:59:00Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 3,
"commits_last_year": 63,
"latest_release_at": "2026-07-22T16:39:48Z",
"latest_release_tag": "v0.1.3",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 15,
"days_since_latest_release": 0,
"mean_days_between_releases": 2.4
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": 25,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/poisnoir/spine-go/client-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/poisnoir/spine-go/client-go",
"is_deprecated": false,
"latest_version": "v0.1.3",
"repository_url": "https://github.com/poisnoir/spine-go",
"versions_count": 2,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-22T16:39:37Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 0,
"stars": 5,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"client-go/go.mod"
],
"largest_source_bytes": 20441,
"source_files_sampled": 26,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"client-go/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/cenkalti/backoff/v4",
"manifest": "client-go/go.mod",
"ecosystem": "go",
"version_constraint": "v4.3.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 7,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 23,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "rima1881",
"commits": 62,
"avatar_url": "https://avatars.githubusercontent.com/u/110826233?v=4"
},
{
"type": "User",
"login": "karimNafiz",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/180468190?v=4"
},
{
"type": "User",
"login": "genericlearner",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/116695133?v=4"
},
{
"type": "User",
"login": "sassanghz",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/117306645?v=4"
},
{
"type": "User",
"login": "bryjen",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/73836176?v=4"
}
],
"contributors_sampled": 5,
"top_contributor_share": 0.747
},
"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": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 0,
"reason": "license file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 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": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "b8ad020e223ecb34ac73f43d1c99f2ca945aa09c",
"ran_at": "2026-07-22T21:07:19Z",
"aggregate_score": 3.5,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2025-06-25T20:00:57Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/poisnoir/spine",
"host": "github.com",
"name": "spine",
"owner": "poisnoir"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 52,
"inputs": {
"security": 35,
"vitality": 80,
"community": 17,
"governance": 59,
"engineering": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 80,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"commits_last_year": 63,
"human_commit_share": 0.97,
"days_since_last_push": 0,
"active_weeks_last_year": 15
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "15/52 weeks with commits",
"points": 10.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 15
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "63 commits in the last year",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 63
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 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": 3,
"latest_release_tag": "v0.1.3",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 2.4
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "3 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 3
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~2.4 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 2.4
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 17,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"forks": 0,
"stars": 5,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "5 stars",
"points": 9.8,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 5
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": true,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 59,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 5,
"top_contributor_share": 0.747
},
"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 75% of commits",
"points": 5.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 75
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "5 contributors",
"points": 6.8,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 5
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"merged_prs": 7,
"open_issues": 0,
"closed_issues": 23,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 46.8,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "7/7 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 7,
"decided": 7
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"followers": 3,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "poisnoir",
"public_repos": 10,
"account_age_days": 563
},
"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": "3 followers of poisnoir",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 3,
"login": "poisnoir"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "10 public repos, account ~1 yr old",
"points": 10.7,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 10
}
},
{
"code": "account_age_years",
"params": {
"years": 1
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/poisnoir/spine-go/client-go"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 0
},
"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 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "2 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 2
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 56,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [
"iot",
"networking",
"robotics",
"spine"
],
"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": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"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": 35,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 35,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.5
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 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": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 3
},
"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": "at_risk",
"name": "AI Readiness",
"value": 36,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 12,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.216,
"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": "21 of 97 human commits state their intent (structured subject or explanatory body)",
"points": 11.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 21,
"sampled": 97
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"client-go/go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "client-go/go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "client-go/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": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Zig",
"largest_source_bytes": 20441,
"source_files_sampled": 26,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Zig without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Zig"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/26 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 26,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "example",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-22T21:07:27.531634Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/p/poisnoir/spine.svg",
"full_name": "poisnoir/spine",
"license_state": "absent",
"license_spdx": null
}