原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 2265,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 2111090,
"CSS": 25820,
"HTML": 93960,
"TypeScript": 74826
},
"pushed_at": "2026-07-20T05:15:20Z",
"created_at": "2026-05-22T15:40:42Z",
"owner_type": "User",
"updated_at": "2026-07-20T05:11:42Z",
"description": "TUI Engine based on the DOM Architecture",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": null,
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "David Morales",
"type": "User",
"login": "masterkeysrd",
"company": null,
"location": null,
"followers": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/11392958?v=4",
"created_at": "2015-03-09T16:05:12Z",
"is_verified": null,
"public_repos": 29,
"account_age_days": 4158
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.0.4",
"kind": "patch",
"published_at": "2026-07-20T05:15:20Z"
},
{
"tag": "v0.0.3",
"kind": "patch",
"published_at": "2026-07-09T21:34:56Z"
},
{
"tag": "v0.0.2",
"kind": "patch",
"published_at": "2026-07-01T02:14:10Z"
},
{
"tag": "v0.0.1",
"kind": "patch",
"published_at": "2026-06-01T21:01:28Z"
}
],
"recent_commits": [
{
"oid": "cb63a270b82688881bd746f9b7f06490627edab1",
"body": "…izations",
"is_bot": false,
"headline": "docs: update performance metrics in README.md to reflect layout optim…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-19T18:55:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a64f739f4358dc387a8a18869e107b6916a7f44b",
"body": "- Implement CachedBlockSize and SetCachedBlockSize on layout.Node and render.Object interfaces.\n\n- Add block size caching to BaseRender, automatically invalidated by DirtyLayout/ChildNeedsLayout flags.\n\n- Check and update block size cache in IntrinsicBlockSize to prevent flex algorithm probe layouts\n[…]\nan subtrees.\n\n- Optimize propagateOffsets and clampScrollOffsets to skip recursing into clean layout subtrees.\n\n- Update all mock/test and anonymous node implementations to satisfy the new interfaces.",
"is_bot": false,
"headline": "perf(layout): cache intrinsic block size to prevent full relayout walks",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-19T18:52:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ce09cebf6becc91f7fb71beb7eede7e4e269f6a4",
"body": "…llOffsets\n\n- Introduce NeedsScrollSync on the internal DirtyNode DOM interface to track scroll changes separately from structural modifications.\n\n- Update ScrollTo to trigger MarkNeedsScrollSync instead of MarkNeedsSync, allowing pure scroll updates to only mark DirtyScroll on the render tree rather than forcing a full DirtyLayout.\n\n- Skip clampScrollOffsets tree walks completely when layout did not run.\n\n- Avoid calling the expensive ro.MaxScroll() on unscrolled elements.",
"is_bot": false,
"headline": "perf(engine): decouple scroll sync from layout and optimize clampScro…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-19T16:30:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a42453433b512e183acbcb02ff0f3fd03be58361",
"body": null,
"is_bot": false,
"headline": "chore(deps): update dependencies",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-17T22:10:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a5d389401ed7c8a8ce461c5cc0363bdf7aea5f9",
"body": "…d scroll containers\n\n- Remove IsFixedInlineSize check from flex stretch logic so children\n always receive the resolved width constraint regardless of parent\n constraint space.\n- Fix ComputeInlineMinMaxSizes for OverflowWrapAnywhere to compute\n correct min intrinsic size (max single-cell width) instead of the\n full unbreakable run.\n- Add regression test for text wrapping in nested flex + scroll\n container (OverflowAuto) where constraint propagation was broken.",
"is_bot": false,
"headline": "fix(layout): fix text wrapping constraint propagation through flex an…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-17T19:15:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3224546b4beca7f1aa3bdf742a3d80cf69eb4e5b",
"body": "- Extend AcquireLineBreaker with TextOverflow parameter\n- Truncate overflowing lines and append ellipsis character when text-overflow is ellipsis\n- Handle first-item fallback when no previous items fit\n- Wire TextOverflow through from block and list layout contexts",
"is_bot": false,
"headline": "feat(layout): add text-overflow ellipsis support to inline layout",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-15T04:18:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e82e251c1355163f0aceb76ee662d9797dcd4630",
"body": "- Add MinWidth(0) to flex containers to prevent overflow\n- Refactor key event handling: add Esc to blur filter input\n- Support j/k keys for scene navigation when not in input\n- Expand component path on scene change in unfiltered mode\n- Include filter text in dependency array for correct re-subscription",
"is_bot": false,
"headline": "feat(stage): improve keyboard navigation and fix flex min-width",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-14T05:01:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48ac8b5c03e33ec8c1ab8ef1179f13df93b4b67f",
"body": "…wrapper duplication\n\n- Update select element click listener to toggle dropdown (close if open, open if closed)\n- Fix Contains method to correctly compare underlying BaseNode instead of mismatching wrapper/element identities\n- Update elementBase.DispatchEvent to start path traversal from the outer wrapper and correctly walk shadow/overlay/document boundaries",
"is_bot": false,
"headline": "fix(element): toggle select dropdown on click and fix event dispatch …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-11T04:21:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "53e809cf57af3eae4f7540286d02e667606edfa2",
"body": "…lder options\n\n- Move default border, background, and padding to the SelectElement container\n- Configure internal trigger button as transparent flexbox to align chevron to the right\n- Support option with empty value as custom placeholder text\n- Update layout and integration tests to verify new behavior",
"is_bot": false,
"headline": "feat(element): improve select styling, chevron alignment, and placeho…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-11T03:55:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42e97d3d3b4271f0700f291e8d81e66e0cb2f34d",
"body": "- Introduce lineBreakerPool using sync.Pool to reuse LineBreaker instances.\n- Pre-allocate lineItems slice inside LineBreaker and clear it on reuse instead of allocating a fresh slice on every NextLine pass.\n- Update block and list layout to acquire and release LineBreaker instances.",
"is_bot": false,
"headline": "perf(layout): pool LineBreaker and pre-allocate lineItems slice",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-09T21:27:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8549e34b48ea91d854286d8042f87989570fd8d",
"body": "- Cache the most recently queried sub-root text nodes in Document so subsequent offset mapping queries (e.g. inside caret rendering loops) execute via binary search in O(log N) instead of O(N) full subtree traversals.\n- Rewrite sub-root traversal in FindNodeAtByteOffset to be iterative instead of re\n[…]\nk overhead.\n- Pass the pre-computed parent path to ScrolledAbsoluteBoundsPath inside GetBoundingClientRect and GetScrolledAbsoluteBounds to prune search subtrees and avoid full-layout-tree O(N) walks.",
"is_bot": false,
"headline": "perf(dom): optimize FindNodeAtByteOffset and bounding rect queries",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-08T14:36:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ddce857a2e1c85a37519baa2e22f38a4b7eb7104",
"body": "…scheduling\n\n- Expand tab character (\\t) to spaces in PaintFragment and set shaper tab width to 8.\n- Remove background matching optimization in fillRect to fix block repaint glitches.\n- Check active overlays' dirty flags in Engine.hasDirtyUIState() to trigger frame rendering.\n- Add regression tests for dynamic sidebar collapse and overlay junction resolution.",
"is_bot": false,
"headline": "fix(paint): resolve dynamic layout artifacts and overlay dirty frame …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-07T21:53:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "866eef2f7eefeab795c6fd22b9c572088ea63ce9",
"body": "…ckages\n\n- dom/doc.go: logical DOM tree, node types, UA shadow subtrees, element identity, scroll model\n- geom/doc.go: Point, Size, Rect, Edges, Placement geometric types\n- key/doc.go: key event types, modifiers, Kitty extension, F-keys, control codes\n- promise/doc.go: generic Promise[T], Then/Catch/Finally, Scheduler\n- terminal/doc.go: Terminal, Scheduler, Clipboard, ProgressBarState interfaces\n- trace/doc.go: Chrome Trace Event format, Begin/BeginThread/BeginWithArgs\n- Remove repro/main.go",
"is_bot": false,
"headline": "docs: add doc.go files to dom, geom, key, promise, terminal, trace pa…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T23:47:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b8ef4bf6589246add0f24f11f1c72b6f0f2b46f",
"body": "…scroll clamp",
"is_bot": false,
"headline": "fix: use FirstChild/NextSibling walk instead of range Children() for …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T18:38:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a14cecd10677f4f948d0eadd664e1ab65a24467",
"body": "…h replacement\n\n- Add setParent/updateRefsFromRendered to componentInstance interface\n- Walk rendered subtree to wire parent refs on Instantiate, Update, and ReRender\n- Fix reconciler to replace nodes on key mismatch (not just tag mismatch)\n- Add regression tests for key mismatch replacement and stale parent ref propagation",
"is_bot": false,
"headline": "fix: propagate parent refs through component tree and fix key mismatc…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T18:29:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "456d07ab469b15757b7513623334dcf9c66923f5",
"body": "- Add Document.Mutating() guard to skip layout during mutations\n- On unmount, traverse parent chain to find nearest focusable ancestor\n for focus fallback; fall back to root element if none exists\n- Add isDescendantOf helper for focused element detection\n- Prune disconnected focus scopes from the stack in ActiveScopeInternal\n- Add unit and regression tests for unmount focus reset/fallback",
"is_bot": false,
"headline": "fix: manage focus on unmount and prune disconnected scopes",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T18:23:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d171f4deff1b02fea208ab5e855ea3319bddf98d",
"body": "Implement event.Scrollable on DialogElement to stop propagation\nof wheel events, preventing scroll from leaking behind the modal.\n\nAdd regression test verifying OnWheel stops event propagation.",
"is_bot": false,
"headline": "feat(element): trap wheel events in dialog elements",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T01:04:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31ec548b2f4b647ec9339539380fdf1a763b0b15",
"body": "Add clampScrollOffsets helper to engine pipeline that clamps\nscroll offsets after layout on root and overlays.\n\nUpdate Element.ScrollTo to clamp x/y within GetMaxScroll bounds,\nexcept for cursor-provider elements (input, textarea).\n\nUpdate ProvidesCursor to return true for <input> and <textarea>\nelements.\n\nAdd tests for ScrollTo and ScrollBy clamping behavior.",
"is_bot": false,
"headline": "feat(dom): clamp scroll offsets within viewport bounds",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T01:01:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f404b61a6a714919acb908b7d3805ccbd2e1e3a",
"body": null,
"is_bot": false,
"headline": "feat(stage): add reflection sub-registries and generic registration",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-03T00:31:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ea029594cdbf66dc3c4f3e6cd4c102f3e2cd812",
"body": "Compare the new prop value against the element's actual TextContent rather than comparing old props against new props, preventing SetValue from being called on every keystroke and preserving the cursor position.",
"is_bot": false,
"headline": "fix(kitex): prevent cursor reset on Input and TextArea updates",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-02T17:53:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a303efe48945babc60ea97eceb8e6717b4977398",
"body": "Group scenes by their owning component in the Stage sidebar, showing\na header per component that can be expanded/collapsed to reveal\nindented scene items underneath.\n\n- Add expandedComps state to track per-component expansion.\n- Build a compName -> scene indices map and render headers with\n ▼/▶ pre\n[…]\nollapsed state.\n- Update up/down keyboard navigation to only iterate visible\n (expanded) scenes, with fallback to first visible scene.\n\nextras/kitex/kitex.go: align struct field columns consistently.",
"is_bot": false,
"headline": "feat(stage): convert flat scene list into collapsible component tree",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-02T00:26:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1739fa05863d781b456f45dbdff6662cea99fc60",
"body": "Introduce directional arrow-key navigation that combines character-level\ncaret movement within elements with spatial focus jumps across elements.\n\ndom/interfaces.go:\n - Add Direction enum and SpatialCaret interface to dom package.\n - Add NavigateFocus/MoveCaret to Document and FocusHandle.\n - Add\n[…]\n hits a text boundary.\n\nextras/kitex:\n - Wire CursorNavigable bool through all Props structs.\n\nexamples:\n - Add spatial_navigation example with sidebar, card grid, and\n virtual arrow pad overlay.",
"is_bot": false,
"headline": "feat(focus): add spatial navigation and caret-level text selection",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T22:49:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5811365e72d98ad9875f18512e93a2f6ab531020",
"body": "Add Attribute, SetAttribute, RemoveAttribute, HasAttribute, and\nEachAttribute to dom.Element. Special-cases 'id' and 'class' to keep\nthem in sync with the existing ID/Class fields.\n\n- dom/interfaces.go: extend Element interface with 5 new methods\n- element.go: implement lazy-allocated attributes map\n[…]\n/class\n bidirectional sync\n- kitex: add Attributes map[string]string to all Props structs and\n reconcile them in updateElementBase\n- regressions: add tests for Element_Attributes and VDOM attributes",
"is_bot": false,
"headline": "feat(dom): add HTML attribute API to Element interface",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T21:11:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d1e4fb720922758f22186b57f1d06a1b8ec48e6e",
"body": "- EquatableProps: allow prop structs to implement Equal() to bypass\n reflection-based deep equality checks.\n- Batched dirty flushing: queue component dirty updates via a\n macrotask scheduler instead of flushing synchronously on every\n Update() call, reducing redundant re-renders.\n- Keyless reconciliation: amortized O(N) matching for children\n without keys using pooled keyless maps with iteration state.",
"is_bot": false,
"headline": "feat(kitex): add EquatableProps interface and batched dirty flushing",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T21:09:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "648421819ba4f8bbdc9756a683ea9fc3c3f82ef2",
"body": "In ResolveFlexibleLengths, when distributing leftover space to the\nlast unfrozen item, respect the item's MinMainSize and MaxMainSize\nconstraints instead of blindly adding the full remainder.\n\nAlso added two regression tests:\n- TestFragmentLayout_OverflowAuto: verifies siblings shift down\n correctly when overflow:auto container grows taller than viewport.\n- TestFragmentLayout_NegativeShrink: ensures flex children never\n compute a negative height.",
"is_bot": false,
"headline": "fix(layout): clamp remaining space distribution to min/max bounds",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T21:02:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "932d3c607a1ba608d0edfc4565f197b1e458d5df",
"body": null,
"is_bot": false,
"headline": "tests: add tests to identify stale closures",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T04:50:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62d6fdb6923783dd970047807be4fa2fcef58cc6",
"body": null,
"is_bot": false,
"headline": "fix(kitex): compare styles by value",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T04:49:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "528fbb0405b2bb59660b74ab82fd6667dcca75be",
"body": "…ContentElement",
"is_bot": false,
"headline": "feat(element): expose TextControlBase public API and rename uaDiv to …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T02:08:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8b32debda092d52bbc073f8067092cdb815ae99",
"body": "…walk bugs in overlays",
"is_bot": false,
"headline": "fix(overlay): resolve text selection, coordinate mapping, and double-…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T01:58:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "351b4dc5a2839ef5bada614f5fe992db3154deb1",
"body": "perf: improve memories and remove locks",
"is_bot": false,
"headline": "Merge pull request #13 from masterkeysrd/perf/memory-improvements",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T01:33:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7553de53ce78dd5065e9a100bcfe7e9cc217f606",
"body": null,
"is_bot": false,
"headline": "docs: add performance info",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T01:32:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aac59ebdea4488d990650f0b97e87dedd4092111",
"body": "… framebuffer",
"is_bot": false,
"headline": "fix(paint): handle nil and transparent background colors correctly in…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T01:19:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2dbb1a34d3bc17a20075d8598b86faba086b1a3",
"body": "…clear to retain focus",
"is_bot": false,
"headline": "fix(element): clamp selection range to buffer length on programmatic …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-07-01T01:18:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e16f9fa785f4c870680568450a53fb4d307a806",
"body": null,
"is_bot": false,
"headline": "fix(backend/uv): correct exit sequence",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-28T08:32:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe34a8fd6c939de839d13ce106bddce7ec606872",
"body": null,
"is_bot": false,
"headline": "feat: add terminal capabilities",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-28T05:09:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f902268a68f1e31c636cce37a223fc42fdda0b8b",
"body": null,
"is_bot": false,
"headline": "feat(style): add query style support",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-28T04:31:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74496b7a45b3d4159d33819295b576599504ac51",
"body": null,
"is_bot": false,
"headline": "feat(dom): expose viewport size",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-28T03:26:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e51cf027a34d58fe8bf9fec34bb28e40a0d97036",
"body": null,
"is_bot": false,
"headline": "fix: correct cursor position off screen",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-28T03:12:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e42c8f415c0c718c2848eb29a76fad6ed74f1e1",
"body": null,
"is_bot": false,
"headline": "fix(kitex): correct reconciler non dom anchoring elements",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T23:09:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e99641be1effc3d8ba8a4c02b929f4a5e626ec3f",
"body": null,
"is_bot": false,
"headline": "perf(paint): improve resolve borders performance",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T09:55:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e8a587f721e910fd37ee04325f342e07f896aa2",
"body": null,
"is_bot": false,
"headline": "fix(styler): remove cache that broke style changes",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T08:53:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e765a3eeaf463599ce7a97c5ce3d6dbccf678a87",
"body": null,
"is_bot": false,
"headline": "fix(kitex): correct reconciler and add dev warns",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T08:17:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3e1eb3196530c0c7d94a383fc3be363f2f4448e",
"body": null,
"is_bot": false,
"headline": "perf(layout):implement path prunning on scrolling",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T04:26:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b9e95267e6f0a9b528d7844c0dae72c10f328c5",
"body": null,
"is_bot": false,
"headline": "perf(engine): improve event processing and scroll speed",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T03:53:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57f04acf50d50bf67a76bff16d9345f7a3747236",
"body": "Skip out of the screen elements on paint paths",
"is_bot": false,
"headline": "perf(paint): implement layout virtualization link",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T03:33:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00c134a01dba7b422cfff9273881975d8c7a04cb",
"body": null,
"is_bot": false,
"headline": "fix(layout): add line pools optimization and list optimizations",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T03:26:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f3f3086c54fd4c28c10713d9267e72daaa5628a",
"body": "### Flex Layout Benchmark Results (Interleaved Inline-Flex Layout)\n\n Our optimizations resulted in a massive performance improvement for\nflex containers\n containing mixed inline/block sibling runs:\n\n Metric │ Baseline │ Optimized │ Change\n\n───────────────────┼───────────\n[…]\n allocations saved per layout pass, bringing memory usage\ndown by 89% (from\n nearly 1MB down to ~99KB).\n • Verified that the implementation is 100% correct and passes all\npackage and engine\n tests.",
"is_bot": false,
"headline": "perf(layout): improve flex anonymous block resolution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T02:57:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "27259d68778a4a3c1fa17f0b474772d4cbc91855",
"body": " Metric │ Baseline │ Optimized │ Change\n\n───────────────────┼─────────────────┼────────────────┼───────────────────────────────\n Execution Time │ 95,887 ns/op │ 79,510 ns/op │ ~17% Faster\n Memory Allocated │ 109,846 B/op │ 12,867 B/op │ ~88% Memory\nReduction\n[…]\nrames. Added a reusable InlineBuffer []Node\nslice inside the\n layout context so that BlockAlgorithm can collect contiguous\ninline nodes\n without allocating temporary slices on every pass.",
"is_bot": false,
"headline": "perf(layout): improved block context algo",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T02:43:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "718c1282b52fdd7e79767ed399cc010519145f26",
"body": null,
"is_bot": false,
"headline": "fix(layout): add text shapping advance cache",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T02:18:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51ed5f3c418a2fc841479f970146965a1e7dab5b",
"body": null,
"is_bot": false,
"headline": "perf(kitex): improve key resolution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T02:14:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02307f3f70b3eca2925d35bd024a51fe72621748",
"body": null,
"is_bot": false,
"headline": "fix(engine): add depth aware map",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T01:59:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd5da2435637eb713a5de25c9b4e042bfe3557f4",
"body": null,
"is_bot": false,
"headline": "perf(render): update to use direct resolution instead of iterative",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T01:32:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39efd806b88afb99bd680d18254c64fd06db30f7",
"body": null,
"is_bot": false,
"headline": "perf(engine): improve sync tree resolution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T01:32:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65765dbcf990bf0920ac1addec2a60d915be41ed",
"body": null,
"is_bot": false,
"headline": "perf(layout): improve text collection by omiting simple characters",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T01:10:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9cc03fd992fb3baf486efeec4e353b45fac3547",
"body": "Updates to use stack base resolution instead of recursive resolution to\nsolve memory allocs in large stacks",
"is_bot": false,
"headline": "perf(engine): update resolve styles to interactive resolution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T01:10:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cda4a5ed617133e3be7b2919e3c50d55583e135d",
"body": null,
"is_bot": false,
"headline": "feat(animation): clean up tween after execution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T00:09:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ce05685a47831df5034fcf42168b250f61a3b76",
"body": null,
"is_bot": false,
"headline": "perf(engine): decouple tasks execution from frame execution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-27T00:08:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8eb04f59067aafd4fd38c98f969973057247408f",
"body": null,
"is_bot": false,
"headline": "perf(kitex): free up components from call stack",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T23:53:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0442be5ac71e2070d948fee04dc11b81fa24caa6",
"body": null,
"is_bot": false,
"headline": "perf(wind): throttle stream notifications",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T23:53:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "708343ff85301a1fa66f2fd12f7fa5e396066d6f",
"body": null,
"is_bot": false,
"headline": "perf: add memory improvements",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T23:36:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7871fd4ca3ee997da8a6fa31803e7ca0c0ef21bd",
"body": null,
"is_bot": false,
"headline": "feat(kitex): correct reconciler list reconciliation (#12)",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T23:28:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73c55179b874f7660580576d6753c4837dd123a5",
"body": null,
"is_bot": false,
"headline": "fix(kitex): correct vdom memory leak ref",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T02:28:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc49b468d91b0aca8de530769db0d737384df42b",
"body": null,
"is_bot": false,
"headline": "feat(logger): use global logger instead of the common slog logger",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T01:35:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a54df723e9c63a04a300b53c4b02280579064cf",
"body": null,
"is_bot": false,
"headline": "fix(kitex): prevent microtask even look hijack",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-26T00:57:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "202fa9c3e4f88fe9c20687ec7dbfc8648df9a7e0",
"body": "* engine: explicit frame request on selection change\n\n* styler: correctly clear dirty style on non-element nodes\n\n* dom: invalidate TextNodeCache on structural changes\n\n* dom: add TestTextNodeCacheInvalidation for cache coverage",
"is_bot": false,
"headline": "fix: address infinite frame loop and text selection cache issues",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-23T05:38:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "520b3f1e364f1935ea2c3ee2d659bfbaf0955247",
"body": "… nodes\n\n- Guard all parent.RemoveChild calls in reconciler.go using a\nwrapper-aware parenthood check.\n- Implement unwrapNode and isParent helpers to unwrapped Go DOM\ninterface wrappers for comparison.\n- Add TestReconciler_UnmountAlreadyDetachedNode unit test to\nreconciler_test.go to verify that unmounting a manually-detached node\ndoesn't panic.",
"is_bot": false,
"headline": "fix(kitex): prevent reconciler panic when unmounting already-detached…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-23T02:49:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22d62af8310f4bf042a1b0305a1f1975b237bd73",
"body": null,
"is_bot": false,
"headline": "test: update golden file",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-22T05:43:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "030ddaaac039515d74403bd898756549f8adc6db",
"body": "…s(nil)\n\n- Modify Manager.SetFocus to allow nil values, clearing focus correctly\n- Implement Element.Blur to remove focus if the element (or its outer\nwrapper) is focused\n- Delegate InputElement and TextAreaElement Focus/Blur to their base\nElement\n- Add unit tests for programmatic Focus/Blur and SetFocus(nil) behavior",
"is_bot": false,
"headline": "feat(focus): support programmatic blur and clearing focus via SetFocu…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-22T05:43:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "519a49503067040411e0635392259a4b1308a0f6",
"body": null,
"is_bot": false,
"headline": "feat(wind): fix microtask hijack and implement streaming support",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-22T05:38:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f950061039cf3173c35b541d32f67820205d1c3",
"body": null,
"is_bot": false,
"headline": "feat(layout): implement table layout auto",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-22T05:17:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f4c6ad813c91d505df82d87839a30ae197accfa",
"body": null,
"is_bot": false,
"headline": "feat: add timers, new types and fixes",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-21T02:36:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a217521e9fd537d25b97611f26a6f842e422ba98",
"body": null,
"is_bot": false,
"headline": "fix(kitex): correct overlay management",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-19T17:36:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5af6f3db78ca7f27310bf7fc2dd4b673a9e69f6e",
"body": null,
"is_bot": false,
"headline": "feat(stage): add global panel",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T06:26:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30df4b47a2e600e0e4be729310941f94e8441b95",
"body": null,
"is_bot": false,
"headline": "feat(stage): fix hooks bug and implement int control",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T06:20:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aca0dd41369cdc82b82739f9926443673ac75a6f",
"body": "…stems",
"is_bot": false,
"headline": "feat(stage): add stage package to help creating and testing design sy…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T04:29:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61e797a4013fd2d8bc08f4af9cb75c139631bc32",
"body": null,
"is_bot": false,
"headline": "fix(element): remove placeholder duplication",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T04:25:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7b3edfe715fe586d005ada6e16b36e7f56844d9",
"body": null,
"is_bot": false,
"headline": "fix(kitex): improve reconciler even handling",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T04:25:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa8994292e649066ea64bbb7dc9283f44182e9f4",
"body": null,
"is_bot": false,
"headline": "fix(layout): correct flex layout grow size distribution",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T01:34:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce141d9f239660b7120b9fcf03b1c669621c5c88",
"body": null,
"is_bot": false,
"headline": "fix(layout): correct dimeension zero value hack",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T01:14:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7ed9a47095a7630a4c0fc4128ed59b0cf6473e0",
"body": null,
"is_bot": false,
"headline": "fix(kitex): correct reconciler closure comparison",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-18T01:00:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6ee421bfaa1d622e22a4ee6c20da4953747f1a0",
"body": "…bmit",
"is_bot": false,
"headline": "feat(form): support passing onSubmit callback dynamically to HandleSu…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-13T04:41:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba5316952e9b05a9d44e6f5f64e7e31ccf4a754a",
"body": null,
"is_bot": false,
"headline": "fix(wind): ensure IsLoading is true on first render before query settles",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-13T04:35:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b87389c065002c9bcaeda7bb2ac332ba98ee6b7f",
"body": null,
"is_bot": false,
"headline": "styler: inherit TextAlign from parent styles and add tests",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-13T03:32:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0701647893678bf5526d888fd660547b2df112d",
"body": "…ts to children",
"is_bot": false,
"headline": "layout: fix min/max dimension clamping and propagate parent constrain…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-13T03:29:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfb47bad337613d4b6e1bc8be3493ea855907796",
"body": "Introduce EmptyNode to ensure kitex.If maintains correct structural indexing without adding DOM overhead, and fix insertBeforeRef shadowing in the reconciler.",
"is_bot": false,
"headline": "fix(kitex): preserve positional layout during conditional reconciliation",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-13T02:55:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "743d8664906e347b05c6796a9ad6f2dc532f9f72",
"body": null,
"is_bot": false,
"headline": "feat(promise): add promise wraping helper",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-12T03:15:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d9b829876576ec57d1ce0f9521f1bb2259223e8",
"body": null,
"is_bot": false,
"headline": "feat(wind): update to use key as query context",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-12T03:05:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbf2243e86c791aa49db85c3f7a2aac66c1f6d69",
"body": null,
"is_bot": false,
"headline": "test: update tests to use new styles api",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-11T22:10:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc6885a5454f193d42b05ba8a9328ba32f764423",
"body": null,
"is_bot": false,
"headline": "refactor(kitex): update kitex.If to accept a function instead of anode",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-11T22:10:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f120985513b9611509b1d66430fddc4e83967ad",
"body": null,
"is_bot": false,
"headline": "feat(style): improve style API fluency",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-10T13:33:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b3700fcbe0027ac7c4ebd609f54645df7467456",
"body": null,
"is_bot": false,
"headline": "fix(flex): correct flex wrapping container intrinsic size",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-10T12:09:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e88cfc0bbd74e08e633200c97d8efa90e5c9d835",
"body": "This commit fixes a bug in the Flexbox implementation where percentage\nwidths and heights were being ignored during line breaking calculations\n(flex-wrap).\n\nKey changes:\n- Resolved percentage widths/heights for flex items during hypothetical main size calculation.\n- Implemented proper rounding (addi\n[…]\nred percentage resolution doesn't explode in unconstrained (infinite) containers by falling back to intrinsic sizing.\n- Added regression tests for percentage-based flex wrapping and 3-per-row layouts.",
"is_bot": false,
"headline": "fix(layout): support percentage widths and heights in flex items",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-09T04:31:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d2992bd7d43fb6b3bd5f641621194576047c9a94",
"body": null,
"is_bot": false,
"headline": "fix(layout): correct like breaking for nodes inside flex layout",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-09T03:59:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8aec4a7bc01716e26c1f4fd2583f476473975d8f",
"body": null,
"is_bot": false,
"headline": "fix(layout): correct flex wrap streching issue",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-08T17:38:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0a36a769d7775a9c52b85646ed08fe1fb527610",
"body": null,
"is_bot": false,
"headline": "feat: add support for placeholder",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-08T17:38:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08113826064bbed198df0c733a96e87f55eaa63d",
"body": "…ith vertical scrollbars (#10)",
"is_bot": false,
"headline": "fix(textarea): prevent horizontal scrolling when content fits, even w…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-03T22:19:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "519db740221c95c852bd10ef70ccd0950fa13762",
"body": "…enable chaining (#9)",
"is_bot": false,
"headline": "fix(scroll): only consume wheel events when actual scroll occurs and …",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-03T19:07:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df1d043a5e86c84a9e7d8d1ddb6c2572253f7586",
"body": null,
"is_bot": false,
"headline": "fix(layout): correct infinite space asigment on the main axis (#8)",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-03T17:06:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21c3b06878dba2437637192a17e71aa159019e86",
"body": "…pagation",
"is_bot": false,
"headline": "fix(layout): flex layout cross-axis constraints and auto min-size pro…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-03T02:33:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21fc815ddcb4072f80f087d93f7fa6c6f3986206",
"body": "…s, add side/axis builder methods (#7)",
"is_bot": false,
"headline": "refactor(style): extract and clean styles across elements and example…",
"author_name": "David Morales",
"author_login": "masterkeysrd",
"committed_at": "2026-06-02T17:19:31Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 271,
"latest_release_at": "2026-07-20T05:15:20Z",
"latest_release_tag": "v0.0.4",
"releases_from_tags": false,
"days_since_last_push": 8,
"active_weeks_last_year": 10,
"days_since_latest_release": 8,
"mean_days_between_releases": 16.1
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": true,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/masterkeysrd/kite",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/masterkeysrd/kite",
"is_deprecated": false,
"latest_version": "v0.0.4",
"repository_url": "https://github.com/masterkeysrd/kite",
"versions_count": 4,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-19T18:55:27Z",
"latest_version_yanked": null,
"days_since_latest_publish": 8
}
]
},
"popularity": {
"forks": 0,
"stars": 3,
"watchers": 1,
"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": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"devtools/ui/tsconfig.json"
],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 78434,
"source_files_sampled": 363,
"oversized_source_files": 1,
"agent_instruction_files": [
"AGENT.md"
],
"agent_instruction_max_bytes": 23108
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/charmbracelet/colorprofile",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.4.3"
},
{
"name": "github.com/charmbracelet/ultraviolet",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20260713092251-4bee1914c0cf"
},
{
"name": "github.com/rivo/uniseg",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.4.7"
}
],
"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": 12,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 2,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "masterkeysrd",
"commits": 271,
"avatar_url": "https://avatars.githubusercontent.com/u/11392958?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": [
"go.sum",
"package-lock.json"
],
"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": 0,
"reason": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"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": 0,
"reason": "license file not 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": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 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": 6,
"reason": "4 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "cb63a270b82688881bd746f9b7f06490627edab1",
"ran_at": "2026-07-28T09:51:18Z",
"aggregate_score": 1.7,
"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": "2026-07-01T01:33:28Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/masterkeysrd/kite",
"host": "github.com",
"name": "kite",
"owner": "masterkeysrd"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"security": 17,
"vitality": 72,
"community": 14,
"governance": 55,
"engineering": 44
},
"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": 271,
"human_commit_share": 1,
"days_since_last_push": 8,
"active_weeks_last_year": 10
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 8 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 8
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "10/52 weeks with commits",
"points": 6.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 10
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "271 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 271
}
}
],
"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": 4,
"latest_release_tag": "v0.0.4",
"releases_from_tags": false,
"days_since_latest_release": 8,
"mean_days_between_releases": 16.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "4 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 4
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 8 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 8
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~16.1 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 16.1
}
}
],
"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": 14,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 5,
"inputs": {
"forks": 0,
"stars": 3,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "3 stars",
"points": 4.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 3
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"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": 55,
"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": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"merged_prs": 12,
"open_issues": 0,
"closed_issues": 2,
"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": "12/12 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 12,
"decided": 12
}
}
],
"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": 50,
"inputs": {
"followers": 9,
"owner_type": "User",
"is_verified": null,
"owner_login": "masterkeysrd",
"public_repos": 29,
"account_age_days": 4158
},
"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": "9 followers of masterkeysrd",
"points": 7.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 9,
"login": "masterkeysrd"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "29 public repos, account ~11 yr old",
"points": 22.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 29
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/masterkeysrd/kite"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 8
},
"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 8 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 8
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "4 published versions",
"points": 12,
"status": "partial",
"details": [
{
"code": "published_versions",
"params": {
"count": 4
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 44,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"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": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"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": 17,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 17,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 1.7
},
"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": "0 out of 1 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/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 not detected",
"points": 0,
"status": "missed",
"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": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "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": "4 existing vulnerabilities detected",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 71,
"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.99,
"agent_instruction_files": [
"AGENT.md"
],
"agent_instruction_max_bytes": 23108
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENT.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENT.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": "99 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 99,
"sampled": 100
}
}
],
"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": [
"go.sum",
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [
"devtools/ui/tsconfig.json"
],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "devtools/ui/tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "devtools/ui/tsconfig.json"
}
}
],
"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": "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": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 78434,
"source_files_sampled": 363,
"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/363 source files over 60KB",
"points": 54.8,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 363,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? 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-28T09:51:23.771884Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/masterkeysrd/kite.svg",
"full_name": "masterkeysrd/kite",
"license_state": "absent",
"license_spdx": null
}