Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 84,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 56534,
"JavaScript": 54353
},
"pushed_at": "2026-07-22T15:38:56Z",
"created_at": "2025-11-25T11:18:43Z",
"owner_type": "User",
"updated_at": "2026-07-22T15:38:22Z",
"description": "Direct Key Input Handler for CLI Applications",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go",
"JavaScript"
]
},
"owner": {
"blog": null,
"name": "Jeff Day",
"type": "User",
"login": "phroun",
"company": null,
"location": "Roseburg, Oregon, USA",
"followers": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/13051806?v=4",
"created_at": "2015-06-25T15:34:50Z",
"is_verified": null,
"public_repos": 27,
"account_age_days": 4045
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.8",
"kind": "patch",
"published_at": "2026-07-22T15:38:56Z"
},
{
"tag": "v0.3.7",
"kind": "patch",
"published_at": "2026-07-19T00:03:37Z"
},
{
"tag": "v0.3.6",
"kind": "patch",
"published_at": "2026-07-18T18:59:46Z"
},
{
"tag": "v0.3.5",
"kind": "patch",
"published_at": "2026-07-17T23:35:06Z"
},
{
"tag": "v0.3.4",
"kind": "patch",
"published_at": "2026-07-17T23:20:29Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2025-12-27T05:55:06Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2025-12-26T10:35:04Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2025-12-21T08:47:09Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2025-12-21T07:17:48Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2025-12-21T06:49:43Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2025-11-25T11:58:00Z"
}
],
"recent_commits": [
{
"oid": "bc9b00edb869fcc61278117de1415b08473db3b0",
"body": null,
"is_bot": false,
"headline": "mouse wheel fix",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2026-07-22T15:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "666b78a39125bbfb61de78ec2fe356e90dd01975",
"body": null,
"is_bot": false,
"headline": "osc52 clipboard patch",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2026-07-19T00:02:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fac0e97e02a34e5f1b8710dc537c096caf78703b",
"body": null,
"is_bot": false,
"headline": "fixed to allow cursor position inquiry response",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2026-07-18T18:58:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20fa2297bfed935017a14dc85421d13294324158",
"body": null,
"is_bot": false,
"headline": "fix double quote encoding to differentiate two ways of producing",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2026-07-17T23:34:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4b0a6cbc6162b10e45c9f644a13b0e3fc9a1e04",
"body": null,
"is_bot": false,
"headline": "patch to allow disabling of emit pasted keys",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2026-07-17T23:18:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22a111b1f6959dab586e5472eba719bbdea2f11f",
"body": "parseModifierParam was designed for xterm modifier parameters where 1\nis the minimum valid value. It converted 0 to 1, which broke left\nmouse button detection (button 0 became button 1/middle).\n\nAdded parseIntParam for cases where 0 is valid:\n- Mouse button codes (0=left, 1=middle, 2=right)\n- Mouse X/Y coordinates (0 is valid position)\n\nNode.js handler already used parseInt(...) || 0 correctly.",
"is_bot": false,
"headline": "Fix SGR mouse button code parsing: preserve 0 for left button",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-27T05:49:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19bbd56cb1f054a71fb6b693fb3587d2f69c09bc",
"body": "Was using baseName[0] which gets the first byte, not the first rune.\nFor multi-byte UTF-8 chars like ´ (0xC2 0xB4), this incorrectly got\n0xC2 = 'Â' which maps to 'M-M', causing M-^M instead of M-^E.\n\nNow using utf8.DecodeRuneInString to properly decode the rune.",
"is_bot": false,
"headline": "Fix UTF-8 rune decoding in macOS Option char detection",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:31:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d46cc022d49c618ba7681a68ef7dfb951da3414",
"body": "When macOS sends Option+Ctrl+E in Kitty protocol, the keycode is ´\n(the Unicode result of Option+e) with Ctrl modifier. Now we:\n1. Decode ´ → M-e (from macOSOptionChars)\n2. Extract base char 'e' and apply Ctrl modifier\n3. Output M-^E instead of C-´\n\nThis properly combines the implicit Option/Meta from the decoded\ncharacter with explicit modifiers from the Kitty protocol.",
"is_bot": false,
"headline": "Decode macOS Option chars in Kitty protocol with modifiers",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:27:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ac9d07b233839356699e9bef7dd6cfa0278c044",
"body": "Kitty extended format uses \"keycode:shifted_key:base_key\" for the\nkeycode portion (e.g., \"47:63\" for Shift+?). The parseModifierParam\nfunction was returning 1 on hitting the colon instead of parsing 47.\n\nNow we extract just the first number before any colon.",
"is_bot": false,
"headline": "Fix Kitty protocol keycode parsing with colons",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:20:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6342382ba581e84eec665cf727f3ebbf4f441c9",
"body": "- Fix CSI sequence detection: require at least 3 chars (ESC [ <final>)\n before checking for terminator byte, since '[' (0x5B) is itself in\n the terminator range (0x40-0x7E)\n- Fix kittyModifierKeys mapping: left modifiers are 57441-57446, right\n modifiers are 57447-57452 (was incorrectly interleaved L/R)\n- Add KP_Enter (57414) as \"Return\" to distinguish from regular Enter",
"is_bot": false,
"headline": "Fix Kitty protocol support: CSI parsing, modifier keycodes, KP_Enter",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:13:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89bb4788855d7f24e12056dd8a762b6ed9667f19",
"body": "Changed Alt modifier key press/release events to use 'A' prefix\ninstead of 'Alt' to match the convention of other single-character\nprefixes (S, C, s, M, H).",
"is_bot": false,
"headline": "Use consistent single-char 'A' prefix for Alt modifier keys",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:04:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b5d3b5554e72e9bc9cbc1aca4ae0cbccf9fcce2",
"body": "Modifier key events now include :Left or :Right suffix to distinguish\nwhich physical key was pressed:\n- S-Press:Left, S-Press:Right, S-Release:Left, etc.\n- C-Press:Left, C-Press:Right, etc.\n- Alt-Press:Left, Alt-Press:Right, etc.\n\nApps can still match on just \"S-Press\" (without suffix) to catch both\n[…]\nLeft\" for the left shift.\n\nNote: Regular modifier bits on key events (like S-a) don't have this\ndistinction - the protocol only reports which side for the modifier\nkey press/release events themselves.",
"is_bot": false,
"headline": "Add left/right distinction for modifier key press/release events",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:02:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3b4b9b58fab27a71f66248294b06c76e2da7a56f",
"body": "- Add extended key codes for function keys (F1-F20), navigation keys\n (arrows, home, end, etc.), and system keys (capslock, etc.)\n- Add modifier key detection (Shift, Ctrl, Alt, Super, Meta, Hyper)\n for press/release reporting: S-Press, S-Release, Alt-Press, etc.\n- Support event type field (press/\n[…]\neycode ; modifiers : event_type u\n- For non-modifier keys, append :Release or :Repeat suffix when applicable\n- Fallback to unicode codepoint for unknown keycodes\n\nBoth Go and Node.js handlers updated.",
"is_bot": false,
"headline": "Expand Kitty keyboard protocol support",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T10:00:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "766904f53fb733b0caa4be277ce4263ea4b28850",
"body": "- Emit \"Special\" key before M-Up/M-Down/etc for ESC ESC [ X sequences\n This allows programs to distinguish macOS Option mode from xterm-style\n\n- Mouse drag events now include position: MouseLeftDrag@10,20\n Unlike press/release which emit Mouse@x,y then MouseLeftPress separately,\n drag events need position to be meaningful so it's embedded\n\nBoth Go and Node.js handlers updated.",
"is_bot": false,
"headline": "Emit Special key before ESC ESC sequences; embed position in drag events",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:55:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5601c4489963e1357521b335ca4edd45f1b0f017",
"body": "- --kitty: Enable Kitty keyboard protocol (basic mode)\n- --kitty-full: Enable Kitty keyboard protocol with all flags\n- --mouse: Enable SGR mouse reporting\n\nThis allows testing the handler with different terminal protocol modes.",
"is_bot": false,
"headline": "Add --kitty and --mouse flags to testkey",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:45:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04a98e331bd88978e8334195b4b0bd871f3fc36d",
"body": "These keys produce accent marks (´ˆ˜¨) on macOS as dead keys waiting\nfor a second character to compose. Now they map to M-e, M-i, M-n, M-u.\n\nNote: Option+Shift+E/I/N/U produce the same accent marks as their\nlowercase versions (they're still dead keys), so no separate mapping needed.\n\nAlso note: Cmd+Option combinations report the same as Option alone when\niTerm2 Option key is set to \"Normal\" - this is a terminal limitation\nas the Cmd modifier isn't encoded in the escape sequence.",
"is_bot": false,
"headline": "Add dead key support for Option+e/i/n/u",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c562b4bc9ccb50256d71b3eb88ac7031db92fb9e",
"body": "The couldBeEscapePrefix function was incorrectly detecting ESC ESC [\nas terminated because '[' (0x5B) falls in the terminator range 0x40-0x7E.\nNow we require length >= 4 before checking for termination, ensuring we\nwait for the actual arrow key letter (A/B/C/D/H/F).",
"is_bot": false,
"headline": "Fix macOS Option+arrow sequence detection",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:36:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "977b2afbdedeb84d4745d3d1cc1292d77039e576",
"body": "The macOS Option+key character decoding is now enabled by default\nwhen running on Darwin (macOS), since that's where it's relevant.\nUsers can still explicitly set it to false if needed.",
"is_bot": false,
"headline": "Default decodeMacOSOption to true on Darwin",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:35:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "07164c003784006bd6ea4ccb0ee940d67ffc4ee7",
"body": "- Add SGR and X10 mouse protocol parsing for both Go and Node.js\n- Emit mouse events as two keys: position (Mouse@x,y) then action (MouseLeftPress, etc.)\n- Support mouse modifiers (Shift, Alt, Ctrl), scroll, drag, and button press/release\n- Fix macOS Option+arrow keys (ESC ESC [ A pattern)\n- Add toggleable macOS Option+key Unicode character decoding (∂ → M-d, etc.)\n- Use M-X for uppercase letters instead of M-S-x (S- only for special keys)",
"is_bot": false,
"headline": "Add mouse reporting and macOS Option key support",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-26T09:31:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95b68c7451964802cb94bfdcfdb1a958e15ad500",
"body": "- Add PasteChunk struct (Go) with Content and IsFinal fields\n- Add OnPasteChunk callback to receive incremental paste chunks\n- Keep 7 bytes buffered to avoid splitting the end sequence\n- Configurable chunk size (default 1024 bytes) via PasteChunkSize option\n- Final chunk has IsFinal=true flag set\n- Full paste content still delivered to OnPaste callback\n- Implement in both Go and Node.js versions",
"is_bot": false,
"headline": "Add OnPasteChunk callback for incremental bracketed paste handling",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-12-21T08:41:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7dbcca8a098fe520990a165fa55456e498595fd7",
"body": "…zQ9kXSmz36QUk3sTPuchi\n\nupdated node version also, 0.3.0",
"is_bot": false,
"headline": "Merge pull request #4 from phroun/claude/translate-key-handler-go-01G…",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-12-21T07:16:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e470cd57231e532aa46f93351b55bd4a1f623180",
"body": null,
"is_bot": false,
"headline": "updated node version also, 0.3.0",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2025-12-21T07:15:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d35185cd02f0014f10f0c3ed3509a41e079009c7",
"body": "…zQ9kXSmz36QUk3sTPuchi\n\nsupport for channel integration",
"is_bot": false,
"headline": "Merge pull request #3 from phroun/claude/translate-key-handler-go-01G…",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-12-21T06:47:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c9e02689961260f6c624fa08ece5d39acaf35f2",
"body": null,
"is_bot": false,
"headline": "support for channel integration",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2025-12-21T06:45:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c727d8ba56a88d113f267e5c238fbc5a8e292c2",
"body": "…zQ9kXSmz36QUk3sTPuchi\n\nClaude/translate key handler go 01 gz q9k x smz36 q uk3s t puchi",
"is_bot": false,
"headline": "Merge pull request #2 from phroun/claude/translate-key-handler-go-01G…",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:56:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58e55a58c282bffe0272d43004fa79d8465b538e",
"body": null,
"is_bot": false,
"headline": "v0.2",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:54:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3eb1fa40908077a32e78f13e198dfbd4b829a51",
"body": "…i' of github.com:phroun/direct-key-handler into claude/translate-key-handler-go-01GzQ9kXSmz36QUk3sTPuchi",
"is_bot": false,
"headline": "Merge branch 'claude/translate-key-handler-go-01GzQ9kXSmz36QUk3sTPuch…",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:50:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f8ec04a7888d2a5d69a22d396410008f9261d98",
"body": null,
"is_bot": false,
"headline": "Add README",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-11-25T11:49:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a24fb8330e3ffe5d4fe441ddec0852dc2546710",
"body": null,
"is_bot": false,
"headline": "version 0.2",
"author_name": "Jeff R. Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:47:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a71c921d64961ddcbd5df89a5887779441a05e9",
"body": "Call StopListening() before os.Exit() to properly restore the terminal\nfrom raw mode. Without this, the terminal remains in raw mode after\nthe program exits.",
"is_bot": false,
"headline": "Restore terminal state before exit",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-11-25T11:40:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50e9adf395c2228dc1c17a7b0c2eec3e0dd6d565",
"body": "Use \\r\\n instead of \\n for proper carriage return in raw mode output.\nWithout \\r, the cursor only moves down without returning to column 0.",
"is_bot": false,
"headline": "Fix line endings in raw terminal mode",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-11-25T11:35:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60b7d9db976735f549179e649d7862fc398a6815",
"body": "…zQ9kXSmz36QUk3sTPuchi\n\nClaude/translate key handler go 01 gz q9k x smz36 q uk3s t puchi",
"is_bot": false,
"headline": "Merge pull request #1 from phroun/claude/translate-key-handler-go-01G…",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:32:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35d19547ddf6d7038ef01cf377f70e2e8a4b91b1",
"body": "Complete the Go translation by adding the cmd/testkey sample app that\ndemonstrates the DirectKeyboardHandler usage. Also fix .gitignore to\nonly exclude the compiled binary at the root level.",
"is_bot": false,
"headline": "Add testkey sample application",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-11-25T11:29:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ead61c8e46cc4a3b9403bc49c332913eaa633d18",
"body": "One-for-one translation of the Node.js direct-keyboard-handler module to Go,\npreserving all nuances and quirks of the original implementation:\n\n- Buffered input system to prevent data loss during paste operations\n- Asynchronous processing via goroutines\n- Complete VT100/ANSI escape sequence handling\n[…]\n- CSI sequence parsing with modifier support\n- Control key processing\n- 10ms timing for standalone ESC key detection\n\nIncludes cmd/testkey sample application matching the original testkey.js behavior.",
"is_bot": false,
"headline": "Add Go translation of direct-keyboard-handler",
"author_name": "Claude",
"author_login": "claude",
"committed_at": "2025-11-25T11:28:15Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "47a578b04577ac264582eecc3a4f3bb19db39e8a",
"body": null,
"is_bot": false,
"headline": "Added original Node.js version",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:19:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbc30d44727dc8f75f4f81a2c46b942beed06809",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Jeff Day",
"author_login": "phroun",
"committed_at": "2025-11-25T11:18:43Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 11,
"commits_last_year": 35,
"latest_release_at": "2026-07-22T15:38:56Z",
"latest_release_tag": "v0.3.8",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 4,
"days_since_latest_release": 0,
"mean_days_between_releases": 23.7
},
"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/phroun/direct-key-handler",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/phroun/direct-key-handler",
"is_deprecated": false,
"latest_version": "v0.3.8",
"repository_url": "https://github.com/phroun/direct-key-handler",
"versions_count": 11,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-22T15:37:46Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0
},
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 52511,
"source_files_sampled": 7,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"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": "golang.org/x/term",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.15.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 4,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "claude",
"commits": 20,
"avatar_url": "https://avatars.githubusercontent.com/u/81847?v=4"
},
{
"type": "User",
"login": "phroun",
"commits": 16,
"avatar_url": "https://avatars.githubusercontent.com/u/13051806?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.556
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"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 3 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/23 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 4,
"reason": "5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 9,
"reason": "1 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "bc9b00edb869fcc61278117de1415b08473db3b0",
"ran_at": "2026-07-22T20:27:07Z",
"aggregate_score": 2.9,
"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-22T15:37:50Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2025-12-21T07:16:54Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/phroun/direct-key-handler",
"host": "github.com",
"name": "direct-key-handler",
"owner": "phroun"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"security": 29,
"vitality": 74,
"community": 24,
"governance": 57,
"engineering": 34
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 57,
"inputs": {
"commits_last_year": 35,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 4
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "4/52 weeks with commits",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 4
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "35 commits in the last year",
"points": 14,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 35
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4",
"points": 4,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 11,
"latest_release_tag": "v0.3.8",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 23.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "11 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 11
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~23.7 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 23.7
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 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": 57,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.556
},
"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 56% of commits",
"points": 10,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 56
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"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": 4,
"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": "4/4 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 4,
"decided": 4
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/23 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"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": 46,
"inputs": {
"followers": 3,
"owner_type": "User",
"is_verified": null,
"owner_login": "phroun",
"public_repos": 27,
"account_age_days": 4045
},
"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": "3 followers of phroun",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 3,
"login": "phroun"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "27 public repos, account ~11 yr old",
"points": 22.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 27
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/phroun/direct-key-handler"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "11 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 11
}
}
],
"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": 34,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 3 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": "critical",
"name": "Security",
"value": 29,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 29,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 2.9
},
"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 3 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/23 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "5 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 4",
"points": 3,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "1 existing vulnerabilities detected",
"points": 6.8,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 60,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 36,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.667,
"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": "24 of 36 human commits state their intent (structured subject or explanatory body)",
"points": 35.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 24,
"sampled": 36
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 62,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "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": "no agent-authored commits among the last 36",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 36
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 52511,
"source_files_sampled": 7,
"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/7 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 7,
"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-22T20:27:17.178875Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/p/phroun/direct-key-handler.svg",
"full_name": "phroun/direct-key-handler",
"license_state": "standard",
"license_spdx": "MIT"
}