Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 367,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 818122,
"Makefile": 481
},
"pushed_at": "2026-07-26T19:22:38Z",
"created_at": "2026-03-28T22:08:46Z",
"owner_type": "User",
"updated_at": "2026-07-26T19:20:13Z",
"description": "Yandex Tracker CLI for humans and LLM agents",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "kliuev.dev",
"name": "Viacheslav Kliuev",
"type": "User",
"login": "slavkluev",
"company": null,
"location": null,
"followers": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/5838054?v=4",
"created_at": "2013-11-02T13:22:05Z",
"is_verified": null,
"public_repos": 6,
"account_age_days": 4649
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-07-26T19:24:01Z"
},
{
"tag": "v0.2.1",
"kind": "patch",
"published_at": "2026-07-26T18:32:34Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-04-08T20:03:34Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-04-03T22:55:41Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-04-02T19:59:45Z"
}
],
"recent_commits": [
{
"oid": "9bbfba5c487fc7cda762486cbe13cc75f27432ab",
"body": "JSON output collapsed each user reference to a single display name via\nDerefUser (display -> login -> id). Two people sharing a display name were\nindistinguishable, so scripts and agents had no way to tell who commented,\nwho is assigned, or who leads a queue.\n\nEmbedded user references carry only sel\n[…]\n0 and document the pairing plus the user get handoff\n\nThe value composes with `ytr user get`, which accepts a string ID. Verified\nagainst a live organization, where the embedded id is the numeric uid.",
"is_bot": false,
"headline": "feat(json): pair every user field with its Tracker user ID",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T19:18:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6c67aa80e8b5ca854c03774747598ed7e712b3ad",
"body": "Earlier review-fix commits introduced four lint regressions:\n- json_fields.go: use slices.Contains for hasOmitempty (modernize); annotate\n the reflect.Kind switch in isEmptyValue (exhaustive, mirrors encoding/json)\n- output_test.go: gofmt struct-field alignment (goimports)\n- poll_test.go: build the dedup fixture from a slice instead of a literal with\n adjacent repeated words (dupword)",
"is_bot": false,
"headline": "chore(lint): restore golangci-lint to zero issues",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7899d6d362765682b3878640ddeddf53748fdfd",
"body": "The build Date was collected from ldflags / vcs.time but never reached Info or\nany output (dead code), and the version command ignored --quiet.\n\n- add Date to version.Info and the JSON output (new \"date\" field)\n- print a \"date:\" line in human output and document the new JSON field\n- honor --quiet by printing only the version string (script-friendly)",
"is_bot": false,
"headline": "fix(version): honor --quiet and surface build date",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7cc1fe9218a166f3011189cd361a4849fb308261",
"body": "create matched the new item by assuming it is the last element (API order is\nnot guaranteed) and failed with a non-zero exit when the item was absent from\nthe response. Since CreateChecklistItem is not idempotent, that exit code made\nagents retry and produce duplicate items.\n\n- create: identify the \n[…]\n on a successful mutation that we cannot confirm from the\n response, report a best-effort result from the request instead of erroring\n- edit: guard against nil checklist elements while matching by ID",
"is_bot": false,
"headline": "fix(checklist): match created/edited item by data, no false hard-failure",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "81c31f68c32eac46defce9b5fbc13897cdc6f72b",
"body": "user get did not validate its argument, unlike every neighboring command.\n'user get \"\"' hit the /v3/users/ list endpoint and failed with an opaque\ndecode error instead of a clear validation message. Add a PreRunE using\nvalidate.ValidateStringID (non-empty) and pass the trimmed value through.\n\nFinding: Low (user get UID not validated).",
"is_bot": false,
"headline": "fix(user): validate UID before calling the API",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8569ea7fbe607854f92cb1a8724b9f7582f6f39",
"body": "--all silently ignored --cursor (restarting from page 1) with no error or\nwarning. Add validate.ConflictingAllAndCursor and call it from issue list,\nissue changelog, user list, and queue list so the contradictory combination\nfails fast instead of quietly discarding --cursor.\n\nFinding: Low (--all silently ignores --cursor).",
"is_bot": false,
"headline": "fix(cmd): reject --all combined with --cursor",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cc1e4aa06aa1325a3c286f979419c8fa25ca994",
"body": "Two defense-in-depth fixes around the OAuth token file:\n- os.WriteFile does not re-apply 0600 to a pre-existing temp file, so a stale\n config.yaml.tmp from an interrupted write could carry the token into the\n final file with loose perms. Remove any stale temp and create it with\n O_CREATE|O_EXCL a\n[…]\nouched, so a config dir\n pre-created at 0755 (e.g. via YTR_CONFIG_DIR) kept loose perms. Chmod the\n leaf to 0700 after MkdirAll.\n\nFindings: Low (config.Save temp-file perms); Low (config dir perms).",
"is_bot": false,
"headline": "fix(config): harden Save permissions (token store)",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dac081bb5b3337e00a84ef8ddb7afd07647d3e8e",
"body": "DerefUser returned an empty Display string when one was present-but-empty\n(never reaching Login), and had no ID fallback. Embedded user refs such as\nComponent.Lead and Queue.Lead frequently carry only an ID, so they rendered\nblank and the ID was lost. Skip empty Display/Login and fall through to the\nID before the fallback.\n\nFinding: Low (DerefUser empty-display / missing ID fallback).",
"is_bot": false,
"headline": "fix(api): DerefUser falls back to non-empty login then ID",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1df83a31c7a12da2c8f2ead79425b67db892aea",
"body": "comment list called ListComments(ctx, key, nil) — a single page bounded by\nthe server default (~50) — and discarded the *Response, so issues with more\ncomments lost the rest silently and the truncation was undetectable. This\nbroke scripts/agents that count or aggregate comments.\n\nFollow the comment-ID cursor (exclusive, like changelog/issue list) until a\nshort page is returned, with guards for a missing or non-advancing cursor.\n\nFinding: Medium 5 (comment list silently truncates at 50).",
"is_bot": false,
"headline": "fix(comment): auto-paginate comment list instead of silent 50-cap",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef134530aacd46de8256e378ef3de63a9b036753",
"body": "…ination\n\nA null element in any API changelog array — a null Changelog entry, or a\nnull event/comment-ref/link/attachment/worklog/resolution inside one — was\ndereferenced without a guard, panicking instead of yielding a clean result.\n\n- Skip nil elements in every normalize*/flatten* loop.\n- Add last\n[…]\nAllChangelog; the old\n code dereferenced entries[len-1].ID and panicked on a null last element.\n\nTests cover the helper and both pagination paths.\n\nFinding: Low (no nil guards over changelog slices).",
"is_bot": false,
"headline": "fix(issue): guard nil elements in changelog normalize/flatten and pag…",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "87992cc28a28cc58ba8bbb414462d4a1d030a324",
"body": "Tracker field IDs are case-sensitive and usually camelCase (storyPoints,\nchecklistItems, dueDate). strings.ToLower(fieldFilter) turned storyPoints into\nstorypoints, which the API did not match, silently returning zero changes —\nwhile the output and help text showed/claimed otherwise. Single-word IDs\n[…]\nthrough verbatim and correct the help text (no longer claims\ncase-insensitive). Updated the test that codified the lowercasing bug.\n\nFinding: Medium 4 (changelog --field breaks camelCase via ToLower).",
"is_bot": false,
"headline": "fix(issue): changelog --field preserves field-ID case",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4e9b98d1900aabc7bfe9f3f627b669f30b41afe0",
"body": "FilterFields included every requested field verbatim, so a filtered view\n(--json field) emitted empty omitempty fields as \"\"/null/0 while the full\nJSON omitted them — diverging from the documented contract and forcing a\nmanual cleanup workaround in changelog.go. Parse the json tag options and skip\ne\n[…]\n emitting the table-only '-' placeholder,\nmatching 'field get'.\n\nFindings: Medium 3 (FilterFields ignores omitempty); Low (field list schema\nplaceholder); Info (FilterFields pointer/non-struct panic).",
"is_bot": false,
"headline": "fix(output): honor omitempty in FilterFields; drop changelog workaround",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5f901f078cf12689d9d929d63d8bed4ba7fceccb",
"body": "The PrintFieldHint trigger 'IsJSON() && !HasFieldSelection() && JQFilter==\"\"'\nwas unsatisfiable (IsJSON() is len(JSONFields)>0 || JQFilter!=\"\"), so the\nfield-discovery hint was dead code on all ~37 field-selecting commands, and\n'<cmd> --json=' fell through to table output with exit 0 (Info #4).\n\npfl\n[…]\n fields.\nBare '--json' (no value) still yields cobra's 'flag needs an argument', which\nis unavoidable without the breaking NoOptDefVal.\n\nFindings: Medium 2 (dead field hint); Info 4 (--json= ignored).",
"is_bot": false,
"headline": "fix(output): make --json field hint reachable; show it for --json=",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a2bacf1950a269c5bbbe10d7695e76107a2a4d2c",
"body": "InvalidFieldError embeds ExitError by value, so errors.As(err, **ExitError)\nreturned false and the error fell through to the generic handler. Every\n~30 commands with --json field validation emitted\n{\"code\":\"user_error\",\"message\":\"unknown field: ...\"} instead of the\nintended {\"code\":\"invalid_field\",\"\n[…]\nInvalidFieldError explicitly before the generic *ExitError branch\nin HandleError, and add Unwrap() so the error participates in the chain.\n\nFinding: Medium 1 (InvalidFieldError loses structured JSON).",
"is_bot": false,
"headline": "fix(output): preserve InvalidFieldError payload in HandleError",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "80a57c4226ecb1c7e488f4010f7ae77d4374355f",
"body": "readIssueKeys passed keys through verbatim, so duplicate keys (common\nwhen piping unsorted issue lists) were sent in the bulk request and\nprocessed redundantly. Dedupe both the positional-args and stdin paths\nwith an order-preserving seen-set.\n\nFinding: Low (issue keys not deduplicated).",
"is_bot": false,
"headline": "fix(bulk): dedupe issue keys from args and stdin",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fea583744a14b6cd5e0c1df37099763414125aa9",
"body": "pollUntilDone treated FAILED and COMPLETED identically, so a failed\nbulk move/update/transition returned exit code 0 — breaking the\n'success == 0' contract that scripts and LLM agents rely on (and giving\nno error signal at all in --quiet mode).\n\nAdd finalizeBulkResult, which renders the operation de\n[…]\nilDone stays pure (it succeeds on reaching any terminal state);\nthe FAILED-to-exit-code contract is enforced at the command layer.\n\nFindings: High (bulk FAILED exit 0); Low (empty operation ID guard).",
"is_bot": false,
"headline": "fix(bulk): exit non-zero when bulk operation FAILED",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "28ab51bce24198ce28e7eef7fd46efc33215bf07",
"body": "This reverts commit 1d8444e.\n\nSuperseded by 8820b16 on fix/code-audit, which fixes the same finding\n(Medium 5, silent 50-comment cap) without breaking the JSON contract:\ncomment list keeps returning a bare array and simply follows the cursor\nuntil the pages run out. That also keeps comment list cons\n[…]\nlist), which all\nreturn the full collection with no pagination flags.\n\nReverting the {items, pagination} envelope also drops the SKILL.md 4.0\nbump, which existed only to document that breaking change.",
"is_bot": false,
"headline": "Revert \"feat(comment): add pagination to comment list\"",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "172873e86eda30753bf5ba969a16338da7ff8aad",
"body": "This reverts commit ee14454.\n\nThe fix/code-audit branch already settled this question the other way:\nacd102e adds validate.ConflictingAllAndCursor and rejects the combination\noutright. That reading is the faithful one — --cursor is documented as\n\"Page number for pagination\", so \"give me page 3\" and \n[…]\nt. Resuming from the cursor instead silently redefined\nan existing flag across four commands as a side effect of a comment fix.\n\nREVIEW.md sanctioned either fix; the audit branch's is landing instead.",
"is_bot": false,
"headline": "Revert \"fix(cli): honor --cursor when --all is set\"",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T18:02:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ee14454cda0a9051ded7e0dfcab7b5171eadb449",
"body": "--all silently discarded --cursor and restarted from the first page in\nissue list, queue list, user list and issue changelog. A script that stored\nthe cursor from a previous response and then asked for the rest had to walk\nevery earlier page again.\n\n--all now means \"fetch all remaining pages\", resum\n[…]\n commands\nalready parse the cursor via validate.ParsePageCursor, which defaults to page\n1, so the no-cursor path is unchanged.\n\nAlso aligns the --all help text across all five paginated list commands.",
"is_bot": false,
"headline": "fix(cli): honor --cursor when --all is set",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T17:50:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1d8444e2aaba522402b85adb232df0105fb5e6ad",
"body": "comment list called ListComments with nil options, so the Tracker API\nreturned only its default first page of 50 comments. Anything beyond that\nwas dropped silently, and callers could not tell a 50-comment issue from\na 300-comment one.\n\nAdd --limit, --cursor and --all, mirroring issue changelog: the\n[…]\ntems[].body'.\n\nTable and --quiet output are unchanged.\n\nUpdates SKILL.md accordingly and bumps it to 4.0: unlike the additive 2.0\nand 3.0 bumps, this one changes an output format agents may depend on.",
"is_bot": false,
"headline": "feat(comment): add pagination to comment list",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-07-26T17:50:01Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8d17b47ed13faeb7e975b8b2c6016489383cb74e",
"body": "Codify the de-facto workflow so the repository is legible to new contributors:\n- CONTRIBUTING.md: Conventional Commits, type/description branch naming,\n one-logical-change-per-PR, self-contained PR descriptions\n- add a pull request template mirroring the same conventions",
"is_bot": false,
"headline": "docs: document branch, commit, and PR conventions",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-05-29T12:00:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27b6242ac17e7c3e97b9e2698ad5bccc5da35749",
"body": null,
"is_bot": false,
"headline": "chore(deps): update gojq, go-pretty, go-isatty, go-runewidth",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-08T19:52:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8db8af26b80a7f58732def6caa30a9930b3913a",
"body": null,
"is_bot": false,
"headline": "feat: add issue changelog command",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-08T19:52:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7879287a0d521d201187726f1dad1af68563555",
"body": null,
"is_bot": false,
"headline": "feat: add --query, --filter, --order-by, --order-asc to issue list",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-04T21:39:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cdc0c16196fa4d3a68b0fdb6401abd5066157efe",
"body": null,
"is_bot": false,
"headline": "refactor: clean up internal planning references from comments",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-03T22:53:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52f9193a525388c88120091d49fe659ca8cd92cd",
"body": null,
"is_bot": false,
"headline": "fix(brew): add shell completion generation to Homebrew formula",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-03T22:53:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb8fc6e65cfbe523289d93a2af1673236f379f0f",
"body": null,
"is_bot": false,
"headline": "fix(issue): support --assignee me shorthand",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-03T17:49:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cd801828f0a48cd16d2f77dfa513b539dbf5e9a",
"body": null,
"is_bot": false,
"headline": "docs: add README, CONTRIBUTING, and SKILL.md",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:43:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ca5b4950ae10fb002a10fa1809d3ef4c85678fa",
"body": null,
"is_bot": false,
"headline": "chore: add linter config, CI/CD workflows, GoReleaser, and license",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:38:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6e1405cc122be8242630a216a6973ee478dbd61",
"body": null,
"is_bot": false,
"headline": "feat(bulk): add bulk operations with async polling",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17f4b442dc718a544e84e35e56e7c27b8a9a3cca",
"body": null,
"is_bot": false,
"headline": "feat(checklist): add checklist CRUD commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91584a708bbf3e5bf919128dc9c428644e037cd0",
"body": null,
"is_bot": false,
"headline": "feat(worklog): add worklog CRUD commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d0619446fa5c660cb07d8701bddfbb6defac3a0",
"body": null,
"is_bot": false,
"headline": "feat(component): add component CRUD commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e85e40e01c5c1c417d5724e3c56c0826345d4fd",
"body": null,
"is_bot": false,
"headline": "feat(field): add field list and get commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4d5b54ae45222ee2bcd607bd29251b616453972",
"body": null,
"is_bot": false,
"headline": "feat(link): add issue link list, create, and delete commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f60d380f41e83157f9a494a0b223fbfd03f771c0",
"body": null,
"is_bot": false,
"headline": "feat(user): add user myself, get, and list commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db7d78466a6f82075495d3e14f0f3800781f5321",
"body": null,
"is_bot": false,
"headline": "feat: add reference data commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92288eb32e9ca0ae1c393152b150ba4f0b8f389a",
"body": null,
"is_bot": false,
"headline": "feat(completion): add shell completion for bash, zsh, and fish",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97dfa042da32b377a0ccb4b4885d9241834ce0d8",
"body": null,
"is_bot": false,
"headline": "feat(comment): add comment CRUD commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bf97945a85112a39e1ff258ba5b8dc25d557dd9",
"body": null,
"is_bot": false,
"headline": "feat(issue): add create, update, and transition commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5f836df247a001a7c296b4a2e23efcda4545766",
"body": null,
"is_bot": false,
"headline": "feat(queue): add queue list and view commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e67a818ad8a794c2f7719307fd780b0d709b3967",
"body": null,
"is_bot": false,
"headline": "feat(issue): add list and view commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d9a1a02d25ab8ec48708d0ff668b23d0bc953ac",
"body": null,
"is_bot": false,
"headline": "feat(auth): add login, logout, and status commands",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:36:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "676eedd72c11464aa6c8d96d34d72f31138ad995",
"body": "…point",
"is_bot": false,
"headline": "feat: add root command, version, validation, test helpers, and entry …",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05e62120cbb1f2c5e248751d0653c2fd9a272685",
"body": null,
"is_bot": false,
"headline": "feat(api): add API client with error mapping and helpers",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c8667d66bef992295eb9e7fb473b9d4c294cc18",
"body": null,
"is_bot": false,
"headline": "feat(config): add configuration with auth resolution",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40c76f792e5c3f7252b452f69af8503227046a2d",
"body": "…odes",
"is_bot": false,
"headline": "feat(output): add output infrastructure with table, JSON, and quiet m…",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea61c1f3a4ef51b84d3dd91a8041260237a7bb33",
"body": null,
"is_bot": false,
"headline": "feat(errors): add error types, exit codes, and formatting",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c872fc75c60f13dd7122c5ac89ad820ce5bff37a",
"body": null,
"is_bot": false,
"headline": "chore: initialize Go module",
"author_name": "Viacheslav Kliuev",
"author_login": "slavkluev",
"committed_at": "2026-04-02T19:34:53Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 5,
"commits_last_year": 49,
"latest_release_at": "2026-07-26T19:24:01Z",
"latest_release_tag": "v0.3.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 4,
"days_since_latest_release": 0,
"mean_days_between_releases": 28.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 71,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "github.com/slavkluev/ytr",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/slavkluev/ytr",
"is_deprecated": false,
"latest_version": "v0.3.0",
"repository_url": "https://github.com/slavkluev/ytr",
"versions_count": 5,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-26T19:18:36Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 0,
"stars": 10,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"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": 35365,
"source_files_sampled": 152,
"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": "github.com/itchyny/gojq",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.12.19"
},
{
"name": "github.com/jedib0t/go-pretty/v6",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v6.7.9"
},
{
"name": "github.com/mattn/go-isatty",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.21"
},
{
"name": "github.com/mattn/go-runewidth",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.23"
},
{
"name": "github.com/slavkluev/go-yandex-tracker",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.4.1"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.2"
},
{
"name": "golang.org/x/term",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.41.0"
},
{
"name": "gopkg.in/yaml.v3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v3.0.1"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "slavkluev",
"commits": 49,
"avatar_url": "https://avatars.githubusercontent.com/u/5838054?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml",
"release.yml"
],
"has_docs_dir": false,
"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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 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": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 8,
"reason": "2 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "9bbfba5c487fc7cda762486cbe13cc75f27432ab",
"ran_at": "2026-07-27T05:40:50Z",
"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-26T19:24:04Z",
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/slavkluev/ytr",
"host": "github.com",
"name": "ytr",
"owner": "slavkluev"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"security": 41,
"vitality": 74,
"community": 44,
"governance": 34,
"engineering": 68
},
"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": 64,
"inputs": {
"commits_last_year": 49,
"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": "49 commits in the last year",
"points": 15.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 49
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"releases_count": 5,
"latest_release_tag": "v0.3.0",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": 28.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 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 ~28.7 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 28.7
}
}
],
"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": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 44,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"forks": 0,
"stars": 10,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "10 stars",
"points": 15.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 10
}
}
],
"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": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"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": 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": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 34,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "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": 41,
"inputs": {
"followers": 3,
"owner_type": "User",
"is_verified": null,
"owner_login": "slavkluev",
"public_repos": 6,
"account_age_days": 4649
},
"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 slavkluev",
"points": 4.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 3,
"login": "slavkluev"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "6 public repos, account ~12 yr old",
"points": 18.2,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 6
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/slavkluev/ytr"
],
"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": "5 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 5
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 68,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 80,
"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": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 41,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no 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": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "2 existing vulnerabilities detected",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 66,
"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": "49 of 49 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 49,
"sampled": 49
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 72,
"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,
"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": "no agent-authored commits among the last 49",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 49
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 35365,
"source_files_sampled": 152,
"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/152 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 152,
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-27T05:40:55.331324Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/slavkluev/ytr.svg",
"full_name": "slavkluev/ytr",
"license_state": "standard",
"license_spdx": "MIT"
}