Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 513,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 296198
},
"pushed_at": "2026-07-17T15:48:18Z",
"created_at": "2026-07-10T17:36:36Z",
"owner_type": "User",
"updated_at": "2026-07-17T15:48:33Z",
"description": "A Go → Erlang/OTP transpiler",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://boris.muehmer.net/",
"name": "Boris Mühmer",
"type": "User",
"login": "bsmr",
"company": null,
"location": "Nürnberg, Germany",
"followers": 29,
"avatar_url": "https://avatars.githubusercontent.com/u/328183?v=4",
"created_at": "2010-07-10T11:28:02Z",
"is_verified": null,
"public_repos": 1389,
"account_age_days": 5856
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.7",
"kind": "patch",
"published_at": "2026-07-17T15:48:31Z"
},
{
"tag": "v0.3.6",
"kind": "patch",
"published_at": "2026-07-17T13:47:40Z"
},
{
"tag": "v0.3.5",
"kind": "patch",
"published_at": "2026-07-17T10:33:50Z"
},
{
"tag": "v0.3.4",
"kind": "patch",
"published_at": "2026-07-13T14:17:28Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2026-07-13T08:02:16Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2026-07-13T04:57:25Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2026-07-12T21:59:00Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-12T19:39:15Z"
},
{
"tag": "v0.2.7",
"kind": "patch",
"published_at": "2026-07-12T19:39:14Z"
},
{
"tag": "v0.2.6",
"kind": "patch",
"published_at": "2026-07-12T19:39:13Z"
},
{
"tag": "v0.2.5",
"kind": "patch",
"published_at": "2026-07-12T19:39:12Z"
},
{
"tag": "v0.2.4",
"kind": "patch",
"published_at": "2026-07-12T19:39:11Z"
},
{
"tag": "v0.2.3",
"kind": "patch",
"published_at": "2026-07-12T19:39:10Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-07-12T19:39:10Z"
}
],
"recent_commits": [
{
"oid": "3a2b483780d16333b25f167f447a8279feab1ff3",
"body": "Wintermute 0.3.7 closes the type-switch story — the seventh feature step of the\n0.3.x transpiler line. It adds the two remaining clean forms and a correctness\nfold.\n\n- **Tagless form `switch M.(type)`** (no alias) — detection-only cases in both\n the value form (`case M of …`) and the receive form (\n[…]\nS\nis scanned transitively), so the alias stays usable only as a whole value.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.7 — tagless + multi-type type switch",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T15:34:12Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "f0f9b99655abbaf125a0076578f8cb4bb6f039ff",
"body": "… tasks)\n\nTask 1: the fold (bodyUsesBareAlias stops at a nested same-alias TypeSwitchStmt).\nTask 2: multi-type cases (emitCaseClause -> []string, list iteration, struct-\nWildcard + throwaway _X guard, whole-alias reuse, v.Field reject, list dedup).\nTask 3: tagless form (typeSwitchAssert, emitTypeSwi\n[…]\neive).\nTask 4: runnable rung (multi-type + primitive + default, erlc + erl).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.7 tagless + multi-type type switch (4 TDD…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T14:34:42Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "cf14745620c8d022839cf3253f08315f331ddadf",
"body": "…ted-alias fold)\n\nTagless switch M.(type) (no alias, detection-only: struct -> {tag, _} wildcard,\nprimitive -> _V when is_integer(_V) throwaway guard) in both value and receive\nforms. Multi-type case Ping, Pong: -> N Erlang clauses sharing a duplicated body,\nfields never bound (Go keeps v at the int\n[…]\n rejected (guard-collision\nhazard: int32/byte/etc collapse onto is_integer).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.7 tagless + multi-type type switch (+ nes…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T14:26:16Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "98f72f3a92ff15d51530371c1346efeae1c15905",
"body": "Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: README + handover — 0.3.6 (non-struct type-switch cases) released",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T13:49:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1c9ddfdc3be239b5efbc55ea15f6e96b7670f0f3",
"body": "Wintermute 0.3.6 widens the type switch with non-struct (primitive) cases and\nwhole-alias V — the sixth feature step of the 0.3.x transpiler line.\n\n- **Non-struct cases → Erlang type guards.** `case int:`/`string:`/`bool:`/\n `float64:` lower to `V when is_integer(V)` / `is_binary(V)` / `is_boolean(\n[…]\nore merge. The\nwhole-branch silent-mis-transpile hunt found nothing further.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.6 — non-struct type-switch cases",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T13:40:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "0c70c2910ed72ef7831e1716e06c03e9ab0a1923",
"body": "Task 1: whole-alias V for struct cases (V = {tag,Fields}) + alias-as-variable\nfoundation (registerAlias, bodyUsesBareAlias, emitExpr bare-alias change).\nTask 2: primitive cases int/string/bool/float64 -> is_integer/is_binary/\nis_boolean/is_float, value + receive forms, seenTag primitive dedup.\nTask 3: runnable rung — mixed value type switch compiles with erlc and runs.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.6 non-struct type-switch cases (3 TDD tasks)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T12:53:25Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "63ef30717e531af2252634b57bbe6fe184274010",
"body": "…ias V\n\ncase int/string/bool/float64 -> Erlang type guards (is_integer/is_binary/\nis_boolean/is_float), landing in the shared type-switch clause builder so both\nthe value form (case X of) and the receive form (receive) get them. The alias V\nbinds the whole matched value: always for primitive cases (\n[…]\nult: stays required for the value form;\nseenTag dedup extends to primitives.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.6 non-struct type-switch cases + whole-al…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T11:05:09Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a63577069a6368c6f0c77167df87a3bfc8e8fa0f",
"body": "Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: checkpoint — tick 0.3.5 plan steps (released, closed)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T10:42:42Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "216de4866707f2254ea3e8596aee429b1718fc31",
"body": "…ased\n\n- README: 0.3.5 roadmap row, coverage (plain-value type switch), status 0.3.5.\n- Spec: revised the default-semantics sections to default-REQUIRED for the value\n form, with a Copilot-gate revision note (the original default-optional\n let-it-crash was a silent mis-transpile — Go falls through, Erlang crashes).\n- Handover: 0.3.5 released, resume at 0.3.6 brainstorm; records the gate fold and\n the value-falls-through lesson.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: README + spec + handover — 0.3.5 (plain-value type switch) rele…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T10:35:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1e23a8c35fc7fccbf554fde8841d535873418e40",
"body": "Generalize the type switch from the otp.Receive() operand (0.3.4) to any value\noperand: `switch V := X.(type)` now lowers to an Erlang `case X of {tag, Field…}\n-> body; … end`, the value-branching counterpart to the receive dispatch.\n\n- Struct-typed cases only, reusing the shared clause builder (tag\n[…]\n-> guards), multi-type\ncases, whole-alias V, tagless switch, init statement.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.5 — plain-value type switch",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-17T10:19:44Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e3596d3c192edc1fbd445479a418edb18a383bb1",
"body": "… spec fixup\n\nFour tasks: (1) extract shared emitTypeSwitchClauses refactor, (2) emitTypeSwitch\nentry dispatch + emitTypeSwitchValue (case X of), (3) lock inherited value-path\nguards + bump deferred versions to 0.3.6+, (4) runnable erlc rung. Spec fixup:\noperand/alias must be uppercase (Erlang-variable rule).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.5 plain-value type switch (4 TDD tasks) +…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-16T20:38:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "060a47eb4479ce04ad835fab1ffc9581b8fad5bd",
"body": "…(type) → case X of)\n\nFifth step of the 0.3.x line: generalize the type switch from the otp.Receive()\noperand (0.3.4) to any value operand, lowered to Erlang `case X of … end`.\nStruct cases only, optional default (let-it-crash on no-match). Core is a\nrefactor: extract the shared clause loop into emitTypeSwitchClauses, consumed by\nboth the receive wrapper and the new value wrapper.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.5 plain-value type switch (switch v := X.…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-16T20:32:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "74359d5d894b5d639fe8b19d5084fb135a30e664",
"body": "… tick 0.3.4 plan steps\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: checkpoint — 0.3.4 closed, handover points to 0.3.5 brainstorm;…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T14:32:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce754b706be446daacc143025162d7817380c494",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: README + handover — 0.3.4 (type-switch receive) released",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T14:19:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7be3b1c31d138e90adb28964c0c0eabee9e67442",
"body": "Fourth step of the 0.3.x transpiler-language line: the type switch over a\nreceived message. Go's other type-branching form now maps to Erlang's central\nprocess construct — a multi-clause `receive`.\n\n- **`switch v := otp.Receive().(type)` → multi-clause `receive`** — a process\n waits for a message a\n[…]\npile hunt found none, and two post-review cleanups\n(unified struct-type check, removed a dead statement case) folded before release.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.4 — type-switch receive",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T14:12:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9cf0dd26e5b02fd7c7fdb09ebb02f7f57232e77f",
"body": "Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.4 type-switch receive (6 TDD tasks)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T12:58:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "784485e5e6e440271007c8f58d4ce7eeaf099c6a",
"body": "…ceive().(type) → multi-clause receive)\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.4 type-switch receive (switch v := otp.Re…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T12:40:12Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4570e45d0540d7499c8fc1933367543cdb408b50",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: README + handover — 0.3.3 (switch) released",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T08:06:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e569f1cddf00f69bb3bf178a745b4f3f3b85e40",
"body": "Third step of the 0.3.x transpiler-language line: the tagged expression\n`switch`. Alongside `if`, Go's other value-branching form now maps to an\nErlang `case`, and a pre-existing integer-literal mis-transpile is closed.\n\n- **Tagged `switch` → Erlang `case`-on-value** — the expression-switch form,\n \n[…]\n whole-branch opus review returning \"ready to merge\" after\nfolding two coverage tests (string case value, receive-field switch tag).\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.3 — switch",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T07:56:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "25dd62894ae4ad4d771c6d082903a0d48275d242",
"body": "… (unreleased)\n\nMid-flow checkpoint: development-0.3.3-work @ 04767c9 is complete, green,\nand whole-branch-review-approved but NOT yet released. Records the exact\nfinishing flow for a fresh session to pick up: VERSION bump, squash to\nmain, Copilot gate, push origin->upstream->github, GitHub release,\nproduction-0.3.3. Last released version remains 0.3.2.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.3.3 (switch) built & verified, ready for finishing…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T07:18:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08669043bc318fa5aa565e4b1ae91e14917898f7",
"body": "3 tasks: (1) emitSwitch (tagged expression switch -> case-on-value: single\nliteral case values, required default sorted last, per-clause emitBranch\nscoping, empty-clause guard) + emitStmts wiring + TypeSwitchStmt rejection,\n(2) real-toolchain rung running a switch classifier, (3) verification gate\n+ handover.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.3 switch (3 TDD tasks)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T06:12:25Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "34b78eb2b0d6499f9ed18b35dbde43abcc7ebf55",
"body": "…-on-value)\n\nThird step of the 0.3.x line: the tagged expression switch → Erlang\ncase-on-value, reusing the 0.3.2 case/emitBranch scoping machinery. Single\nliteral value per case, default required (emitted as _, sorted last), each\nclause terminal, per-clause bound scope. Empty-clause guard (the 0.3.\n[…]\nvalue cases (guards), tagless (if-chain), type switch (guards),\nfallthrough.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.3 switch (tagged expression switch → case…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T06:07:09Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a4555ebf3586f706d0d5d43b4428dab2168a0cd4",
"body": "…p, coverage, status)\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: README — reflect 0.3.1 value model + 0.3.2 control flow (roadma…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T05:56:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b617d1ff9cfc2e39883e89338726d13794cfa6b8",
"body": "…Hub release)\n\nRecords the control-flow release, the Copilot gate catching an empty\nif/else branch emitting invalid Erlang (fixed + folded before push), and\nthe branch x receive-field seam test. Next step: 0.3.3 (switch -> case).\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.3.2 control flow released (all three remotes + Git…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T04:58:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea16579fdd44fd8f8d728ed55ed8287d8ccd0f6a",
"body": "Second step of the 0.3.x transpiler-language line: control flow. The flat\nfunction body becomes a value-yielding tree, and recursion becomes useful.\n\n- **Operators** — the full set beyond `+`: arithmetic `-` `*`, `/`→`div`,\n `%`→`rem`; comparison `==`→`=:=`, `!=`→`=/=`, `<` `>` `>=`, `<=`→`=<`\n (e\n[…]\n× branch-binding intersection — the exact class the\n0.3.1 Copilot gate caught — and confirming it is rejected, not silently emitted.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.2 — control flow",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-13T04:53:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c60222e034ae6e1f153b1d56176ab0b2a6712273",
"body": "…ement\n\n4 tasks: (1) full operator set + unary not + precedence parens + ParenExpr,\n(2) if/else and bare-if base case -> Erlang case with per-branch bound\nsnapshot/restore scoping, (3) real-toolchain rung running a recursive\nfactorial to a checked result, (4) verification gate + handover.\n\nSpec refi\n[…]\nse branches stay lenient (last value),\nconsistent with the 0.3.1 body model.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.2 control flow (4 TDD tasks) + spec refin…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T22:44:08Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "36d1e3ddd8ea110930b1387e8f3bc93fb3e6354a",
"body": "Second step of the 0.3.x line: arithmetic/comparison/boolean operators\nand `if` → Erlang `case`, turning 0.3.1's flat body into a value-yielding\ntree and making recursion useful (base case). Key correctness point:\nbranch scoping via `bound` snapshot/restore (maps.Clone) so sibling case\nclauses may r\n[…]\ning context. switch,\nelse-if chains, side-effect-only if deferred to 0.3.3+.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.2 control flow (operators + if → case)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T22:29:28Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "471b02d61c2f57b58b43545f1a4bca8b8ffd4bc8",
"body": "…ub release)\n\nRecords the value-model release, the Copilot gate catching 2 Critical +\n1 Minor silent-mis-transpile bugs (receive-field name collision) that the\ninternal reviews missed, and the fix folded before the github push. Next\nstep: 0.3.2 (operators + if/case/switch).\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.3.1 value model released (all three remotes + GitH…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T22:00:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6d15752c1894788cfe8ff2952fd017965eb2a4f",
"body": "Opens the 0.3.x transpiler-language line: the transpiler gains a value model,\nwithout introducing control flow yet.\n\n- **Function parameters** — `func Add(X, Y int) int` transpiles to `add(X, Y) ->`.\n Parameter names must be uppercase-leading (Erlang variables); lowercase is\n rejected, never auto-\n[…]\n beyond `+`, `if`/`case`/`switch`, guards, multi-value\nreturn, cross-module calls) still error by design and are deferred to 0.3.2+.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.1 — value model",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T21:54:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "992fe550f1d7aceb05cf71db648e935a85c30cba",
"body": "Bite-sized TDD tasks: (1) parameters + f/N arity, (2) trailing return,\n(3) := bindings with immutability/rebinding guards, (4) calls with args,\n(5) real-toolchain erlc rung, (6) verification gate + handover. Reuses\nthe existing ladder transpileToErl helper and erlang.Layout for the rung.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: plan — Wintermute 0.3.1 value model (6 TDD tasks)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T21:01:40Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0a91021d979f865bdf239d1145e5c413e767ec84",
"body": "…calls-with-args)\n\nOpens the 0.3.x transpiler-language line. Value-model step: function\nparameters, trailing return, local bindings (:=), and calls with\narguments. Deliberately stops short of control flow (if/case/switch,\noperators, guards → 0.3.2+). Approach A: minimal statement-set extension\nof the existing flat comma-sequence emitter, no speculative tree\nabstraction.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: spec — Wintermute 0.3.1 value model (params, return, bindings, …",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T20:24:17Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "aaa136ca84801e893a67300aca2c97f7aba55d86",
"body": "…anded\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: checkpoint — 0.3.0 released + GitHub releases page + README exp…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T20:05:06Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "53dae4580bdefcedc487079a6026ce0f214376d5",
"body": "…tHub-release step\n\nPopulate the README with a milestone/release-history table (0.1.x–0.3.x), a\n'what Wintermute transpiles today' coverage summary, a release badge, and a\ncurrent-release status. Add a project-workflow rule: publish a GitHub release\nfrom the tag on every github push (not just a bare tag).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: expand README (roadmap, release history, coverage); document Gi…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T19:41:03Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4e0a2bbc970075c1dc8497d0cc6f631a2326ba6e",
"body": "…ing + security sweep, all three remotes)\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.3.0 released (0.2.x promotion: control-node harden…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T19:30:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "54d6855eae281f0218ed1ba978b53c12b8b54577",
"body": "…eep)\n\nPromote the feature-complete 0.2.x line (single-node → distributed → gen_server\n→ application → persistent node → release → self-contained target system →\nnative interop) to 0.3.0. This is a hardening/consolidation release: no new\ncapability, no transpiler or pkg/otp change.\n\nControl-node har\n[…]\ngosec 5 HIGH all accepted G703 (path-traversal-taint on wm's own artifacts).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.3.0 — promotion of the 0.2.x line (review + fix sw…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T19:24:45Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "52a83e3b04df9dea1a52732f0e849bad722383e9",
"body": "…ed + pushed all three)\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.2.7 released (native Erlang interop, merged + tagg…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T13:46:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7c268cb127e917707c5ba8a740cc338256974fc5",
"body": "…atch)\n\nMake Wintermute Go-first but Erlang-capable: `wm build`/`wm release` now accept\nhand-written `.erl` modules alongside Go sources, for constructs the transpiler\nsubset cannot express but OTP needs (records, macros, complex guards, binary\npattern matching, list comprehensions).\n\nMechanism (sin\n[…]\n erlc), a shared\nusage-hint constant (DRY), and a writeModule helper (KISS).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.7 — native Erlang interop (whole-module escape h…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T13:41:10Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7672fc0d58bca535e82c36840cde2122b1133d8a",
"body": "…remotes)\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.2.6 released (merged, tagged, pushed to all three …",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T09:28:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "308cb51fb5e0ff19885c570639494c8191c835ed",
"body": "The seventh step of the 0.2.x line and the second with no transpiler change:\npure CLI/release tooling extending the 0.2.5 release builder.\n\n- `wm release --self-contained` produces a standalone OTP target system tarball\n (`<app>-<vsn>.tar.gz`, unpacking into a single `<app>-<vsn>/` dir) that Ops ru\n[…]\n on real OTP 29.0.3; govulncheck/gitleaks clean; gosec only-HIGH\nis the accepted G703 taint class (G115 fixed, G110/G122 annotated).\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.6 — self-contained OTP target system",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T08:30:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "538bae04bcd0d26ffa8fd21960896c51639937d5",
"body": "The sixth step of the 0.2.x line (single-node → distributed → gen_server →\napplication → persistent node → full OTP release), and the first with no\ntranspiler change: pure CLI/release tooling.\n\n- Two-step flow (the Erlang way): `wm release <sources>` builds a formal OTP\n release (lib/<app>-<vsn>/eb\n[…]\nreal OTP 29.0.3; CLI e2e green; govulncheck/gitleaks clean; gosec all accepted\ndual-use classes (cookie run-file 0o600 not flagged).\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.5 — full OTP release",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-12T05:47:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "049e19a8cd68d07665ddacc1a9d0f38497f50385",
"body": "…olded in)\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover — 0.2.4 released (merged, tagged, Copilot-gate fixes f…",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T17:43:38Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "83e9a91a8969c95d399509a34d536cfcdb4fba82",
"body": "…and path-traversal\n\nCopilot review-gate found two real input-validation defects in the 0.2.4\nCLI commands: callCmd/stopCmd/statusCmd spliced a gen_server name and/or\nnode name raw into the erl -eval source (Erlang code injection), and\nstatePath joined an unvalidated app name into the State-File pat\n[…]\ne, resolveApp, and statePath (the single choke\npoint for read/write/remove).\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "fix(cli): validate app/node/gen_server names to close eval-injection …",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T17:38:23Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "824d8109a2e8f1b83534f52f61fd6cf01a49f362",
"body": "wm keeps a real, named Erlang node alive hosting the transpiled OTP application\n(erl -detached, application:start/1) instead of boot-and-init:stop, driven over\nDistributed Erlang.\n\n- otp markers StartServerGlobal / CallGlobal -> gen_server {global, Name}\n registration + cross-node call; local Start\n[…]\nplus an\n unmocked wm start->status->call->stop end-to-end integration test.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.4 — persistent node (detached-first)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T17:28:59Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7c5413c2fbbecea40e35aea88b591526bea4cf0b",
"body": "The go.muehmer.eu/wintermute vanity import path is live and resolves to the\nGitHub mirror; go install ...@latest / @v0.2.3 builds a working wm binary.\nDrop the stale 'Coming soon' / 'Nothing works yet' notes and document the\nvanity path and pkg.go.dev link.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: verify vanity import path, refresh install + status docs",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T13:03:19Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "068b9d9ee8a843d1c31073325ae3142a0265938f",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: checkpoint 0.2.3 release — handover + plan marked complete",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T12:30:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1e441d654b06aaac9f7cc987e5855cd33504f4f",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: note deferred flag-parser DRY refactor in backlog",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T12:26:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9489ca5bc3ef19497236625a05fc9cfa04d17dac",
"body": "Copilot review gate findings addressed before the first gated-remote push of\nthe 0.2.x line: sort method-carrying type names for deterministic .erl output,\nand guard otp marker call arity to return a positioned error instead of an\nindex-out-of-range panic on wrong-arity calls.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "fix(transpile): deterministic method order and marker arity guards",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T12:26:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8afc44da50f883f61d06c1b19032a99e0987cb6",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: handover after 0.2.3 merge (next: 0.2.4 persistent node)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T12:15:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aebbf51c23d6a73f922fe2585d1d49e5cd921e31",
"body": "Fourth step of the 0.2.x line (option A2): package the gen_server under a\nsupervisor inside an OTP application, and prove interchangeability with\nhand-written Erlang at ladder rungs IV.1–IV.4, booting via\napplication:start/1 with a generated .app resource.\n\n- New otp markers: StartSupervisor, Child \n[…]\n + go test ./... green; all 16 ladder rungs pass on\nOTP 29.0.3; govulncheck/gitleaks clean; gosec at the accepted dual-use findings.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.3 — OTP application deployment",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T12:13:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7e1291b94dba07c947f826a6f5492acb8852ceea",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs(sdk-index): regenerate SDK index",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T11:13:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13851fbfd1667fe926402577eb635838ec7e2ef9",
"body": "0.2.2 is merged to main and pushed; no work branch open. The next step is the\n0.2.3 brainstorm (branch first, then brainstorming). Fixes the stale\n'ready to merge' / 'finish 0.2.2' wording so a fresh /pickup starts at 0.2.3.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: correct handover after 0.2.2 merge (next: 0.2.3 brainstorm)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T11:07:31Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0e808076c34d430d822fdb8d4677a5a6214d943e",
"body": "Third step of the 0.2.x line: express the echo as a real OTP behaviour. A Go type\nwith Init/HandleCall methods transpiles to -behaviour(gen_server) with init/1 and\nhandle_call/3 — the first step from the main() script model toward the service\nmodel (deployment/cluster is 0.2.3).\n\nNew otp markers Sta\n[…]\nvulncheck/gitleaks clean, gosec unchanged at the accepted dual-use findings.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.2 — gen_server service model",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T10:55:56Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b568cdf257f0d4b20f23274ceaa6f44f6bfa5716",
"body": "Second step of the 0.2.x line: prove the echo across two connected BEAM nodes.\nTranspiled Wintermute is interchangeable with hand-written Erlang cross-node,\nnot only in a single node.\n\nTwo new otp markers RegisterGlobal/WhereisGlobal -> global:register_name/\nglobal:whereis_name (pkg/otp + two emitCa\n[…]\nck/\ngitleaks clean, gosec unchanged at the accepted 0.2.0 dual-use findings.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.1 — distributed interop (ladder step II)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T07:46:38Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "83ebc7a93edc07a1fd45bf43cf8d4cea389b8cf2",
"body": "First step of the 0.2.x line: a pure hardening release. Clears the full 0.1.0\nreview backlog (16 items) so the Go→Erlang transpiler never emits silently-wrong\nErlang and the toolchain verifies its downloads and rejects hostile input.\n\nCorrectness (transpile): atom-collision detection; lowercase-fiel\n[…]\nang\ninstall (download → SHA-256 verify → build → erl reports OTP 29) exit 0.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.2.0 — hardening release (0.1.0 backlog cleared)",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-11T07:02:24Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8787838d454a4ffe5757522a91ce85087b7257a4",
"body": "The transpiler is a deterministic go/ast → Erlang compiler with no LLM at\nruntime; \"AI\" describes how Wintermute is built, not how it transpiles.\nFix the misleading \"KI/AI-driven transpiler\" wording in README and CLAUDE.md.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: clarify Wintermute is AI-first-developed, not an AI transpiler",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T22:35:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bb72ef83304ce61feb15e10a914915478ae2d1a8",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: add 0.2.0 handover with Copilot roadmap hints",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T22:22:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3a544c2c661a53e1222957c6f259fed2908d8fa",
"body": "Single-node echo interop ladder proving transpiled Wintermute (valid Go) is\ninterchangeable with hand-written Erlang at the process level.\n\n- pkg/otp: transpile-only OTP marker API (Spawn/Register/Whereis/Send/Receive/…)\n- internal/pkg/transpile: valid-Go AST → Erlang source for the echo subset\n (g\n[…]\nlang install|list\n- gated E2E ladder rungs 1–4, verified on OTP 29.0.3\n\nStdlib only; TDD throughout; main()→run() with injected I/O.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "feat: Wintermute 0.1.0 — Go→Erlang echo interop ladder",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T22:10:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dfbe7d5e0c0bfce1b37da8d4e1d51d4847bd3a2b",
"body": "Go tools (govulncheck, gosec, gitleaks) via go install; semgrep in\n~/.python/venv/wintermute/. Corrects the venv path and lists run commands.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: record installed security tooling and venv path",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T19:25:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9191d3f40dbe437d50211a2fff10e1c137722f41",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: record installed Copilot review-gate invocation",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T19:17:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba76a7d114565b82085d702c4c4fe3f4a1e4cae1",
"body": "- TDD red->green first; main()->run() with TDD-covered internal/pkg/\n- DRY/KISS + Google Go Style Guide enforced and reviewed\n- structure: pkg/ (public), internal/pkg/ (logic), internal/cmd/ (tools)\n- no temp files in root; binaries to bin/; avoid Makefiles, prefer go install/get\n- security tooling:\n[…]\nia go install, Python venv under .python/venv/, avoid Node\n- GitHub Copilot as third-opinion review gate before github-bound commits\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: codify strict Go rules, tooling policy, and Copilot review gate",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T19:15:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "61e6d6527b4c58e844007fb3ffe7f04ab5176a2e",
"body": "Only origin is developed on; upstream and github are gated release targets\nreceiving tagged squashed ff-merges from main only.\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: document project git workflow with gated remotes",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T18:59:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8353a3a4aca508a3e23f6d19607b7017dc13e8d9",
"body": "- cmd/wm: main() -> run() entry point (wiring only)\n- internal/pkg/cli: command dispatcher with subcommand stubs\n- CLAUDE.md: language rules, main->run pattern, structure\n- .gitignore: ignore bin/\n- align module path go.muehmer.eu/wintermute in README\n\nSigned-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "chore: scaffold Go project structure and CLAUDE.md",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T17:55:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71f7caff09a01580d3788e4cf0f6b0175f9eeef6",
"body": "Signed-off-by: Boris Mühmer <328183+bsmr@users.noreply.github.com>",
"is_bot": false,
"headline": "docs: correct copyright holder name to Boris Mühmer",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T17:45:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b33d4ccd1e13aa194413f3844a5c0f006bd2ec59",
"body": null,
"is_bot": false,
"headline": "chore: initialize repository with .gitignore, LICENSE, and README",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T17:40:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f5674df91625edead549e4e43ee19bc53b704f2",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Boris Mühmer",
"author_login": "bsmr",
"committed_at": "2026-07-10T17:40:44Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 14,
"commits_last_year": 65,
"latest_release_at": "2026-07-17T15:48:31Z",
"latest_release_tag": "v0.3.7",
"releases_from_tags": false,
"days_since_last_push": 5,
"active_weeks_last_year": 2,
"days_since_latest_release": 5,
"mean_days_between_releases": 0.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "go.muehmer.eu/wintermute",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": null,
"registry_url": "https://pkg.go.dev/go.muehmer.eu/wintermute",
"is_deprecated": false,
"latest_version": "v0.3.7",
"repository_url": null,
"versions_count": 14,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-17T15:34:12Z",
"latest_version_yanked": null,
"days_since_latest_publish": 5
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"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": 60333,
"source_files_sampled": 61,
"oversized_source_files": 1,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5184
},
"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": "bsmr",
"commits": 65,
"avatar_url": "https://avatars.githubusercontent.com/u/328183?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"has_docs_dir": true,
"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": "3a2b483780d16333b25f167f447a8279feab1ff3",
"ran_at": "2026-07-22T19:38:08Z",
"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,
"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/bsmr/wintermute",
"host": "github.com",
"name": "wintermute",
"owner": "bsmr"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"security": 26,
"vitality": 72,
"community": 24,
"governance": 38,
"engineering": 48
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 72,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"commits_last_year": 65,
"human_commit_share": 1,
"days_since_last_push": 5,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 5
}
}
],
"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": "65 commits in the last year",
"points": 16.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 65
}
}
],
"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": 100,
"inputs": {
"releases_count": 14,
"latest_release_tag": "v0.3.7",
"releases_from_tags": false,
"days_since_latest_release": 5,
"mean_days_between_releases": 0.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "14 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 14
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 5 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 5
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~0.5 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 0.5
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 24,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 38,
"weight": 0.24,
"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. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "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": 57,
"inputs": {
"followers": 29,
"owner_type": "User",
"is_verified": null,
"owner_login": "bsmr",
"public_repos": 1389,
"account_age_days": 5856
},
"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": "29 followers of bsmr",
"points": 10.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 29,
"login": "bsmr"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "1389 public repos, account ~16 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 1389
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"go.muehmer.eu/wintermute"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 5
},
"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 5 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 5
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "14 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 14
}
}
],
"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": 48,
"weight": 0.2,
"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": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "critical",
"name": "Security",
"value": 26,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"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
}
]
},
{
"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": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 77,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.985,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5184
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "CLAUDE.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "64 of 65 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 64,
"sampled": 65
}
}
],
"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": 62,
"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.538,
"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": "35 of the last 65 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 35,
"sampled": 65
}
}
],
"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": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 60333,
"source_files_sampled": 61,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/61 source files over 60KB",
"points": 54.1,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 61,
"oversized": 1
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-22T19:38:12.578836Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/b/bsmr/wintermute.svg",
"full_name": "bsmr/wintermute",
"license_state": "standard",
"license_spdx": "MIT"
}