原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 11978,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 180004,
"Makefile": 1170
},
"pushed_at": "2026-07-15T04:05:18Z",
"created_at": "2025-10-11T06:14:46Z",
"owner_type": "User",
"updated_at": "2026-07-15T04:03:52Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": "Henry Sowell",
"type": "User",
"login": "veteranbv",
"company": null,
"location": null,
"followers": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/7597583?v=4",
"created_at": "2014-05-15T23:37:47Z",
"is_verified": null,
"public_repos": 48,
"account_age_days": 4450
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.2.1",
"kind": "patch",
"published_at": "2026-07-15T04:06:16Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2026-07-15T03:42:26Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2026-07-15T03:39:52Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2025-10-11T21:58:23Z"
}
],
"recent_commits": [
{
"oid": "205045e085a1bece6f82c6a570492eb3ba6a0473",
"body": "Report real version info for go-install builds",
"is_bot": false,
"headline": "Merge pull request #6 from veteranbv/fix/version-from-buildinfo",
"author_name": "Henry Sowell",
"author_login": "veteranbv",
"committed_at": "2026-07-15T04:03:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40bbfd97e60e0d2dcc7fe60a7e5e8e6f2e4980d6",
"body": "A binary built from a tree with uncommitted changes reported the clean\ncommit hash as if it matched exactly. The vcs.modified build setting\nnow appends -dirty to the commit when the hash came from the VCS\nfallback; ldflags-injected values remain untouched.",
"is_bot": false,
"headline": "fix: mark dirty checkouts in the version fallback",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-15T04:01:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd152d0fa432062a4a8ebe2bdd9c59ceb3d8ed2d",
"body": "The version/commit/date variables are only injected by GoReleaser's\nldflags, so binaries from go install (or plain go build) reported\ndev (commit: none, built: unknown) no matter what version they were.\nGo embeds the module version and VCS metadata in every binary; when\nthe ldflags defaults are detected, --version now falls back to\ndebug.ReadBuildInfo, so a fleet box always knows what it's running.\nGoReleaser-injected values still win when present.",
"is_bot": false,
"headline": "fix: resolve --version from build info for go-install builds",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-15T03:53:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c261b6deb705a4a880e232adc49ef8336d85c70e",
"body": "Fix release pipeline: GoReleaser v2 config and untagged-run guard",
"is_bot": false,
"headline": "Merge pull request #5 from veteranbv/ci/goreleaser-v2-config",
"author_name": "Henry Sowell",
"author_login": "veteranbv",
"committed_at": "2026-07-15T03:37:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b26f414d54eca600545484fe557260a7c7f73567",
"body": "The manually dispatched release run surfaced two issues. GoReleaser\nv2.17 warns that the config is version: 0 (fatal in a future release);\nmigrated it — version: 2 header, archives format/builds renamed to\nformats/ids — and validated with goreleaser check plus a full snapshot\nbuild of all six target\n[…]\n step now fails fast with a pointer to the Tag Release\nworkflow instead.\n\nAlso bumps checkout/setup-go/goreleaser-action to their current majors\nto clear the Node 20 deprecation warnings on every run.",
"is_bot": false,
"headline": "ci: migrate goreleaser config to v2 and guard untagged release runs",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-15T03:16:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6b41e82a62fcb559fab37c74a85d6c39a25d91ff",
"body": "One-click release tagging from the Actions tab",
"is_bot": false,
"headline": "Merge pull request #4 from veteranbv/ci/one-click-release",
"author_name": "Henry Sowell",
"author_login": "veteranbv",
"committed_at": "2026-07-15T03:05:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68153b0315fc45069024223997b58abcb92caed2",
"body": "New Tag Release workflow: run it from the Actions tab with a vX.Y.Z\nversion and it validates the format, tags main, and starts the existing\nRelease workflow. Tags pushed with the default GITHUB_TOKEN do not fire\npush-triggered workflows, so the release is dispatched explicitly and\nrelease.yml gains \n[…]\nlow_dispatch trigger for that handoff.\n\nAlso pins goreleaser-action to '~> v2' instead of latest — unpinned\n\"latest\" is how the lint job silently broke, and the release pipeline\nhad the same exposure.",
"is_bot": false,
"headline": "ci: add one-click release tagging and pin GoReleaser",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-15T02:53:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fe19579f69a0651111ebf85e0786a742c183642f",
"body": null,
"is_bot": false,
"headline": "Merge pull request #3 from veteranbv/feat/width-aware-rendering",
"author_name": "Henry Sowell",
"author_login": "veteranbv",
"committed_at": "2026-07-14T00:35:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22fa00de53d039eb465b55b1cd2447a3c71c5a9c",
"body": "The plain-header fallback capped its rule at 60 columns even when the\nterminal was wider, clipping a 70-column name that a 100-column pane\ncould show in full; 60 is now just the preferred rule length and long\nnames widen the rule up to the available width instead of losing\ncharacters. And bootstrapping --config /path/config.toml wrote YAML\ninto the .toml file, which the loader then failed to parse; the default\nconfig is now marshaled in the format the target extension implies.",
"is_bot": false,
"headline": "fix: widen plain headers to the terminal and bootstrap TOML as TOML",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-14T00:15:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f830a532da4107fc9c2c50bb1d1cb79b00a3cb82",
"body": "go-figure's strict mode kills the process with log.Fatal on non-ASCII\ninput, so --text \"日本語\" died before printing anything; non-strict mode\ninstead drops uncovered characters, which silently mangles mixed text\nlike web-サーバ. Rendering is now non-strict as a backstop, and any text\noutside printable ASCII skips the FIGlet ladder entirely in favor of\nthe plain ruled header, which preserves it verbatim and clips by\ndisplay columns.",
"is_bot": false,
"headline": "fix: render non-ASCII text via the plain header",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T23:49:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b623313e8467abc93b40e2babab9db10973e594",
"body": "Two more review findings. Clipping counted runes, so double-width\ncharacters (a CJK username or home path) could pass the check while\noverflowing the terminal on screen; the terminal package now owns\nRuneWidth/DisplayWidth/Clip covering the East Asian wide and emoji\nranges, and the render and ascii \n[…]\nner rendered\nTime: Mon, 01 Jan 0001 00:00:00 UTC and User: unknown from the\nzero-valued snapshot; those lines are now omitted when the data is\nabsent, matching how every other missing metric degrades.",
"is_bot": false,
"headline": "fix: measure clipping in display columns and drop stale system lines",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T23:48:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8a4a910e01c2222c886a09a92f531b42bd7bf212",
"body": "Two edges in the width guarantee: a timed-out system collector left a\nblank OS header line (and an empty JSON header element), and widths of\none or two columns overflowed because the fixed two-space body indent\nwas prepended after clipping. Blank OS lines are now omitted and the\nindent is dropped when the width cap cannot fit it.",
"is_bot": false,
"headline": "fix: handle empty system snapshots and sub-indent widths",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T23:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f860aacb73ba891c723b7cebb1d0b8c7a8c0f53",
"body": "When the width ladder shortens a dotted hostname, buildHeader adds the\nfull name as an info line for the art's benefit. Compact mode already\nleads with the full hostname, so that line rendered it twice\n(PVE1.HOME.LAN | pve1.home.lan | ...). Compact output now skips it.",
"is_bot": false,
"headline": "fix: drop duplicate hostname line from compact output",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T23:30:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76f58143022c76550514a4b86a145ffc16be73be",
"body": "The width ladder's hostname fallback line was leaking into the JSON\nheader: at narrow widths buildHeader shortens the art and prepends the\nfull hostname to Header.Lines, so header[0] flipped between the OS line\nand the hostname depending on terminal size. JSON mode now builds\nagainst a neutral environment, so scripted output is stable regardless\nof where it runs.",
"is_bot": false,
"headline": "fix: make --json output independent of terminal geometry",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T23:13:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e621775bb7c47a7669baad06c57a63ff221eb0dd",
"body": "- Gather no longer waits past its deadline: collectors send apply\n functions over a channel and the loop selects against ctx.Done, so a\n collector stuck in a blocking syscall (ignoring cancellation) is\n abandoned at 250 ms with the finished collectors' results kept. The\n snapshot is only touched\n[…]\nn explicit config path (--config / SYSGREET_CONFIG) is exclusive:\n when the file is missing, sysgreet uses built-in defaults instead of\n silently falling back to a different config file on the host.",
"is_bot": false,
"headline": "fix: tighten width, config, and deadline edges from review",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T22:52:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4a74b74264c526dd2070ded5b0a3232cd7ab0522",
"body": "Four follow-ups to the width-aware rendering work:\n\n- Compact mode output is now clipped to the terminal width like every\n other line; it previously returned before the clipping path ran.\n- Domain shortening (pve1.home.lan -> PVE1) is now opt-in via\n RenderOptions.ShortenDomain and only the hostna\n[…]\nlyConfig), with --width still winning over both.\n- ascii.monochrome once again suppresses the resource threshold\n highlights; keying the colorizer off the terminal profile alone had\n regressed that.",
"is_bot": false,
"headline": "fix: close width and monochrome gaps flagged in review",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T22:30:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "174b7ef797536b1c9f941b124723db12fda20901",
"body": "README highlights the width degradation ladder and script-friendly\noutput, documents the new flags (--json, --font, --width, --no-color,\n--config, --list-fonts) and layout.max_width. CHANGELOG gains a v1.1.0\nentry. CONTRIBUTING notes the new internal/terminal package plus the\noutput rules (width and color must flow through it), and the examples\nshow narrow-terminal degradation and jq-based scripting.",
"is_bot": false,
"headline": "docs: cover width handling, new flags, and JSON output",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T21:53:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b3f803ca98d5e8b7d5e65eedbfe65a81b258cd5",
"body": "The lint job pinned golangci-lint-action@v6 with version: latest, which\nnow resolves to golangci-lint v2 and rejects the v1-format .golangci.yml\noutright. Migrated the config with `golangci-lint migrate` and pinned\nthe action (v8) and linter (v2.5.0) so lint results stop depending on\nwhatever \"latest\" means this week.",
"is_bot": false,
"headline": "chore: migrate golangci-lint config to v2",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T21:53:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8363fffceb7b2b5530595da129b1e0ccdffdd5df",
"body": "Collectors previously ran one after another, so on Windows the 100 ms\nCPU sample alone blew the 50 ms startup budget, and any single slow\nmetric source could hang the login shell indefinitely. Each collector\nnow gathers in its own goroutine (they write disjoint Snapshot fields)\nand shares a 250 ms deadline; a collector that misses it just drops its\nsection, which the banner already degrades around.",
"is_bot": false,
"headline": "perf: run collectors concurrently under a shared deadline",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T21:53:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5a3744f186d37c07a16d9fc7972c9c5c84e0583",
"body": "The banner previously rendered at full FIGlet width and let the terminal\nwrap it, which turned narrow windows (tmux panes, phone SSH sessions)\ninto garbled block characters. Sysgreet now detects the terminal width\nand walks a fallback ladder before printing: full hostname in the\nconfigured font, hos\n[…]\n --json for scripting (structured sections with raw percentages,\nnever prompts), --font, --width, --no-color, --config, --list-fonts,\nand layout.max_width / SYSGREET_LAYOUT_MAX_WIDTH to cap the width.",
"is_bot": false,
"headline": "feat: adapt banner to terminal width with graceful fallbacks",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2026-07-13T21:52:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "165c8f7c7b23318109eb9fad3ead1e3d80c014bd",
"body": null,
"is_bot": false,
"headline": "docs: add images to README for home lab example and winning banner",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T23:42:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "96cfb07b455fa1fb814cd1edba8b677ab4644f48",
"body": null,
"is_bot": false,
"headline": "docs: reorder special modes and enhance text flag description",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T22:14:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40e9713be96e9347c77ba8bf6bbd850b473bf5fc",
"body": "…lation steps",
"is_bot": false,
"headline": "fix: improve README with additional usage examples and clarify instal…",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T22:12:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46db5b686578d0c1bb54306a3c612c15d2fadef2",
"body": null,
"is_bot": false,
"headline": "docs: add text mode example image to README",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T22:12:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80525fb680b98035de954db540fbc1243dda1a44",
"body": null,
"is_bot": false,
"headline": "chore: add RELEASE.md to gitignore for local release notes",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T22:01:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8caa4fe0c434f702aacd759dba446177582e1044",
"body": null,
"is_bot": false,
"headline": "fix: add contents write permission to release workflow",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:57:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d2c5e180f45b0c7c2ad9146c163f94081cb1cb6",
"body": null,
"is_bot": false,
"headline": "docs: add version and license badges to README",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:56:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6aa891b23ea197ace6e9e81e49ae5116816b415",
"body": "- Add --version flag showing version, commit, and build date\n- Configure GoReleaser to inject version info via ldflags\n- Update README with version verification in update instructions\n- Automated releases triggered by pushing version tags\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add version flag and prepare v1.0.0 release",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:54:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8204525a38a7009337c7472530c2421a087e20a6",
"body": null,
"is_bot": false,
"headline": "docs: update README for clarity and consistency",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:44:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1977104dba2b25edfa14834dd254ed2c7e4e2e6e",
"body": "- Refactored the main function to improve readability by extracting flag parsing and mode handling into dedicated functions.\n- Introduced a new `runSettings` struct to encapsulate command-line flags.\n- Enhanced error handling and interactivity resolution logic for better clarity and maintainability.\n- Streamlined the logic for running text and demo modes, improving overall code organization.",
"is_bot": false,
"headline": "refactor: simplify main function and enhance flag parsing",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:37:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "743b8b5581ab0871c555c86b552aa77e4764317b",
"body": "- Added instructions to ensure Go's bin directory is in the user's PATH.\n- Clarified the behavior of the existing configuration handling in sysgreet, detailing the new options for config policy.\n- Updated integration test to include the new configuration policy environment variable for prompt flows.",
"is_bot": false,
"headline": "docs: update README and improve configuration handling",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T21:30:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "356ff0b7df115ec58282ae051e1fdbd42dc03fe9",
"body": "- Updated the error handling in the Bootstrap function to clarify the check for non-existent configuration files.\n- Enhanced comments for better understanding of the error checking logic.",
"is_bot": false,
"headline": "fix: improve error handling for non-existent configuration files",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T20:12:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b212a2dec5e2645a7ba154eb78cd04489a40eafb",
"body": "feat: enhance banner aesthetics with gradient colors, Unicode fonts, and demo mode",
"is_bot": false,
"headline": "Merge pull request #1 from veteranbv/002-i-would-like",
"author_name": "Henry Sowell",
"author_login": "veteranbv",
"committed_at": "2025-10-11T19:58:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72bec634e980354a721fbad3a7cecb2669d7b026",
"body": "- Replaced the 'exportloopref' linter with 'copyloopvar' in the .golangci.yml file to enhance code quality checks.",
"is_bot": false,
"headline": "chore: update golangci linters configuration",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T19:55:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74159134e583ae26d9668860ca8767437fc03ba5",
"body": "- Added 'sysgreet' to .gitignore to exclude the binary from version control.\n- Removed the 'sysgreet' binary file from the repository.\n- Adjusted the CI workflow to maintain coverage reporting without changes to test execution.",
"is_bot": false,
"headline": "chore: update .gitignore and CI workflow for sysgreet",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T19:51:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9c11ae44d258a157fbc0b292e0f4ee77997182e",
"body": "- Updated the error variable name from `ErrUserCancelled` to `ErrUserCanceled` for consistency in the bootstrap package.\n- Adjusted related error handling in the bootstrap process to reflect the new variable name.\n- Improved comments and formatting in the system collector and rendering code for clarity.",
"is_bot": false,
"headline": "fix: correct user cancellation error variable name",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T19:42:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4b682ea46a6256c6ee29d8b9111a6e69243f861",
"body": "- Refactored the Bootstrap function to improve readability and maintainability by extracting logic into separate functions for handling existing configurations and creating new ones.\n- Introduced helper functions for merging configuration settings, enhancing modularity and clarity in the configuration management process.\n- Updated tests to ensure consistent behavior across configuration handling scenarios.",
"is_bot": false,
"headline": "refactor: streamline bootstrap configuration handling",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T19:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9225314fa14d01f38bd3df265404bc60e393df9",
"body": "- Changed expected default ASCII font from \"slant\" to \"ANSI Regular\" in multiple test cases.\n- Updated integration tests to reflect the new default font setting for consistency across configurations.",
"is_bot": false,
"headline": "fix: update default ASCII font in configuration tests",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:54:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8ef95bc94b8a50515a745e3f5fbed627437344f",
"body": "- Added gradient color support for banner lines, cycling through a defined color gradient.\n- Introduced 6 new Unicode block fonts for enhanced ASCII art rendering.\n- Implemented `--demo` flag to display a 'SYSGREET' banner with fake data for demos.\n- Added `--text` flag to render custom text as ASCII art.\n- Updated README and documentation to reflect new features and configuration examples.",
"is_bot": false,
"headline": "feat: introduce gradient color support and new flags",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:49:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f633d9885d1e0266f61aac662b47ec738a11e6dc",
"body": "- Insert a newline character before the header in the layout rendering to improve output formatting.",
"is_bot": false,
"headline": "fix: add newline before header in layout rendering",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:37:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f794ed5f16b5b22efc2b01b6b031f9fc10f146da",
"body": "- Replace the existing logo with a padded version to improve visual presentation.",
"is_bot": false,
"headline": "chore: update sysgreet logo image in README",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:23:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a872c47a445cb711db9324bf7b9e663a0df4e030",
"body": "- Replace the existing sysgreet.png with a new version to enhance visual branding.",
"is_bot": false,
"headline": "chore: update sysgreet logo image",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:18:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89ab94590377c3ecbe3e43d80bcdb5bdacb2e162",
"body": "- Add demo mode to sysgreet for showcasing a static banner with fake data.\n- Update README to include a demo output image and improve aesthetic descriptions.\n- Modify configuration examples to reflect new font options and gradient support.\n- Adjust ASCII rendering to support gradient colors in the banner output.",
"is_bot": false,
"headline": "feat: enhance README and add demo mode",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T18:14:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bfaa5f174ed661ac313133d1f16fb1f2697309d",
"body": "- Update project name in all relevant files including .gitignore, .goreleaser.yml, README, and configuration examples.\n- Modify binary output name and build commands in Makefile and CI workflows.\n- Adjust environment variable prefixes and configuration paths to reflect the new project name.\n- Update tests and documentation to reference sysgreet instead of hostinfo.",
"is_bot": false,
"headline": "refactor: rename project from hostinfo to sysgreet",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T16:51:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b46c0e61ad9298bffa4d36668e47f765deec151",
"body": "…h for hostinfo",
"is_bot": false,
"headline": "fix: update installation command in README to specify the correct pat…",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T06:18:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1adb1e491c50dd86722abf9634ca7c1ff46168c9",
"body": "- Add core system information collectors\n- Add ASCII banner rendering with custom fonts\n- Add configuration support (YAML/TOML)\n- Add network interface filtering\n- Add cross-platform support (Darwin/Linux/Windows)\n- Add tests, benchmarks, and golden files\n- Add CI/CD configuration (GitHub Actions, GoReleaser)\n- Add documentation and contributing guidelines",
"is_bot": false,
"headline": "feat: initial hostinfo implementation",
"author_name": "VeteranBV",
"author_login": "veteranbv",
"committed_at": "2025-10-11T06:14:38Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 4,
"commits_last_year": 46,
"latest_release_at": "2026-07-15T04:06:16Z",
"latest_release_tag": "v1.2.1",
"releases_from_tags": false,
"days_since_last_push": 6,
"active_weeks_last_year": 3,
"days_since_latest_release": 6,
"mean_days_between_releases": 92.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": true,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/veteranbv/sysgreet",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/veteranbv/sysgreet",
"is_deprecated": false,
"latest_version": "v1.2.1",
"repository_url": "https://github.com/veteranbv/sysgreet",
"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-15T04:03:48Z",
"latest_version_yanked": null,
"days_since_latest_publish": 6
}
]
},
"popularity": {
"forks": 1,
"stars": 29,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2026-04-06",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": {
"days": [
{
"date": "2025-10-11",
"count": 2
},
{
"date": "2025-10-12",
"count": 20
},
{
"date": "2025-10-13",
"count": 3
},
{
"date": "2025-10-14",
"count": 2
},
{
"date": "2025-10-17",
"count": 1
},
{
"date": "2026-04-20",
"count": 1
}
],
"complete": true,
"collected": 29,
"total_stars": 29
},
"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": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 14850,
"source_files_sampled": 55,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "golang.org/x/sys",
"direct": true,
"version": "v0.20.0",
"severity": "unknown",
"ecosystem": "go",
"cvss_score": null,
"advisory_ids": [
"GO-2026-5024"
],
"fixed_version": "0.44.0",
"advisory_count": 1,
"oldest_advisory_days": 60
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"unknown": 1
},
"advisory_count": 1,
"affected_count": 1,
"assessed_count": 13,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 1
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/common-nighthawk/go-figure",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20210622060536-734e95fb86be"
},
{
"name": "github.com/pelletier/go-toml/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.1.0"
},
{
"name": "gopkg.in/yaml.v3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v3.0.1"
},
{
"name": "golang.org/x/term",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.20.0"
},
{
"name": "github.com/shirou/gopsutil/v3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v3.24.5"
},
{
"name": "golang.org/x/sys",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.20.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/common-nighthawk/go-figure",
"direct": true,
"version": "v0.0.0-20210622060536-734e95fb86be",
"ecosystem": "go"
},
{
"name": "github.com/pelletier/go-toml/v2",
"direct": true,
"version": "v2.1.0",
"ecosystem": "go"
},
{
"name": "github.com/shirou/gopsutil/v3",
"direct": true,
"version": "v3.24.5",
"ecosystem": "go"
},
{
"name": "golang.org/x/sys",
"direct": true,
"version": "v0.20.0",
"ecosystem": "go"
},
{
"name": "golang.org/x/term",
"direct": true,
"version": "v0.20.0",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": true,
"version": "v3.0.1",
"ecosystem": "go"
},
{
"name": "github.com/go-ole/go-ole",
"direct": false,
"version": "v1.2.6",
"ecosystem": "go"
},
{
"name": "github.com/lufia/plan9stats",
"direct": false,
"version": "v0.0.0-20211012122336-39d0f177ccd0",
"ecosystem": "go"
},
{
"name": "github.com/power-devops/perfstat",
"direct": false,
"version": "v0.0.0-20210106213030-5aafc221ea8c",
"ecosystem": "go"
},
{
"name": "github.com/shoenig/go-m1cpu",
"direct": false,
"version": "v0.1.6",
"ecosystem": "go"
},
{
"name": "github.com/tklauser/go-sysconf",
"direct": false,
"version": "v0.3.12",
"ecosystem": "go"
},
{
"name": "github.com/tklauser/numcpus",
"direct": false,
"version": "v0.6.1",
"ecosystem": "go"
},
{
"name": "github.com/yusufpapurcu/wmi",
"direct": false,
"version": "v1.2.4",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 13,
"direct_count": 6,
"indirect_count": 7
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 5,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "veteranbv",
"commits": 46,
"avatar_url": "https://avatars.githubusercontent.com/u/7597583?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"release.yml",
"tag-release.yml"
],
"has_docs_dir": true,
"linter_configs": [
".golangci.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"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": 10,
"reason": "4 out of 4 merged PRs checked by a CI test -- score normalized to 10",
"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/14 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": "20 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": 2,
"reason": "dependency not pinned by hash detected -- score normalized to 2",
"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": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "205045e085a1bece6f82c6a570492eb3ba6a0473",
"ran_at": "2026-07-22T02:31:55Z",
"aggregate_score": 4.1,
"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-15T04:06:20Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-15T04:03:48Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/veteranbv/sysgreet",
"host": "github.com",
"name": "sysgreet",
"owner": "veteranbv"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"security": 51,
"vitality": 71,
"community": 45,
"governance": 50,
"engineering": 76
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 71,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"commits_last_year": 46,
"human_commit_share": 1,
"days_since_last_push": 6,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 6
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "46 commits in the last year",
"points": 15,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 46
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "20 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": "good",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 83,
"inputs": {
"releases_count": 4,
"latest_release_tag": "v1.2.1",
"releases_from_tags": false,
"days_since_latest_release": 6,
"mean_days_between_releases": 92.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 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 6
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~92.1 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 92.1
}
}
],
"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": 6,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 6 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 6
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 45,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"forks": 1,
"stars": 29,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "29 stars",
"points": 23.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 29
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"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 (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"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": 50,
"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": "moderate",
"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": 60,
"inputs": {
"merged_prs": 5,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 1
},
"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": "5/6 decided PRs merged",
"points": 31.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 5,
"decided": 6
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/14 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": 23,
"owner_type": "User",
"is_verified": null,
"owner_login": "veteranbv",
"public_repos": 48,
"account_age_days": 4450
},
"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": "23 followers of veteranbv",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 23,
"login": "veteranbv"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "48 public repos, account ~12 yr old",
"points": 24.3,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 48
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 92,
"inputs": {
"packages": [
"github.com/veteranbv/sysgreet"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 6
},
"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 6 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 6
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 76,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": ".golangci.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"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": "4 out of 4 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 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": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 51,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": null,
"notes": [],
"value": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 18,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 0,
"scorecard_aggregate": 4.1
},
"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": "4 out of 4 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"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/14 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": "20 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 2",
"points": 1,
"status": "partial",
"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": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 13 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 13
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 89,
"inputs": {
"source": "osv",
"advisories": 1,
"affected_packages": 1,
"assessed_packages": 13,
"unassessed_packages": 0,
"affected_by_severity": "unknown 1",
"direct_affected_packages": 1
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "1 affected: golang.org/x/sys v0.20.0 (unknown)",
"points": 26.6,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 1,
"packages": "golang.org/x/sys v0.20.0 (unknown)"
}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory has been public longer than 90 days",
"points": 40,
"status": "met",
"details": [
{
"code": "advisories_none_stale",
"params": {
"days": 90
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 13,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 64,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "46 of 46 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 46,
"sampled": 46
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 78,
"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": true,
"typecheck_configs": [],
"agent_commit_share": 0.022,
"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": ".golangci.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yml"
}
}
],
"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": "1 of the last 46 commits agent-authored or agent-credited",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 1,
"sampled": 46
}
}
],
"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 2",
"points": 2,
"status": "partial",
"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": 14850,
"source_files_sampled": 55,
"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/55 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 55,
"oversized": 0
}
}
],
"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": [],
"report_type": "repository",
"generated_at": "2026-07-22T02:32:06.121636Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/v/veteranbv/sysgreet.svg",
"full_name": "veteranbv/sysgreet",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}