Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 22210,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 175837,
"Shell": 31,
"Python": 9252,
"Makefile": 1585
},
"pushed_at": "2026-07-06T10:46:03Z",
"created_at": "2025-11-22T14:15:00Z",
"owner_type": "User",
"updated_at": "2026-07-06T10:46:08Z",
"description": "A modern, fast log viewer - more than less",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": null,
"type": "User",
"login": "TimelordUK",
"company": null,
"location": null,
"followers": 31,
"avatar_url": "https://avatars.githubusercontent.com/u/7300251?v=4",
"created_at": "2014-04-15T08:40:47Z",
"is_verified": null,
"public_repos": 30,
"account_age_days": 4486
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-07-05T13:34:42Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-28T16:12:56Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-06-17T19:07:36Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-05-10T16:15:13Z"
},
{
"tag": "v0.1.4",
"kind": "patch",
"published_at": "2026-05-04T19:22:22Z"
}
],
"recent_commits": [
{
"oid": "535dcf3bfd318263a2df6f4237eab99318bd72c2",
"body": "The level color is emitted as a single SGR sequence wrapping the whole\nline, so its opening code sits at column 0. When scrolling right (>),\napplyHorizontalScroll skipped that code along with the skipped columns,\nleaving the visible tail uncolored until the view scrolled back left.\n\nTrack the active\n[…]\nloring is independent of horizontal offset. A reset in the skip zone\nclears the pending color so it doesn't bleed onto later text.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Keep log-level color when horizontally scrolling long lines",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-07-06T10:46:03Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "5f0119ff542d9a6fbe4c6b7c3b8f6f915077f72f",
"body": "Add marker-pen highlights: session-only shaded blocks",
"is_bot": false,
"headline": "Merge pull request #7 from TimelordUK/marker-pen-highlights",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-07-05T13:23:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1073833da0cd3f1c270da26122c7efc084fc61c",
"body": "A highlighter-pen feature for visually marking interesting blocks of a\nlog while reading, like highlighting a paper document. Highlights are a\nsubtle full-width background band over a range of lines.\n\n- Paint/erase from visual mode: `v` to select, `H` to toggle the band\n- Leader bindings: `<leader> \n[…]\n starts a fresh canvas; revert (R) restores\n the parent view's highlights via a stash stack\n- Session-only, in-memory on the Pane\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add marker-pen highlights: session-only shaded blocks",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-07-05T13:22:55Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3f235bc713d47b8f6fc33146df4330a6d548d23e",
"body": "Open multiple files as tabs from the command line",
"is_bot": false,
"headline": "Merge pull request #6 from TimelordUK/multi-file-tabs",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-07-02T19:02:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5e29bb1e82878977ef4d99556ddbecc9a765cbf",
"body": "Multiple files now open as tabs instead of only a split view: exactly 2\nfiles still open side-by-side, while 3+ files (up to 9) each open in their\nown tab. A new -T flag forces tabs even for the 2-file case.\n\n- main.go: raise the default file cap to 9; add -T (OpenAsTabs)\n- app.go: build one tab per\n[…]\nherwise keep the single split tab; cap at maxTabs and close overflow\n- CLAUDE.md: document the new multi-file behavior and -T flag\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Open multiple files as tabs from the command line",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-07-02T19:01:42Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "c6ab14ba48123e9964f3fbfe2f22371c86b0bba5",
"body": "Build multi-tab support on the Tab struct. Model now owns tabs []*Tab +\nactiveTab and manages them: openTab/closeTab (cap 9), gotoTab,\nnext/prevTab, and a runCommand that parses the \":\" line into goto-line vs\ntab verbs.\n\nKeys (leader = ctrl+w / ctrl+x):\n :tabnew <file> / :tabe open a file in a ne\n[…]\nixes (5j, 10yy). Cross-tab follow ticker is left as a follow-up.\n\nTests in tab_test.go; help screen and CLAUDE.md/ROADMAP updated.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add tabs: :tabnew/:tabclose and leader-based tab management",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-28T16:10:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "043a8ebb01e44d8d8bba58f64acb4769a23fc8d3",
"body": "Extract Tab struct to enable multi-tab support",
"is_bot": false,
"headline": "Merge pull request #5 from TimelordUK/tab-workspace-refactor",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-28T15:12:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf55680a7541a38b6d14d5fc856a052a92ca32f5",
"body": "Move pane/split/zoom layout out of Model into a new Tab struct. Model\nbecomes the global shell (tabs, activeTab, mode, status, config,\ndimensions); Tab owns {panes, activePane, splitDir, splitRatio, zoomed}\nplus its config and content width/height, and all window-management\n(splitVertical/Horizontal\n[…]\ntTabs().\n\nPure structural move, no behavior change. This is the gate refactor for\nmulti-tab support and makes zoom/layout per-tab.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Extract Tab struct to enable multi-tab support",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-28T15:12:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "15b02f9adac38c4f751b02ea2df5f7188a7bc794",
"body": "Records the field idea from log-triage: split vertical with a read-only\nsource on the left and an append-only scratch pane on the right, pulling\nnon-contiguous hunks of interest over, then writing the curated buffer to\ndisk. Frames it against existing yank-to-clipboard and slice/:write, with\na two-phase plan (in-memory MVP, then provenance + persistence).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Roadmap: plan scratch pane for yanking hunks into a working buffer",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-22T20:44:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5a8b6f2c3a8e21250aaf2cbe3facc13440d5c38d",
"body": "Carry parent line color across wrapped continuation rows",
"is_bot": false,
"headline": "Merge pull request #4 from TimelordUK/wrap-color-carry",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-22T20:40:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aab6523b2d3eec81d23a3b27a04f86a247b4ecb1",
"body": "When a colored line (e.g. a red error) wrapped via Z or was expanded\nin place via z, only the first physical row kept the color: each row\nboundary flushed a reset and started a fresh buffer with no active SGR,\nso continuation rows rendered in the default foreground.\n\nTrack the last non-reset SGR whi\n[…]\nA mid-content reset\nclears the carried color so it doesn't bleed past where it should. Same\nsingle O(n) scan; negligible overhead.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Carry parent line color across wrapped continuation rows",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-22T20:40:13Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "c12d61d0e3184af8e549fd20d869dad5f233fed8",
"body": "Split zoom",
"is_bot": false,
"headline": "Merge pull request #3 from TimelordUK/split-zoom",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-21T09:26:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "979e7f2e0886101eee0b765b19ee3e4e4c48ddd5",
"body": "In a split, <leader> z toggles a full-screen view of the active pane: when\nzoomed, calculatePaneSizes gives the active pane the whole content area and\nView renders only that pane. Zoom follows focus — switching panes while\nzoomed re-sizes and shows the newly active one via a new setActivePane\nhelper\n[…]\npane closes.\n\nHelp screen and CLAUDE.md document <leader> z; ROADMAP marks the item done\nand points to time-synced scroll as next.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add tmux-style split zoom (<leader> z)",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-21T09:19:23Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a99663f226e4fef7539e8899bf404a66b632449b",
"body": "Update the Wrap-Aware Viewport section to reflect what shipped (re-anchor on\nZ, wrap-aware scroll bounds, reachable last screenful, and in-place\nsingle-line expand `z` in place of the planned context-peek overlay). Phase B\n(physical-row anchor for the partial-top-line case) remains future.\n\nAdd a \"W\n[…]\nngine in favour of a configurable leader now. Notes that\ntime-synced scroll is greenfield (no code yet despite the Phase 4 entry).\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Roadmap: mark wrap Phase A done; plan zoom, tabs, sync, keymaps",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-21T09:15:00Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6ed24904cc5856d810309a5338985824db7822af",
"body": "Add in-place single-line expand (z)",
"is_bot": false,
"headline": "Merge pull request #2 from TimelordUK/single-line-expand",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-20T09:48:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7b2d6706c87b81825cebfb049aeaca606011689",
"body": "Press z to expand or collapse the current (top) line in place: the line\nwraps across as many physical rows as it needs even when global wrap is\noff, so a single long line (e.g. a full command-line argument list) can be\nread on one screen without committing the whole view to wrap.\n\nExpansion is a set\n[…]\n). Tests\ncover expand-in-place with wrap off, collapse, the row-count invariant, and\npersistence across scroll plus ClearExpanded.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add in-place single-line expand (z)",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-20T09:47:24Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "0760914362cd85a7b0a3bd784afca12358559535",
"body": "Keep the focused line visible across wrap toggle and reach the last s…",
"is_bot": false,
"headline": "Merge pull request #1 from TimelordUK/wrap-line-anchoring",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-20T09:35:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c8f5bf50c9d5bd270035adf9c5bc51687e14c30",
"body": "…creenful\n\nTwo related navigation fixes for word-wrap mode.\n\n1. Wrap toggle re-anchors the focused line. Pressing Z previously just\n flipped the wrap flag; lines above a search/mark/time match expanded\n into extra physical rows and shoved the match off-screen (worst near\n EOF, where the scroll\n[…]\nle across wrap toggle near EOF,\nlast line scrolls to the top, short files do not scroll, and GotoBottom\nreaches EOF when wrapping.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Keep the focused line visible across wrap toggle and reach the last s…",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-20T09:34:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b271fea023df23e8dcc2f59399f437ac80d8b431",
"body": "Capture the goto-line/wrap focus problem and the path forward: cheap\nwins (re-anchor on Z, a context-peek overlay showing the current line\nplus a few lines of context fully wrapped) and the eventual physical-row\nanchor rewrite. Also notes the split-view wrap fix already landed and the\ntmux/Windows-Terminal pane-switch chord traps.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Roadmap: plan wrap-aware viewport and context-peek overlay",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-17T19:15:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cfef4bd8b6f2001bdfabcc431054a238e704992f",
"body": "Viewport.Render now always emits exactly height physical rows. Wrapped\nlogical lines are counted against the height budget instead of emitting\nextra rows via embedded newlines, so a wrapping pane can no longer\noverflow and corrupt the adjacent pane in split views. Each pane's wrap\nstate is fully sel\n[…]\nees them). tab cycles\npanes and is tmux-safe. A key=/pane= debug indicator in the status bar\nshows what the app actually receives.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix split-view wrapping and add tmux-safe pane switching",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-06-17T19:03:08Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8ab9043201bb92ce3fdef1ff4676495bc66113b0",
"body": "Wires up GoReleaser to publish to Chocolatey and a Homebrew tap\n(TimelordUK/homebrew-tap) on each tag. Adds a terminal-themed icon\nunder assets/ for the choco listing. Switches the release workflow\nto windows-latest so the choco CLI is available. Rewrites the README\nto capture the slice stack, consolidated mode, yank/visual mode,\nhorizontal scroll/wrap, split resize, and count prefixes.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add Chocolatey, Homebrew cask, icon, and refreshed README",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-05-10T16:12:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bdc474dc4bbf7ff14fa05e617590f6ca34d8695e",
"body": "Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add workflow_dispatch trigger to release workflow",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-05-04T19:20:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7b324910388490d50b9c46fc7e14d2271fab0417",
"body": null,
"is_bot": false,
"headline": "add a goreleaser workflow",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2026-05-04T19:15:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfd4e9efac1310326f5ff8ebb2360e813e0d488a",
"body": "- Add -v/--version flag to display version, commit, and build date\n- Version info injected via ldflags at build time\n- Makefile with build, patch, minor, and release targets\n- Fix gitignore to not ignore cmd/mless directory\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add version flag and Makefile for versioned builds",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-12-07T20:22:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f8841cfca0f2a9c4a3caefdee6dd697fe794e7ce",
"body": "Features:\n- New -C flag to merge multiple log files into single view\n- Polls sources every 250ms for new lines\n- Primes with last 100 lines from each source on startup\n- Line prefix [source:linenum] identifies origin\n- Output written to temp file, cleaned up on exit\n- Status bar shows [consolidated:\n[…]\n (ERROR) require word boundaries\n- Bracketed patterns ([ERROR]) match precisely\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add consolidated view (-C) for multiple log files",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-12-07T20:08:13Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "d94ce1bcd9645d5b278592d7b8ab55c4b16ab7a1",
"body": "When pressing 0 to clear filters, the view now stays at the same\noriginal line instead of jumping to top. This allows filtering to\nfind something interesting (e.g., warnings) then expanding back\nto see surrounding context without losing your place.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Preserve position when clearing filters with 0",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-26T21:31:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0b646cc40a8fa2f751370e7fcc3b04de363133ce",
"body": "When visual mode reaches scroll boundaries (near file end), the cursor\ncan now move independently within the viewport:\n- j/k moves cursor offset when viewport can't scroll further\n- Cursor position shown with █ marker, selection with >\n- G jumps to bottom and positions cursor on last line\n- Cursor o\n[…]\n navigation\n\nThis allows selecting to the very last line even when scrolling is blocked.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add cursor offset for visual mode at file boundaries",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-25T20:36:23Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6cad4f20c2051e666805f47638770caa1de569e4",
"body": "- Add clip.exe detection for WSL to access Windows clipboard\n- Add visual mode (v) for selecting and yanking line ranges\n- Visual mode supports j/k navigation, y to yank, v/esc to cancel\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix clipboard for WSL and add visual selection mode",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-25T20:19:30Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cb0d1d01bea926346d9c0077197420dd26cdf7b8",
"body": "- Adjust date when time-only input is before first timestamp\n- Find nearest line instead of exact match for time jumps\n- Show target and actual time in status bar\n- Clear highlight with Esc key\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix time navigation for logs spanning midnight",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T21:06:12Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "fb7ae6292da9507653f992868e1e8339f3f2a02b",
"body": "Marked completed: slicing, slice management, split views, marks,\nyank, horizontal scrolling, syntax highlighting.\n\nAdded new phases:\n- Phase 5: Virtual merged view (interleaved logs)\n- Phase 6: Time delta features (T=0 reference)\n- Phase 7: Multi-tab support\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update roadmap with completed features and new phases",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T19:55:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9431525c08fd664950111f30a844bd51fe9dc9ab",
"body": "Uses chroma library with terminal16m formatter for accurate\nsyntax highlighting on .go, .rs, .py, .js, .ts, and 50+ other\nfile types. Automatically detects file type by extension.\n\nFalls back to log level renderer for non-source files.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add syntax highlighting for source code files",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T19:48:55Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "3e492a78ee829b2cdc143b97a1f1a029d2f1a111",
"body": "Shows [slice×N:start-end] when nested slices are active,\nmaking it clear how deep in the slice stack you are.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add slice depth indicator to status bar",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T14:09:22Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4ad931f3bb7106fd792c78e2ba25a1e74af2e80e",
"body": "Yank to clipboard:\n- yy/Y: yank current line\n- 5yy: yank 5 lines (count prefix support)\n- y'a: yank from current to mark\n- Shows \"N lines yanked\" in status bar\n\nHorizontal scrolling for long lines:\n- </> or arrow keys: scroll left/right\n- ^: reset to start of line\n- Z: toggle line wrap mode\n\nCount p\n[…]\ncation\n- Updated help page with new features\n- Added long line generation to test script\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add yank, horizontal scrolling, line wrap, and count prefixes",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T13:46:24Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "90f7bfd27f661edc10b20aada727a0bbc22a9668",
"body": "Switches between vertical (side-by-side) and horizontal (stacked) split.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add ctrl+o to toggle split orientation",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T12:43:16Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "2fc034e87aa390ce784379aad82d8961c876e2e6",
"body": "Split resizing:\n- H/L: shrink/grow first pane in 5% increments\n- =: reset to 50/50 split\n\nMulti-file command line:\n- mless file1.log file2.log opens in vertical split\n- Max 2 files supported\n\nAlso added CLAUDE.md with architecture documentation.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add split resizing, multi-file support, and CLAUDE.md",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T12:40:41Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "63c1ca6158116a160093df538ddbe00910624d7e",
"body": "Documents all features including split views, log level filtering,\ntime navigation, marks, slicing, and pipe support.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add comprehensive README with features and examples",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T12:25:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "854e6ce34c316df4f143ad42ad9121cfbbe45281",
"body": "- Add stdin pipe support (grep foo | mless)\n- Create proper Go .gitignore\n- Remove binary from version control\n- Update module path to github.com/TimelordUK/mless for go install\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add pipe support, .gitignore, and fix module path",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T12:24:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "eafe907fe8bc3647c0d5f2b288674ed03aabba4f",
"body": "- Implement Phase 3b split view with ctrl+w v/s/w/q\n- Add ctrl+g for file info display (path, lines, position, marks)\n- Fix mark highlight not clearing when marks are cleared\n- Add ANSI-aware string truncation for proper split rendering\n- Both split panes now render with colors\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add split view, file info, and fix mark highlight clearing",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T12:18:49Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4040b7d02a960585e9832be9aadca61590828b8c",
"body": "- Add ctrl+w 'a to split at mark\n- Add ctrl+w |range to split with slice range\n- Document same-file splits sharing source\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Update split view design with mark/range split commands",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T11:41:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ed03f7e4a1e951731fdf3a74b7ea7019d93e7685",
"body": "Phase 3a of split view preparation:\n- Extract Pane struct with per-file state and methods\n- Model now uses panes slice for future split support\n- Add -S flag for initial slice range (e.g., -S 1000-5000)\n- Add -t flag for initial time navigation (e.g., -t 14:00)\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Refactor to Pane struct and add CLI slice/time options",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-23T11:39:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "97261c0462a6e315394fffda06ad7f217d489231",
"body": "Detailed refactoring plan for implementing split views:\n- Extract Pane struct from monolithic Model\n- Layout management for vertical/horizontal splits\n- Input routing and keybindings\n- Time-synced scrolling design\n- Implementation phases breakdown\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add split view design document",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T22:16:09Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "e15f7962644bfd5599d69bc5265b561dfc06e28a",
"body": "Support time references in slice ranges (e.g., S13:00-14:00)\nusing existing FindLineAtTime mapping.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add time-based slicing support",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T22:10:48Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ee1264440fa081212c3c1c100bbdab52713d8ab4",
"body": "- Add 'h' key to show help page with all commands\n- Add 'M' key to clear all marks\n- Support mark references in slice ranges (e.g., S'a-'b)\n- Update slice placeholder to show mark syntax\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add help page, clear marks, and slice between marks",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T22:06:35Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "fdf1f086cc9cafab949970d1422bf73720ef0a07",
"body": "- ma-mz: set mark at current line (stores original line number)\n- 'a-'z: jump to mark (works correctly with filters)\n- ]' and [': next/previous mark navigation\n- Gutter shows mark character next to line number\n\nMarks work with filtered views - jumping to a mark maps\nthe original line to the nearest visible filtered line.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add marks feature for bookmarking lines",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T18:52:33Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "0ce6380861a7057fe5d07194e9c78f900f57c914",
"body": "- ctrl+s: quick slice from current line to end\n- S: enter slice mode with range syntax\n- R: revert to parent file/slice\n\nRange syntax supports:\n- 100-500: absolute line range\n- .-$-1000: current to end minus 1000\n- $-1000-$: last 1000 lines\n- . and $ with +/- offsets\n\nSlices create local temp files for fast access to portions\nof large/network files. Supports nested slices with revert.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add file slicing feature for extracting portions to local cache",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T18:12:50Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d5fb3544e46a3ed22991c863504262a0ca60dd2b",
"body": "Map original line number from time search to filtered index\nso jumping to a time works correctly when level filters are active.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix ctrl+t time navigation with active filters",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T17:54:33Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ca0403bf92967b9c7261663bdba2886f6b1ba213",
"body": "Reset viewport to top when applying level filters to prevent\nshowing empty view (only ~ markers) when scroll position exceeds\nfiltered result count.\n\nAlso add ROADMAP.md with feature plan for file slicing and\ntime-synced split views.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Fix viewport not refreshing after level filter changes",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T17:42:51Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1b0befdd10f2840ee3992fe7885375e85cece5b8",
"body": "- ctrl+t enters time navigation mode\n- Type time (HH:MM or HH:MM:SS) to jump to first line at/after that time\n- Supports full datetime formats as well\n- Highlights the target line in yellow\n- Uses date from log file for time-only inputs\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add time navigation with ctrl+t",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T16:43:33Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "418e8823a14fcbd3bc9e1560d1877d2eb3a6d68e",
"body": "- Parse common log timestamp formats (ISO 8601, syslog, Apache, etc.)\n- Lazy timestamp parsing with caching\n- Display current line timestamp in status bar\n- Add FindLineAtTime/FindLineBeforeTime for future time navigation\n- Move LogLevel to pkg/logformat to resolve import cycle\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add timestamp detection and display",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T16:35:59Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1e7495b224f7f2d58b094e7687f49ca848563bf3",
"body": "- F key toggles follow mode (auto-refresh every 500ms)\n- G key refreshes file to pick up new content (like less)\n- Esc exits follow mode\n- Status bar shows [following] indicator\n- Respects active level and text filters\n- Fix line indexing for appended content\n- Add --stream mode to log generator for testing\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add follow mode for tailing log files",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T16:25:07Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8afb209142cb99c62f57cc86288acc25a315f637",
"body": "- Add -c flag to cache file locally before opening\n- Cache to system temp directory (auto-deleted on exit)\n- Status bar shows [cached] indicator\n- R keybinding to resync from source (re-copy and reload)\n- Useful for slow network drives\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add file caching for network performance",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T15:59:51Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "31768249efaa248016daef565286abb99660922c",
"body": "- Press ? to enter filter mode, type to filter lines in real-time\n- Enter to keep filter active, Esc to cancel\n- Esc in normal mode clears both text filter and search highlight\n- Text filter stacks with level filters\n- Status bar shows active text filter\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add fzf-style live text filtering",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T15:27:57Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "a682f95c983aa41fbd7184fc9f9357564779700e",
"body": "- Highlight line number in yellow/bold when navigating search results with n/N\n- Add ctrl+b/ctrl+f for page up/down (vim-style)\n- Makes current search match clearly visible in the gutter\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add search result line highlighting and ctrl+b/f navigation",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T15:16:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "04fe94c4baef6746ead90fc40352e6cae50f3495",
"body": "- Filter by level: t/d/i/w/e/F to toggle individual levels\n- Filter by severity: T/D/I/W/E for level and above (e.g., I = INFO+WARN+ERROR+FATAL)\n- Clear filters with 0\n- Status bar shows active filters and filtered/total line counts\n- Line numbers preserve original positions when filtered\n- Updated log generator with realistic production distribution (60% INFO, 25% DEBUG, etc.)\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add log level filtering with letter keybindings",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T15:00:04Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "dd517981b22039a20b360685332f85a41fb23ce4",
"body": "- Implement TOML-based configuration (~/.config/mless/config.toml)\n- Add log level detection with regex patterns\n- Color log levels: TRACE/DEBUG (gray), INFO (light), WARN (orange), ERROR (red), FATAL (bright red)\n- Support customizable themes, patterns, keybindings, and display options\n- Include example config file\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add config system and log level coloring (Phase 2)",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T14:32:48Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b50c5cc0cb5b37913c9b3feec8a140b0e38ebe1a",
"body": "- Memory-mapped file I/O for fast large file handling\n- Line indexing with efficient offset tracking\n- LineProvider abstraction for clean architecture\n- Basic viewport with bubbletea\n- Search and navigation (j/k/f/b/g/G///n/N)\n- Test log generator script\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "Initial commit: Phase 1 foundation",
"author_name": "TimelordUK",
"author_login": "TimelordUK",
"committed_at": "2025-11-22T14:14:50Z",
"body_truncated": false,
"is_coding_agent": true
}
],
"releases_count": 5,
"commits_last_year": 56,
"latest_release_at": "2026-07-05T13:34:42Z",
"latest_release_tag": "v0.4.0",
"releases_from_tags": false,
"days_since_last_push": 21,
"active_weeks_last_year": 8,
"days_since_latest_release": 22,
"mean_days_between_releases": 15.4
},
"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": "github.com/TimelordUK/mless",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/TimelordUK/mless",
"is_deprecated": false,
"latest_version": "v0.4.0",
"repository_url": "https://github.com/TimelordUK/mless",
"versions_count": 9,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-05T13:23:57Z",
"latest_version_yanked": null,
"days_since_latest_publish": 22
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 43423,
"source_files_sampled": 25,
"oversized_source_files": 0,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 6052
},
"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/alecthomas/chroma/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.20.0"
},
{
"name": "github.com/charmbracelet/bubbles",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.21.0"
},
{
"name": "github.com/charmbracelet/bubbletea",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.3.10"
},
{
"name": "github.com/charmbracelet/lipgloss",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.0"
},
{
"name": "github.com/pelletier/go-toml/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.2.4"
},
{
"name": "golang.org/x/exp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20251113190631-e25ba8c21ef6"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 7,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "TimelordUK",
"commits": 56,
"avatar_url": "https://avatars.githubusercontent.com/u/7300251?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"release.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 7 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/22 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": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 8,
"reason": "2 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "535dcf3bfd318263a2df6f4237eab99318bd72c2",
"ran_at": "2026-07-27T15:36:54Z",
"aggregate_score": 3.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": "2026-07-06T10:46:04Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-05T13:23:57Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/TimelordUK/mless",
"host": "github.com",
"name": "mless",
"owner": "TimelordUK"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 37,
"vitality": 72,
"community": 24,
"governance": 55,
"engineering": 49
},
"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": 60,
"inputs": {
"commits_last_year": 56,
"human_commit_share": 1,
"days_since_last_push": 21,
"active_weeks_last_year": 8
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 21 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 21
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "8/52 weeks with commits",
"points": 5.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 8
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "56 commits in the last year",
"points": 15.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 56
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 5,
"latest_release_tag": "v0.4.0",
"releases_from_tags": false,
"days_since_latest_release": 22,
"mean_days_between_releases": 15.4
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 22 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 22
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~15.4 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 15.4
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 21,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 21 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 21
}
}
],
"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": "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": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 72,
"inputs": {
"merged_prs": 7,
"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": "7/7 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 7,
"decided": 7
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/22 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": 55,
"inputs": {
"followers": 31,
"owner_type": "User",
"is_verified": null,
"owner_login": "TimelordUK",
"public_repos": 30,
"account_age_days": 4486
},
"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": "31 followers of TimelordUK",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 31,
"login": "TimelordUK"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "30 public repos, account ~12 yr old",
"points": 22.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 30
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/TimelordUK/mless"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 22
},
"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 22 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 22
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "9 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 9
}
}
],
"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": 49,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"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 7 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"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": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 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": "at_risk",
"name": "Security",
"value": 37,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 18,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 0,
"scorecard_aggregate": 3.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 7 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/22 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 dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "23 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "2 existing vulnerabilities detected",
"points": 6,
"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": 81,
"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.964,
"agent_instruction_files": [
"CLAUDE.md"
],
"agent_instruction_max_bytes": 6052
},
"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": "54 of 56 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 54,
"sampled": 56
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 71,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.857,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "48 of the last 56 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 48,
"sampled": 56
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 43423,
"source_files_sampled": 25,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/25 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 25,
"oversized": 0
}
}
],
"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-27T15:37:04.292669Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/TimelordUK/mless.svg",
"full_name": "TimelordUK/mless",
"license_state": "standard",
"license_spdx": "MIT"
}