Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1076,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 470062,
"Shell": 1613
},
"pushed_at": "2026-07-14T14:14:36Z",
"created_at": "2026-02-28T14:34:38Z",
"owner_type": "User",
"updated_at": "2026-07-14T14:16:37Z",
"description": "wtp helps you manage parallel development across multiple git repositories by leveraging git worktree",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": null,
"name": "eddix",
"type": "User",
"login": "eddix",
"company": null,
"location": "Beijing",
"followers": 48,
"avatar_url": "https://avatars.githubusercontent.com/u/70715?v=4",
"created_at": "2009-04-05T15:46:09Z",
"is_verified": null,
"public_repos": 15,
"account_age_days": 6323
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2026-07-14T09:54:29Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-03-09T10:06:24Z"
}
],
"recent_commits": [
{
"oid": "7f98b98326588a237a3e51aa323c098600717c5c",
"body": "docs(skills): add YAML frontmatter for native Claude Code skill install",
"is_bot": false,
"headline": "Merge pull request #21 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-07-14T14:14:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5aecb0bfe21e5bb5111bcea539e29eaab75d6220",
"body": "…de Code\n\nClaude Code discovers skills in ~/.claude/skills/ via the frontmatter\nname/description; without it the SKILL.md files could only be read as\nplain project docs. The frontmatter is inert for Codex/Cursor readers.\nclaude-code.md now documents the symlink install and which skills are\nper-machine one-offs (setup, configure).\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(skills): add YAML frontmatter so skills install natively in Clau…",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T12:31:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "90a3149f4834e8dc5b3058c04af8b423f93cc46c",
"body": "The version test now checks CARGO_PKG_VERSION instead of a hardcoded\nstring so future bumps don't break it.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(release): bump version to 0.1.1",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T09:50:06Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "70f4822165f537f103f98ad2f38c0afa9a366eae",
"body": "feat: stacked worktrees (vertical development)",
"is_bot": false,
"headline": "Merge pull request #20 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-07-14T09:46:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f6ddfe1546c52728972c53bab1ea866ef12fd93",
"body": "- README/README_CN: import --parent example, wtp restack and\n wtp retarget command sections, and a \"Stacked Worktrees (vertical\n development)\" concept section with the status tree rendering and the\n one-directory-per-layer rationale\n- AGENTS.md: new commands in the Repository Operations list\n- sk\n[…]\n new wtp-stacked-worktree agent skill covering layer\n creation, the restack conflict-resolution loop, and the\n post-squash-merge retarget flow\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(stack): document stacked worktrees in READMEs, AGENTS.md, skills",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T09:18:24Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "94ce3f4fb7fe012e347a3af7145ff5ea788e201f",
"body": "Phase 3 of the stacked-worktree design. This is the core of vertical\ndevelopment: after a lower layer moves, one command re-bases every\nlayer above it.\n\n- Scope is directory-sensitive: inside a worktree it restacks that\n worktree's whole chain (WorktreeToml::chain_of); from the workspace\n root it \n[…]\nemplates.\n\nIntegration tests cover the cascade + idempotence, dirty preflight,\nconflict stop/resume, and the squash-merge fork-point transplant.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(stack): add wtp restack - stateless cascade rebase",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T09:14:16Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "893d2483ec3dd5ad1c62c794c00eb8dac13500e8",
"body": "Phase 2 of the stacked-worktree design.\n\n- wtp retarget changes a worktree's stack parent, metadata only:\n one-argument form targets the worktree you are standing in,\n two-argument form (worktree + new parent) works from anywhere.\n Rejects self-parenting, unknown refs, and edges that would create\n[…]\n the case where the branch is deleted too.\n- detect_current_worktree moves to cli/common.rs, shared by import\n --parent inference and retarget.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(stack): add wtp retarget and stack-aware eject hint",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T09:06:30Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "cb64339a2635652f7d0b14a816daa034c90f9c33",
"body": "Phase 1 of the stacked-worktree design (docs/design/stacked-worktree.md).\n\n- WorktreeEntry gains optional parent (stack edge: branch of another\n layer, or any git ref) and parent_head (fork point recorded at layer\n creation, later maintained by restack). Old wtp versions ignore the\n unknown keys;\n[…]\nper-layer divergence from the parent (compact: ↑/↓ markers;\n long: a Parent line replacing Base). Unresolvable parents show\n \"parent missing\".\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(stack): add stacked worktree layers via import --parent",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T09:01:47Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2e82b6f7a58f214ed3fb1095131d39a6ccaccec5",
"body": "Full plan for vertical development (stacked PR workflow): explicit\nparent/parent_head fields on WorktreeEntry, import --parent for\ncreating stack layers, tree view in status, retarget (metadata-only),\nand stateless idempotent restack via rebase --onto fork-point\ntracking. Flat top-level CLI, no forge integration ever.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(design): add stacked-worktree design document",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T08:51:31Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "cbffd0fb4ee74e3e87c6324933cf5bf0a1da0781",
"body": "Cover the previously undocumented functionality:\n\n- wtp-configure: config file precedence, host alias management\n (add/ls/rm/set-default), on_create hooks, security fence behavior,\n and which settings require editing the config file directly\n- wtp-setup: the two install methods and their different\n[…]\nfuzzy-finder fallback\nof import/eject (picker in a TTY, hard error otherwise) in\nwtp-repo-attach, wtp-safe-cleanup, and the README design goals.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs(skills): add wtp-configure and wtp-setup agent skills",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-07-14T07:58:34Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b10acde869414b9b79ee693522aa8f00f7c8edbe",
"body": "feat: multi-branch worktrees per workspace, rm alias, build info in version",
"is_bot": false,
"headline": "Merge pull request #19 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-06-12T07:50:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48adbf4b844218dfb5b70edea6a0052368dd008d",
"body": "wtp --version (and the help header) now reads e.g.:\n wtp 0.1.0 (built at 2026-06-12_15:23:51, commit 8639996)\n\nA build script injects WTP_BUILD_TIME / WTP_BUILD_COMMIT at compile\ntime. Both the GitHub Actions release workflow and the local\nINSTALL.md flows build inside a git checkout, so git is the\n[…]\n is honored for\nreproducible builds, and rerun-if-changed on HEAD plus the current\nbranch ref keeps the hash accurate across incremental builds.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): embed build time and commit hash in version output",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-06-12T07:36:54Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ee149f902bcee78f52c6c972ece0026b9ef18018",
"body": "README, docs/agent-integration, and the agent skills all document\n'wtp rm', but the CLI only accepted 'remove' — the alias makes the\ndocumented form actually work. Also switch the integration tests'\ncleanup calls to the canonical 'remove' (they previously invoked the\nnonexistent 'rm' and silently failed) and add a regression test for\nthe alias.\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(cli): add 'rm' alias for the remove subcommand",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-06-12T07:36:24Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8ed97c85eacf9f80c44a7757848da5cbc73f2c5d",
"body": "A workspace can now hold several worktrees of the same repository, one\nper branch, for workflows like applying the same change to multiple\nrelease branches (release-area-a-dev, release-area-b-dev, ...).\n\n- import/switch gain --with-branch-name: the extra worktree directory\n is named <repo_slug>@<br\n[…]\nears all records at once instead of per-slug\n (which broke when one slug matched several worktrees)\n- docs and agent skills updated accordingly\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(worktree): allow multiple branches of one repo per workspace",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-06-12T07:35:48Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "8639996acd82d89e3217a2e85a9668f0b049dae1",
"body": "feat(ls): filter workspaces by repo (--grep) and stable repo-name colors",
"is_bot": false,
"headline": "Merge pull request #18 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-06-12T06:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3392419e26569c62fcf8dedd5e0fa9adda5ae6d1",
"body": "Two additions to `wtp ls`, motivated by having many workspaces that\nshare a small set of repos:\n\n1. `wtp ls --grep <PATTERN>` keeps only workspaces containing a repo\n whose reference (host:path, or absolute path) matches PATTERN as a\n case-insensitive substring. Works with the default, --short, \n[…]\n6,\ncli 8) and integration tests for filtering, no-match, and empty-pattern\nbehavior. Shell completions and README (EN/CN) updated.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(ls): filter workspaces by repo (--grep) and color repo names",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-06-06T13:15:16Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "e341019eedb27a93930c133d149dab4b06a68ae5",
"body": "Empty app.log / app.call.log files appear in the working tree from\ntooling run inside the repo (e.g. bytedcli); they should not be tracked.\n\nCo-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: ignore runtime log/ directory",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-05-25T13:51:36Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "b353415667b1491eeec9ab0858b4cdc485dca62e",
"body": "Replace stale references to the pre-move filenames (FIX_DESIGN.md,\nGUI_DESIGN.md) with the new titles and relative links under\ndocs/{design,reviews}/.\n\nCo-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: fix dangling cross-references after docs reorganization",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-05-25T13:50:08Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7e2061dfc9c1bf2e1ab874e45d75c678bdb71e75",
"body": "Drop the placeholder README.md template in favor of a workspace-level\nagent context file so coding agents (Claude, Codex) treat the workspace\ndirectory as the root of work instead of drifting into a single\nsub-worktree's git repo.\n\nCo-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update on_create hook example to seed CLAUDE.md and AGENTS.md",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-05-23T04:54:56Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "62025866f155f3914a86d25b0a989c790f99b88d",
"body": "Eight markdown files were piling up at the repo root. Move them under\n`docs/` next to the existing `agent-integration/` to keep the root\nfocused on user-/agent-facing entry points (README, INSTALL, AGENTS).\n\nLayout:\n- `docs/design/` — forward-looking: what to build, why\n- `docs/reviews/` — backward-\n[…]\n\n\nInternal cross-references updated; old filenames mentioned inside the\nmoved files were either turned into relative links or replaced with\n\"the design doc\" prose. `docs/README.md` indexes the layout.",
"is_bot": false,
"headline": "docs: move design and review docs into docs/{design,reviews}/",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-05-10T04:55:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b5405f5f56998fffc52acbe1177a75cbab7fbc67",
"body": "Cargo workspace restructure + wtp-gui implementation + path sanitization",
"is_bot": false,
"headline": "Merge pull request #17 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-04-27T14:49:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83f9d88d38e4f937edad671962ecc2222bcd1935",
"body": "Bring wtp-gui from scaffold to functional GPUI desktop app.\n\nDesign system (4 layers):\n- `theme.rs`: tokens — dark neutral blue palette (surface_0 0x0f1218,\n accent 0x4d9eff, success 0x53c28b, danger 0xe07d86), spacing scale,\n typography scale, radius/border tokens, layout dimensions\n- `layout.rs`\n[…]\n state shape, async patterns, ADRs\n- `GUI_REVIEW.md`: review notes from the iterative implementation\n\nVerified: cargo test passes for wtp-core (13), wtp-cli (18), and the\ngpui-layout-lint suite (10).",
"is_bot": false,
"headline": "feat(gui): implement wtp-gui with design system and Lucide icons",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-04-27T14:43:48Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8b344d33a0be11f330e709a77791677b057cf17a",
"body": "Workspace names like `hotfix/update_task_issue_1234` previously created a\nnested directory under workspace_root, which `wtp ls` (which only scans\ndirect children) could not see. Add `wtp_core::sanitize_workspace_name`\nthat rewrites `/`, `\\`, `:`, `*`, `?`, `\"`, `<`, `>`, `|`, and ASCII\ncontrol chara\n[…]\nrds.\n\nTests:\n- 8 unit tests covering separators, Windows-reserved chars, control\n chars, idempotence, and pathological inputs\n- 3 integration tests for the slash, double-slash, and pathological cases",
"is_bot": false,
"headline": "fix: sanitize workspace names containing path separators",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-04-27T14:43:11Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "33602002597b50eb29ed6eded63dfdbb889860aa",
"body": "- DESIGN.md: workspace restructuring design document\n- AUDIT_REPORT.md: unified 3-dimension audit (security + perf + quality)\n- AUDIT_CODE_QUALITY.md: detailed code quality findings\n- FIX_DESIGN.md: fix implementation design for all audit findings\n- REVIEW.md: implementation review report\n- FIX_REVIEW.md: fix verification review report\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add workspace restructuring design and audit reports",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-29T05:02:46Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5212d067fb11e7b74d2aa9cc44d6a631917fc46d",
"body": "…gui)\n\n- Extract core business logic into wtp-core library crate\n- Move CLI to wtp-cli (binary name remains \"wtp\")\n- Create wtp-gui scaffold (GPUI + tray-icon, not yet functional)\n- GitStatus formatting moved to CLI extension trait (GitStatusFormat)\n- scan_git_repos moved from CLI to wtp-core for sh\n[…]\n helper,\n IndexMap for hosts, improved error handling throughout\n- Update docs, CI workflow, and install script for new structure\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: restructure into Cargo workspace (wtp-core + wtp-cli + wtp-…",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-29T05:00:46Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "1e8241e2ca51639fb5b97ce77ef21568a3f5ef51",
"body": "feat: show ahead/behind relative to base branch in long mode",
"is_bot": false,
"headline": "Merge pull request #16 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-21T10:03:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcf8d6a9da3f4b3565b43fcfe198c112ae937f5e",
"body": "`wtp ls --long` and `wtp status --long` now display how each worktree\nbranch diverges from its base branch (e.g. main), in addition to the\nexisting remote tracking info.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: show ahead/behind relative to base branch in long mode",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-21T09:41:47Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8f9d2b9342e92a47c8a5fb1bf8079a38d34b8839",
"body": "docs: add Star History chart to both READMEs",
"is_bot": false,
"headline": "Merge pull request #15 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-20T10:04:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2291c62be533de47f0dff118931a6a9b9986eca1",
"body": "Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add Star History chart to both READMEs",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-20T10:03:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4f329f8f90d0d07d9fa634497354c32dd4cb8c96",
"body": "docs: add agent skills and integration guides",
"is_bot": false,
"headline": "Merge pull request #14 from liaoruoxue/feat/wtp-agent-skills",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-19T03:04:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3be12ff6cd96fb5341c73efdd77f65efb57ef95e",
"body": "Add three agent-facing skill files (wtp-workspace-operator, wtp-repo-attach,\nwtp-safe-cleanup) under skills/, plus integration notes for Claude Code, Codex,\nand Cursor under docs/agent-integration/.\n\nAlso document wtp ls --short in README and fix a misleading reference to a\nnon-existent --workspace flag in the repo-attach skill.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add agent skills and integration guides for wtp",
"author_name": "riso",
"author_login": "liaoruoxue",
"committed_at": "2026-03-17T02:22:12Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5e86986367310608d899be620375a854f3c6df68",
"body": "improve readme",
"is_bot": false,
"headline": "Merge pull request #13 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-15T15:30:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d347322ef49d692abef60e77b8f8fef3b9bdd988",
"body": "Rewrite the project introduction to articulate why monorepo isn't always\nthe answer (AI context pollution, legacy migration, organizational\nboundaries) and position wtp as a \"dynamic monorepo\" solution that\nassembles task-scoped workspaces from independent repos on the fly.\nAlso add README_CN.md as the full Chinese translation and remove the\ncompleted Roadmap section.\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: reposition wtp as dynamic monorepo, add Chinese README",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-15T15:29:39Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7696af21ef0cffb62bf7d8ebff454817b287530c",
"body": "add INSTALL.md",
"is_bot": false,
"headline": "Merge pull request #12 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-09T11:26:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d7fbf666c55514d0eaf30ceda9c31b0379847af",
"body": null,
"is_bot": false,
"headline": "add INSTALL.md",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-09T11:26:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f13bc31bc18d9ba80db33232632945f8e7acf639",
"body": "fix: address code review findings across codebase",
"is_bot": false,
"headline": "Merge pull request #11 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-09T03:05:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "495fe50d03ca2f84f3a32988328b65b334b6a716",
"body": "Security and safety fixes:\n- Block parent-dir (..) traversal in fence boundary checks with lexical normalization\n- Preserve approved out-of-boundary fence overrides while keeping canonical re-checks for in-boundary paths\n- Add post-I/O canonical verification and symlink protection in fence\n- Prevent\n[…]\nmpletions shell parsing to clap ValueEnum\n- Use CARGO_BIN_EXE_wtp for portable test binary discovery\n- Remove TEST_MUTEX from integration tests\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: address code review findings across codebase",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-09T02:59:18Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b4c0187cd0adf750947a82a7fa4f929fcf25aff1",
"body": "shell completions",
"is_bot": false,
"headline": "Merge pull request #10 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-08T06:09:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d5d3284102c27d75d573cbd503bc36c72b81170",
"body": "Deduplicate detect_current_workspace that was copied across import.rs,\neject.rs, and status.rs. Move it to WorkspaceManager as a single method\nwith a new NotInWorkspace error variant.\n\nAlso remove --workspace flag from status command — all workspace-scoped\ncommands now consistently detect the workspace from cwd.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor: extract detect_current_workspace into WorkspaceManager",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-08T06:01:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9f4af5f76d7e534972a065588d3ee4997cf6c44d",
"body": "Build and publish GitHub releases on version tags (v*) for:\n- macOS (x86_64 + Apple Silicon)\n- Linux (x86_64 + aarch64)\n- Windows (x86_64, without fuzzy/skim support)\n\nIncludes auto-generated release notes from commit log and SHA-256\nchecksums. Also fix repository URL and authors in Cargo.toml.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "ci: add release workflow for multi-platform builds",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-07T14:26:21Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "63655cd6c6b163fbea1b29532189b5357a7ec7fb",
"body": "Add `wtp completions <shell>` command generating completion scripts for\nzsh, bash, and fish with dynamic workspace/host completion. Remove the\nbasic compdef from shell-init to avoid conflicts.\n\nFix README: remove nonexistent flags (--workspace on import, --dirty on\nstatus), correct short options (-H not -h for --host), add missing eject\ndocs, and update roadmap.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add shell completions command and fix README inaccuracies",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-07T14:21:52Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "3a952d54021273547f25ec941686a7bdabe04f16",
"body": "real workspace remove",
"is_bot": false,
"headline": "Merge pull request #8 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-06T08:32:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95f0145819799dae895cad4fae829a797e8ca27e",
"body": "Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: fix repo URL and update README for new rm behavior",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-06T08:30:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "ae3ddfda330220065aaa75c2eed7498d830791a4",
"body": "feat: build custom help renderer with unified styling and add eject command",
"is_bot": false,
"headline": "Merge pull request #7 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-06T08:24:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f3e2a30e73fc5d664f0cbe669e4a7fa70006972",
"body": "Rewrite `wtp rm` to eject all worktrees before removing the workspace:\n- Eject each worktree via `git worktree remove` with progress output\n- Pre-check all worktrees for dirty state before starting (unless --force)\n- Check for leftover files after eject; require --force to delete extras\n- Remove the\n[…]\nr filter\n- import shows (bare) label when importing from a bare repository\n\nClean up: remove unused has_workspace() and WorktreeManager import.\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: rewrite workspace remove and add bare repo support",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-06T08:22:07Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "dfe8209d3517b4b5694ae5d6b9db4e8ab3e0fd06",
"body": "Consolidate 4 scattered help checks in run() into a single\ntry_show_help() entry point with clear separation of concerns:\n- parse_help_intent(): extract help request and subcommand path from argv\n- walk_command_tree(): resolve target command from path (now takes &[&str])\n- show_help(): route to main\n[…]\nhost --help\"\n- Subcommand Usage line shows full path (e.g., \"wtp host add\" not \"add\")\n- host add/rm/set-default parameters now have help descriptions\n- Added eject integration tests and help assertion",
"is_bot": false,
"headline": "refactor: unify help dispatch logic and fix subcommand help issues",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-06T03:35:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d824082fcd737cde8b92e3608b7eae1440a0b3b8",
"body": "…ommand\n\nReplace clap's built-in help with a fully custom rendering system that\nprovides consistent coloring across all command depths. The derive macro\nnow auto-generates the Options section from clap's argument introspection\nAPI instead of hardcoding flags. A new print_styled_help() renderer handl\n[…]\nlders\n- Add walk_command_tree() for --help interception at any argv position\n- Add eject subcommand for removing repo worktrees from workspaces\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: build custom help renderer with unified styling and add eject c…",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-05T04:01:06Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b4207f66c7360805897d0ec355add03c8305cf4b",
"body": "fuzzy finder",
"is_bot": false,
"headline": "Merge pull request #6 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-04T15:58:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d7b63ed64610ba30e2789a2d1e4344a104266e7",
"body": "… code\n\n- ls: default shows workspace name + repo count; --long shows per-repo\n branch and dirty/clean status with colored output\n- status: remove --dirty flag (always query git); compact format shows\n colored staged/unstaged/untracked counts; --long format adds HEAD\n commit info, relative time, \n[…]\n workspace selection via skim\n- Add config subcommand, install.sh, and dependency updates\n- Remove all dead code to eliminate compiler warnings\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: enrich ls/status output, add fuzzy selection, and clean up dead…",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-04T15:56:33Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "bceee8d275eeaeb81734710448a19dc2ef69dd64",
"body": "feat: add custom help with grouped subcommands using derive macro",
"is_bot": false,
"headline": "Merge pull request #5 from eddix/feature_develop",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-02T08:00:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fc79af937d6be8ba1be80e2fa338a3bec24c936",
"body": "Add wtp-derive proc-macro crate with GroupedSubcommand derive:\n- #[cmd_group(\"...\")] attribute for grouping subcommands\n- Auto-generated print_help() with aligned columns\n- Group subcommands by category in help output\n\nRemove hardcoded help_template from host command.\nAdd --help support for all subcommands.\n\nAlso includes config save fix to preserve the original config file path.",
"is_bot": false,
"headline": "feat: add custom help with grouped subcommands using derive macro",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-02T07:57:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "234f2d11e5c6aa4ba1e7dcbe88e36f321af195f8",
"body": "remove unused default_workspace",
"is_bot": false,
"headline": "Merge pull request #4 from eddix/hotfix",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-01T12:34:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44c10cf4a8d4dd731d47617bb6aad05127559f3e",
"body": "The field was defined but never used by any command.",
"is_bot": false,
"headline": "chore: remove unused default_workspace config option",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-01T12:33:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3a771d54565b5bf2d5f58c2dd1a71423a8f0ecf",
"body": "docs: consolidate documentation",
"is_bot": false,
"headline": "Merge pull request #3 from eddix/hotfix",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-01T12:13:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2afe26650535b37bbe5a5cfd0e3af28cb2b94ec7",
"body": "- Rewrite AGENTS.md with accurate code details and safety rules\n- Delete ARCHITECTURE.md and HOOKS.md (content merged to AGENTS.md)\n- Clean up README.md for end users",
"is_bot": false,
"headline": "docs: consolidate documentation",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-01T12:11:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d1e494b37f7fb630301c5833aea0938d69602a1",
"body": "test: isolate integration tests from user's HOME directory",
"is_bot": false,
"headline": "Merge pull request #2 from eddix/fix_test_in_tmpdir",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-01T02:13:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6209ed60a792c7658a782f8228996e949d313bdb",
"body": "Use temporary directories as HOME environment variable during tests\nto prevent polluting the user's actual ~/.wtp configuration.\n\nChanges:\n- Set HOME env var to temp directory for each test\n- Add mutex to prevent parallel test execution conflicts\n- Add tests for on_create hook functionality\n- Remove XDG_CONFIG_HOME to ensure config isolation\n\nThis allows running tests safely without affecting the developer's\npersonal wtp workspaces and configuration.",
"is_bot": false,
"headline": "test: isolate integration tests from user's HOME directory",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-03-01T02:11:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01cca1d96ecfd6babbb1cb1926a64e4dc83c2ce9",
"body": "fix(security): harden fence boundary checks against prefix bypass",
"is_bot": false,
"headline": "Merge pull request #1 from liaoruoxue/fix-fence-boundary-check",
"author_name": "eddix",
"author_login": "eddix",
"committed_at": "2026-03-01T01:40:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c3caee08810d18dd0c2509a42e44151ed4a4376",
"body": null,
"is_bot": false,
"headline": "fix(security): prevent workspace fence prefix bypass",
"author_name": "riso",
"author_login": "liaoruoxue",
"committed_at": "2026-02-28T15:48:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3983b5f6dfc64777202ed06ccada861912cdc9c4",
"body": "Add on_create hook that runs after workspace creation to enable custom\ninitialization scripts. This allows users to automatically setup workspace\nconfigurations, copy templates, or install tools when creating new workspaces.\n\nFeatures:\n- New [hooks] config section with on_create option\n- Hook script\n[…]\niguration to .wtp.toml.example\n- Added Hooks section to README.md\n- Updated HOOKS.md with lifecycle hooks documentation\n\nExample usage in ~/.wtp.toml:\n [hooks]\n on_create = ~/.wtp/hooks/on-create.sh",
"is_bot": false,
"headline": "feat: add workspace creation hook support",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-02-28T15:04:54Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "56f8d803d55671f05996560a73a3bc3c25784ead",
"body": null,
"is_bot": false,
"headline": "first version",
"author_name": "eddix",
"author_login": null,
"committed_at": "2026-02-28T15:04:54Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 61,
"latest_release_at": "2026-07-14T09:54:29Z",
"latest_release_tag": "v0.1.1",
"releases_from_tags": false,
"days_since_last_push": 14,
"active_weeks_last_year": 11,
"days_since_latest_release": 14,
"mean_days_between_releases": 127
},
"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": []
},
"popularity": {
"forks": 2,
"stars": 11,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-02-28",
"count": 1
},
{
"date": "2026-03-06",
"count": 1
}
],
"complete": true,
"collected": 2,
"total_forks": 2
},
"star_history": null,
"open_issues_and_prs": 1
},
"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": [
"Cargo.toml",
"wtp-cli/Cargo.toml",
"wtp-core/Cargo.toml",
"wtp-derive/Cargo.toml",
"wtp-gui/Cargo.toml"
],
"largest_source_bytes": 44420,
"source_files_sampled": 51,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 10163
},
"dependencies": {
"manifests": [
"Cargo.toml",
"wtp-cli/Cargo.toml",
"wtp-core/Cargo.toml",
"wtp-derive/Cargo.toml",
"wtp-gui/Cargo.toml"
],
"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": [
"crates"
],
"dependencies": [
{
"name": "wtp-core",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "clap",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "4.5"
},
{
"name": "wtp-derive",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "anyhow",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "tokio",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.40"
},
{
"name": "ratatui",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.30"
},
{
"name": "crossterm",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.29"
},
{
"name": "skim",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.6"
},
{
"name": "colored",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.1"
},
{
"name": "anstyle",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "anstream",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6"
},
{
"name": "shellexpand",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.1"
},
{
"name": "tracing",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "tracing-subscriber",
"manifest": "wtp-cli/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3"
},
{
"name": "serde",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "toml",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8"
},
{
"name": "thiserror",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0"
},
{
"name": "tokio",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.40"
},
{
"name": "dirs",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "5.0"
},
{
"name": "chrono",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "uuid",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.11"
},
{
"name": "shellexpand",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.1"
},
{
"name": "walkdir",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.5"
},
{
"name": "indexmap",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.6"
},
{
"name": "tempfile",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.13"
},
{
"name": "tracing",
"manifest": "wtp-core/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "proc-macro2",
"manifest": "wtp-derive/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "quote",
"manifest": "wtp-derive/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "syn",
"manifest": "wtp-derive/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0"
},
{
"name": "wtp-core",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "gpui",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "gpui_platform",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "tray-icon",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.21"
},
{
"name": "image",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.25"
},
{
"name": "tokio",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.40"
},
{
"name": "anyhow",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "smol",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0"
},
{
"name": "indexmap",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2"
},
{
"name": "rust-embed",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "8.4"
},
{
"name": "unicode-segmentation",
"manifest": "wtp-gui/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.12"
}
],
"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": 1,
"merged_prs": 20,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "eddix",
"commits": 20,
"avatar_url": "https://avatars.githubusercontent.com/u/70715?v=4"
},
{
"type": "User",
"login": "liaoruoxue",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/6895824?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.909
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"release.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"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 8 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": 1,
"reason": "Found 1/9 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "20 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 0,
"reason": "Project has not signed or included provenance with any releases.",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "7f98b98326588a237a3e51aa323c098600717c5c",
"ran_at": "2026-07-28T21:42:10Z",
"aggregate_score": 3.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [
{
"number": 9,
"created_at": "2026-03-06T15:55:39Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-14T14:14:36Z",
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/eddix/wtp",
"host": "github.com",
"name": "wtp",
"owner": "eddix"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 36,
"vitality": 68,
"community": 32,
"governance": 46,
"engineering": 59
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 68,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"commits_last_year": 61,
"human_commit_share": 1,
"days_since_last_push": 14,
"active_weeks_last_year": 11
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 14 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 14
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "11/52 weeks with commits",
"points": 7.6,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 11
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "61 commits in the last year",
"points": 16.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 61
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "20 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"releases_count": 2,
"latest_release_tag": "v0.1.1",
"releases_from_tags": false,
"days_since_latest_release": 14,
"mean_days_between_releases": 127
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 14 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 14
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~127 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 127
}
}
],
"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": 32,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 16,
"inputs": {
"forks": 2,
"stars": 11,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "11 stars",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 11
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "2 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 2
}
}
],
"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": "at_risk",
"name": "Sustainability & Governance",
"value": 46,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 14,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.909
},
"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 91% of commits",
"points": 2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 91
}
}
],
"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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 75,
"inputs": {
"merged_prs": 20,
"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": "20/20 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 20,
"decided": 20
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/9 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 54,
"inputs": {
"followers": 48,
"owner_type": "User",
"is_verified": null,
"owner_login": "eddix",
"public_repos": 15,
"account_age_days": 6323
},
"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": "48 followers of eddix",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 48,
"login": "eddix"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "15 public repos, account ~17 yr old",
"points": 20.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 15
}
},
{
"code": "account_age_years",
"params": {
"years": 17
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 59,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 8 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": true,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 36,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 36,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 3.6
},
"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 8 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 1/9 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "20 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"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": "good",
"name": "AI Readiness",
"value": 74,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "excellent",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.967,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 10163
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "59 of 61 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 59,
"sampled": 61
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.475,
"toolchain_manifests": [
"Cargo.toml",
"wtp-cli/Cargo.toml",
"wtp-core/Cargo.toml",
"wtp-derive/Cargo.toml",
"wtp-gui/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, wtp-cli/Cargo.toml, wtp-core/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, wtp-cli/Cargo.toml, wtp-core/Cargo.toml"
}
}
],
"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": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "29 of the last 61 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 29,
"sampled": 61
}
}
],
"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": "Rust",
"largest_source_bytes": 44420,
"source_files_sampled": 51,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/51 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 51,
"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",
"Could not fetch crates package 'wtp' from its registry",
"Could not fetch crates package 'wtp-gui' from its registry",
"Could not fetch crates package 'wtp-core' from its registry",
"Could not fetch crates package 'wtp-derive' from its registry",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-28T21:42:25.016889Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/e/eddix/wtp.svg",
"full_name": "eddix/wtp",
"license_state": "standard",
"license_spdx": "MIT"
}