JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 582,
"has_wiki": true,
"homepage": null,
"languages": {
"C#": 315967,
"Smalltalk": 747,
"PowerShell": 4450
},
"pushed_at": "2026-07-27T00:19:57Z",
"created_at": "2022-10-24T13:52:32Z",
"owner_type": "Organization",
"updated_at": "2026-07-27T00:20:00Z",
"description": "Generates a synchronized version of an async method",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "C#",
"significant_languages": [
"C#"
]
},
"owner": {
"blog": "www.zomp.com",
"name": "Zomp",
"type": "Organization",
"login": "zompinc",
"company": null,
"location": "Toronto, Canada",
"followers": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/63680941?v=4",
"created_at": "2020-04-14T22:16:56Z",
"is_verified": null,
"public_repos": 5,
"account_age_days": 2294
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v2.0.20",
"kind": "patch",
"published_at": "2026-07-26T20:24:17Z"
}
],
"recent_commits": [
{
"oid": "58d59ad4821721f27da529988ab2a6daf928cba7",
"body": "…er (#135)\n\n* Replace yarn with pnpm\n\nInstalling yarn took an npm global install, plus a Chocolatey package and a\nPATH entry on Windows. pnpm/action-setup reads the version to use from the\npackageManager field of package.json, so the version is pinned in one place\nand CI no longer hand rolls the ins\n[…]\nrmatting from the pre-commit hook\n\nCI already runs this hook as a step, so the check applies to pull requests as\nwell as commits without a second definition of what to run.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Replace yarn with pnpm and format YAML, JSON and Markdown with Pretti…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-27T00:19:55Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "4057e081d9b2c220f59e733b8b7fc4d9d9d35a48",
"body": "* Add failing tests for shortening long generated file names\n\nReproduces #32: the generated file name is the namespace and containing type\nchain plus the method name, with no limit. A deep namespace pushes it past what\nis safe once the intermediate output directories are counted, and nothing\nshorten\n[…]\nethod name whole, so the file name stayed over the limit in\nexactly the case the limit exists for. Shorten the method as well, keeping the\nhash so the name is still unique.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Shorten generated file names which are too long (#134)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T23:47:54Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b81bd9f116256ab53a63b49fa0fec0689c4272ff",
"body": "* Add failing tests for waiting on several tasks at once\n\nTask.WhenAll and Task.WhenAny return a task, which the rewriter treats as\nremovable, so today the call and everything guarded by it is dropped without\na word. In the report behind #101 that turned a loop over two racing\nenumerators into `whil\n[…]\nto be mistranslated in silence into a build error.\nThat is the point: the previous output compiled, or nearly did, while doing\nsomething the author never wrote.\n\nFixes #101\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Report a diagnostic for Task.WhenAll and Task.WhenAny (#133)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T23:47:51Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b6d267728a9e78d333abd5edc73291cec4615f78",
"body": "…#130)\n\n* Add failing tests for generic methods returning their type parameter\n\nReproduces #106: calling a generic method whose type argument is inferred as\nTask<T> drops the return statement, so the generated method fails with CS0161.\nCovers both the inferred and the explicitly written type argumen\n[…]\n same treatment: VisitGenericName\nalready unwraps Bar<Task<bool>> to Bar<bool>, but VisitTypeArgumentList then\nremoved the argument outright and produced Bar<>.\n\nFixes #106\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Keep calls to generic methods which return their own type parameter (…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T22:54:04Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "41c3c8d7034f90afef17c86236512881bf9738c6",
"body": "Patch coverage targeted the project's own coverage, so changed lines had to be\nabout 85% covered. Bug fixes in the rewriter are routinely three to five\nmeasurable lines, and the ones that are not reachable by any test (a defensive\nnull conditional, a type test the Roslyn grammar already guarantees) \n[…]\nthe patch being uncovered.\n\nReport patch coverage on the pull request without failing it. The project\nstatus, which is what actually detects coverage eroding, is unchanged.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Make the codecov patch status informational (#131)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T22:47:38Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "20c5a1e0495d6315ea624e8d7cc010fcd66bdfd1",
"body": "…(#129)\n\n* Add failing tests for generic types in patterns and typeof\n\nReproduces #124: a generic type written against a using directive keeps its\nsource spelling in the generated file, which has no using directives, so the\ngenerated code fails with CS0246. Affects both declaration patterns and type\n[…]\nified, which is what every sibling visitor\n(cast, declaration expression, tuple type, nullable type) already does to mean\n\"the child visitors handled this one\".\n\nFixes #124\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Qualify generic types in declaration patterns and typeof expressions …",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T22:45:50Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7e37e3733c20f359e9c8aee7ac2b615d2983114b",
"body": "* Add failing tests for awaiting a null-coalescing expression\n\nReproduces #112: awaiting `bar?.BarBarAsync() ?? Task.CompletedTask` drops the\nstatement entirely, leaving an empty method body. The committed snapshots record\nthe expected output for both operand orders, since either side of the coalesc\n[…]\nsync()` is a member binding\nexpression, so it kept calling the asynchronous method. Rename those too, via\nReplaceAsync so the WaitAsync exclusion still applies.\n\nFixes #112\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Fix null-coalescing statements being dropped entirely (#128)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T22:45:46Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "147b868d67f01637c477b3e0153bb4d7550a1ca8",
"body": "…rences (#127)\n\n* Add failing test for generation with the attribute in multiple references\n\nReproduces the silent failure reported in #76: a chain of projects using\nInternalsVisibleTo together with SYNC_METHOD_GENERATOR_DISABLE_ATTRIBUTE_GENERATION\nleaves the consuming compilation with the marker a\n[…]\nmore than one reference defined it, and a\nmethod marked with it still had a synchronized version generated. Assert that\nthe skip attribute is honored in that configuration.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Fix generation stopping when the marker attribute is in multiple refe…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T22:44:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "488c35efcb82562c5551dd44dc7b5931105e4613",
"body": "When a release is cut (workflow_dispatch on master, same trigger as the\nNuGet push), tag the commit and create a GitHub Release whose notes are\nauto-generated from the merged PRs since the previous tag. The release\nversion is derived from the produced .nupkg so it stays in lockstep with\nthe publishe\n[…]\nthe generated notes by PR label\n(Features / Bug Fixes / Documentation / Dependencies / Other). Apply\nlabels to PRs to populate the sections; unlabeled PRs fall under Other.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Create GitHub Releases with auto-generated changelog on publish (#126)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T20:12:15Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "99d23ed6ed21a2bc73ccf87cc000d929c1389936",
"body": "When an #if/#else/#endif block splits a statement (directives around\nthe if header, shared block after #endif), the directives beyond the\nstatement's leading trivia live inside the statement's span. Dropping\nsuch a statement via the empty-if pruning heuristic emitted its leading\n#if/#else while dest\n[…]\nalanced and the user's code intact.\n\nUnskip BrokenIfStatement and add regression tests for the using\nvariant and for a declaration split by directives.\n\nFixes #45\nFixes #85\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Keep statements that contain interior preprocessor directives (#125)",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T19:41:42Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "2d660cc5a7ddad3847cc78d6ec8811899ec7c436",
"body": "…iter\n\nStatement processing:\n\n- Assert that original and rewritten statement lists have equal counts\n instead of silently truncating the walk on mismatch.\n- Mark the brace-less block produced by VisitReturnStatement with a\n SyntaxAnnotation instead of detecting it via OpenBraceToken.IsMissing,\n m\n[…]\nt.\n- Extract KeepExpressionBeforeDot, used verbatim in two places.\n- Rename methodName to targetMethod and fieldSymbol to memberSymbol to\n reflect what they actually hold.\n\nGenerated with Claude Code",
"is_bot": false,
"headline": "Clean up statement processing and remove dead code in AsyncToSyncRewr…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T18:36:04Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "f1c3e60d32b5b3e7c3e4fe49aed50fafb7ab9954",
"body": "Replace the index-synchronized PreProcess/PostProcess/ExtraNodeInfo\npipeline (StatementProcessor) with a single Process method that walks\nthe original and rewritten statement lists side by side. Semantic\nchecks (CanDropStatement, drop-return detection) run against the\noriginal statements while outpu\n[…]\n returning\nnull from the visitor removed a statement from the rewritten list,\nwhich the parallel walk cannot tolerate. Process now unwraps the\nbrace-less block emitted by VisitReturnStatement instead.",
"is_bot": false,
"headline": "Process original and rewritten statements in parallel",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-07-26T17:15:14Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1b26ff7d87c503a9d54daeb79d6dfcdb2ab97b58",
"body": "… respective synchronous ones (#123)",
"is_bot": false,
"headline": "Fixed regression with async LINQ methods not being converted to their…",
"author_name": "Michele Bastione",
"author_login": "michelebastione",
"committed_at": "2026-06-26T14:20:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "784a193ffa5041b767cc7124831dbc127975feea",
"body": "In the past (#107 and #110) I experienced issues in the unit test project because if missing references in the C# compilation. It was really hard to pinpoint which references were missing.\n\nUsing the Basic.Reference.Assemblies.Net100 NuGet package and adding all the metadata references ensures that all references are available and that the compilation will work as expected.",
"is_bot": false,
"headline": "Simplify the metadata references (#120)",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2026-06-25T11:42:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "229ea7b9d45c0bde241c06a88f42d18cbfff99c2",
"body": "…(#122)\n\n* Adding JetBrains Rider's .idea folder to gitignore\n\n* Fixed Task.WaitAsync method causing the entire chain call to be dropped instead of just renaming the original method.\n\n* Fixed Semaphore.WaitAsync method being mistaken for Task.WaitAsync and subsequently being dropped during rewriting\n[…]\nte both jobs to run only on non-fork events (push, workflow_dispatch,\nand same-repo PRs), leaving build+test+pack to run for everyone.\n\n\n---------\n\nCo-authored-by: Victor Irzak <victor.irzak@zomp.com>",
"is_bot": false,
"headline": "Fixes handling of methods Task.WaitAsync and SemaphoreSlim.WaitAsync …",
"author_name": "Michele Bastione",
"author_login": "michelebastione",
"committed_at": "2026-06-25T11:39:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a6fbffc271e2848c18345f0c4b04725e8e520842",
"body": "Pull request #108 fixed EF Core async to sync generation. EF Core async methods are found in the `EntityFrameworkQueryableExtensions` class, so a mapping from EntityFrameworkQueryableExtensions to System.Linq.Queryable was added.\n\nUnfortunately, this was not enough. The `EntityFrameworkQueryableExte\n[…]\nnc and a sync method. For example: `ExecuteDeleteAsync` and `ExecuteDelete`.\n\nThis commit fixes the translation for those methods where both the async and sync methods are in the same extension class.",
"is_bot": false,
"headline": "Fix rewriter when the sync method is in the same extensions class (#110)",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2026-04-29T15:55:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0b3653c54572fd556ec3800b000cfd3210b0b67c",
"body": null,
"is_bot": false,
"headline": "Bump GitHub Actions to v5 for Node.js 24 support",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-04-26T01:26:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7019feff0aa6508f1af10af51fbde28f574e8eed",
"body": null,
"is_bot": false,
"headline": "Ensure that generated files actually compile",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-04-25T23:43:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eae2f49aa9b48e1995a9e33ea151474dc6a7f9b5",
"body": "Ship multiple analyzer DLLs targeting Roslyn 4.8 (.NET 8), 4.12 (.NET 9),\nand 5.0 (.NET 10) so the same NuGet package works across all SDK versions.\nNuGet automatically picks the highest compatible variant.\n\n- Add Directory.Build.targets with RoslynVersion-based package switching\n- Add Zomp.SyncMeth\n[…]\nsproj (now IsPackable=false)\n- Add #if ROSLYN_X_Y_OR_GREATER guards for version-specific APIs\n- Add Pack.ps1 for local multi-variant builds\n- Update CI to build variants before packing\n- Add AGENTS.md",
"is_bot": false,
"headline": "Add multi-Roslyn-version build architecture for .NET 8/9/10 SDK support",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-04-24T01:40:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ab77e1a75d758ea5712409347022bac45776bdc7",
"body": null,
"is_bot": false,
"headline": "Remove unused libraries, and fix code for latest analysers",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2026-04-16T01:11:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93321cae23b9f92e6e92694bee17634e7802cce2",
"body": "It can still be useful to preserve the CancellationToken in some scenarios. For example, for [cancelling a synchronous bulk copy operation][1].\n\n```csharp\nbulkCopy.SqlRowsCopied += (_, e) =>\n{\n if (cancellationToken.IsCancellationRequested)\n {\n e.Abort = true;\n }\n};\n```\n\nI plan to su\n[…]\nob/137d2fc8fed17b5aa7e6f11fccc079b7f463aff0/src/PhenX.EntityFrameworkCore.BulkInsert.SqlServer/SqlServerBulkInsertProvider.cs#L68-L74\n[2]: https://github.com/PhenX/PhenX.EntityFrameworkCore.BulkInsert",
"is_bot": false,
"headline": "Add option to preserve CancellationToken parameters (#115)",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2026-03-01T14:45:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6a0b1efae1e42bf2f81a04bb3ff13a9ad460c80e",
"body": null,
"is_bot": false,
"headline": "Fixes #111 Drop return in non generic Task method",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-12-24T19:12:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "691becfae7dcf11d5b7f68e8fc300eaf48d698e8",
"body": null,
"is_bot": false,
"headline": "Move more common code into extension methods",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-12-24T19:00:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56661c31a4e1e0ebf9c0e8ccef863d073e6fcb28",
"body": null,
"is_bot": false,
"headline": "Exclude N.SourceGenerators.UnionTypes from consumer dependencies",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-12-15T19:21:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "407dfdf90fc3e1609f653f583de55c9754f0611e",
"body": null,
"is_bot": false,
"headline": "Remove standalone ConfigureAwait statements",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-11-27T07:46:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3a506a719337144866b980558be9fa682cfba24",
"body": null,
"is_bot": false,
"headline": "Allow having generated methods in Async methods",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-11-27T02:02:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6d6a1fedb6f66dcfa5b744f803a7e66aa58cd7a",
"body": "… properly translated to their synchronous versions (#108)\n\n* Reproduce issue #107\n\nBoth in the unit tests and in the sandbox tests\n\n* Fix issue #107\n\nSince there's no way to guess where the sync version of the `EntityFrameworkQueryableExtensions` methods is coming from, hardcode the source (i.e. `System.Linq.Queryable`) just like it was done for `AsyncEnumerable` → `System.Linq.Enumerable`.\n\n* Fix compilation of test projects on Windows",
"is_bot": false,
"headline": "Ensure EF Core async methods (EntityFrameworkQueryableExtensions) are…",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2025-11-24T14:03:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3431c0de088d21870fcf1681cd1b0f5ed344c907",
"body": null,
"is_bot": false,
"headline": "Add support to C# 14 extension methods, bump test projects to .NET 10",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-11-24T01:56:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5ce847737ef2dcff49d56fc59cca3afe0151cd9",
"body": null,
"is_bot": false,
"headline": "Tighten tests to always compile",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-11-23T19:21:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e3ef591002cd6822003db57798c5fa65e5245c7",
"body": null,
"is_bot": false,
"headline": "Switch to DNX",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-08-12T22:53:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99d6d327561bdbc9970a9f998d459a1cb688ebde",
"body": "…g with 'Async'",
"is_bot": false,
"headline": "Append .Span to an extension method if it is passed to a method endin…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-28T22:21:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "deb029c2ea96aae0fc22fffd741f49c307c1f4ea",
"body": null,
"is_bot": false,
"headline": "Fix local functions",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-28T19:08:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5ee00c70224a4307fb3d6aa163accbb6556e0d4",
"body": "…esn't end with 'Memory'",
"is_bot": false,
"headline": "Append Span to the end of a static method which returns memory and do…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-28T16:27:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "609417f8ce9d9cc4feef3f244742693685bbf1a5",
"body": "…ethod",
"is_bot": false,
"headline": "Get Span from Memory in a method calll argument when dropping Async m…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-27T21:29:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2e28cc47f05494e003b196572337c55f504fc97",
"body": "…n memory and not span",
"is_bot": false,
"headline": "Assume that if a method isn't ending with Memory, it will still retur…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-27T00:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6be7cca5c784fe57331f9fcf407cce0d865d71ea",
"body": null,
"is_bot": false,
"headline": "Treat local Memory variables as Span",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-26T13:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "188d6483062f2b78d4ac893792071ae7cb9a25ad",
"body": null,
"is_bot": false,
"headline": "Rewrite memory to span conversion",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-24T22:14:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "267c2ee0cc39df2f510a9ce39fe63694bbd8290a",
"body": null,
"is_bot": false,
"headline": "Keep invocation if sync method exists (#103)",
"author_name": "Gerard Smit",
"author_login": "GerardSmit",
"committed_at": "2025-07-24T15:28:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5292c5a421862d0421079c7709bdd53e40724c68",
"body": null,
"is_bot": false,
"headline": "Fix Memory preservations when necessary",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-23T14:42:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "046f16933c4516c21ce5e9ed5e6a5a74c95d0ee0",
"body": null,
"is_bot": false,
"headline": "Ensure that Memory? z = null doesn't convert to Span",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-20T20:08:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bf93cb6cab794051e78ea73cb69f636b50ed1a5",
"body": null,
"is_bot": false,
"headline": "Disable when calling .Value",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-20T19:00:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "600c6a3fb1559e93a8864a3fbeab53d674f97f9d",
"body": null,
"is_bot": false,
"headline": "Reverse switch to DNX, doesn't seem ready",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-20T17:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2f49d2392cf29f1f81055d38fb695a49e9cc9bf",
"body": null,
"is_bot": false,
"headline": "Prevent span conversion when yielding memory",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-20T17:14:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74aa2cb5e387f196741717585dd49109945b0828",
"body": null,
"is_bot": false,
"headline": "Use DNX",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-18T16:30:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ba834827df7d77017b12ac37510ac0e9892b6f2",
"body": null,
"is_bot": false,
"headline": "Handle DisposeAsync on configured enumerator",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-17T13:06:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be63ff0294eeef09176c348a0a74dfb7abf4ba08",
"body": null,
"is_bot": false,
"headline": "Preserve indexers and other properties of the Span",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-08T03:57:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b427554e66896dc0f83be3236bbae8daa791215",
"body": null,
"is_bot": false,
"headline": "Ensure Memory is preserved when inside an array or another collection",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-08T02:02:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e98e5bb4c9d75979c48f2c9c3d17149e37bbf58",
"body": null,
"is_bot": false,
"headline": "Fix IDE warning",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-07T23:04:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54422e7f026b080490542d81d8909f61d1d82500",
"body": null,
"is_bot": false,
"headline": "Fix #100 Fix tuple nullability",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-07-04T14:45:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92e1a83136f0dfa652ee621ed03679d482a6c555",
"body": null,
"is_bot": false,
"headline": "Simplify code to increase code coverage",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-29T23:56:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89c8551bba4e5ec04eb9db874b91f9a98daa2bcf",
"body": null,
"is_bot": false,
"headline": "Update to 1.5 and bump packages",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-29T13:56:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a181939c23f5e55535cf02f5385e431a0038643",
"body": "…oduce `SkipSyncVersionAttribute` (#99)\n\n* enhance `CreateSyncVersionAttribute`\n\n* minor change\n\n* remove `TransformResult.cs`\n\n* fix build issue\n\n* rename and separate file\n\n* Change line endings\n\n* Add failing test cases for record\n\n* Accomodate attribute on record and revert blocks close to original\n\n* Ensure test case compiles\n\n* Update docs\n\n---------\n\nCo-authored-by: Victor Irzak <victor.irzak@zomp.com>",
"is_bot": false,
"headline": "feat: Apply `CreateSyncVersionAttribute` to containing types and intr…",
"author_name": "Amos",
"author_login": "izanhzh",
"committed_at": "2025-06-29T13:12:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a592a1423e834d56d37452fe5f98afaaf126d79",
"body": "* Adjust the criteria for determining the value of `disableNullable`\n\n* fix unit test failure issues",
"is_bot": false,
"headline": "feat: add support for .csproj-based disableNullable configuration (#98)",
"author_name": "Amos",
"author_login": "izanhzh",
"committed_at": "2025-06-23T11:05:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a16aa27b1d8907ca5a47f2022cf0ec621ec90cde",
"body": null,
"is_bot": false,
"headline": "Fix #91 Ensure nullability is preserved in the return type",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-23T00:45:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "890e014f1ed11674a2fa24099a34990782cfdd70",
"body": null,
"is_bot": false,
"headline": "Improve README",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-17T23:14:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cbcb3c52ba0119d2843fb2c0f2bdb3afa7f53ce",
"body": "* Add option to preserve IProgress parameters\n\n* Move non-static methods after static methods\n\n* Rename the snapshots to avoid git checkout issues\n\n* Move all IProgress related tests to a new test class",
"is_bot": false,
"headline": "Add option to preserve IProgress<T> parameters (#95)",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2025-06-17T17:53:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fe7e030ff794dccb75ae6358d980f46699ec5a9",
"body": null,
"is_bot": false,
"headline": "Eliminate some code duplication",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-17T13:43:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6b89e761932114116ea45996303f7bcab744356",
"body": null,
"is_bot": false,
"headline": "Optimize debug launch configuration (#97)",
"author_name": "Amos",
"author_login": "izanhzh",
"committed_at": "2025-06-17T09:47:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d6a68c14686ba73b58d7059821cc889b266cd8e",
"body": null,
"is_bot": false,
"headline": "Handle SYNC_ONLY inside the parameter list",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-17T01:43:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "536bcf48a599e90ade6544016c0bb57e93dabd94",
"body": null,
"is_bot": false,
"headline": "Add failing test case to be resolved in the future",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-16T10:27:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8009b3329fca3df3ea6e2a6cc93bb88b6ae101f7",
"body": null,
"is_bot": false,
"headline": "Fix preprocessor statement before the method bug",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-14T00:26:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6890a7eac64163293668f5b1c4e82ff043a4417",
"body": null,
"is_bot": false,
"headline": "Preserve trivia before removing task extension",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-12T18:10:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "167bb6a0cee50c55f2d9b3175078bdc9f43fcce3",
"body": null,
"is_bot": false,
"headline": "Handle multidimentional array",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-11T20:22:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f304adc996a8db6f4176b6f19d9ed258501f346e",
"body": null,
"is_bot": false,
"headline": "Exclude Microsoft.Bcl.AsyncInterfaces from nuget",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-11T16:05:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9013379add26be7ef29a146ec0fa9b532566f995",
"body": null,
"is_bot": false,
"headline": "Handle Task.WaitAsync",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-11T14:48:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9425557fcc37bb28b528f6b857f4095636c40b2c",
"body": null,
"is_bot": false,
"headline": "Fix cancellation token argument wrapped in precompiler directive",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-06-10T19:37:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "285d4a32307c5e6f5c34937961ddd32efc2c148f",
"body": "* Add support for the .NET 8 SDK\n\nDowngrading Microsoft.CodeAnalysis.CSharp from version 4.13.0 to 4.11.0 enables using Zomp.SyncMethodGenerator with the .NET 8 SDK at the very small price of using `nameof(Nullable<int>.*)` instead of `nameof(Nullable<>.*)`\n\nCurrently, using Zomp.SyncMethodGenerator\n[…]\newer than the currently running version '4.11.0.0'.\n\n* Remove global.json file\n\n* Restore the use of nameof with unbound generic in AsyncToSyncRewriter\n\n* Update test packages to their latest versions",
"is_bot": false,
"headline": "Add support for the .NET 8 SDK (#93)",
"author_name": "Cédric Luthi",
"author_login": "0xced",
"committed_at": "2025-06-09T13:07:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c4f2f3a4b173be94fc88a8977caa40c37e72b674",
"body": null,
"is_bot": false,
"headline": "Switch to SDK dotnet format",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-04-01T21:36:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab705966d37c066081595a4b30665874b8ef861d",
"body": null,
"is_bot": false,
"headline": "Ensure the project works in dev container with podman",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-03-24T14:41:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eafebd1ae229cb7eb5a0a5341b21b66d91c5f21a",
"body": null,
"is_bot": false,
"headline": "Separate sign action from publish",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-03-10T16:14:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d626baf98e6f43a28afd8721441498d579cf214b",
"body": null,
"is_bot": false,
"headline": "Fix #90 Move directive stack back to block level, resolve exception",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-03-09T00:32:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b17c86763aeef7c540c2b58b9d2874c983d331bb",
"body": null,
"is_bot": false,
"headline": "Fix act publish",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-02-25T05:45:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94e92c63a6fb7992a0a529926dc3d1a8f08e8998",
"body": null,
"is_bot": false,
"headline": "Fix #88 Fix pattern matching with constants and enums",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-02-23T15:09:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a477d918be92d0c8470efd484397994bde2fdd37",
"body": "…ith a method with generics",
"is_bot": false,
"headline": "Fix #89 Handle MemberBindingExpressionSyntax to properly combine ?. w…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-02-23T13:25:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c0b3d519338224924dc35f312ba3d8b39d4d23c",
"body": null,
"is_bot": false,
"headline": "Switch to trusted signing with https://github.com/dotnet/sign",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2025-02-09T21:23:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d627fa58703a51c5ab7caf1444a9a34e29dbf49",
"body": null,
"is_bot": false,
"headline": "Upgrade dependencies and drop .NET 6 testing",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-11-17T23:29:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d85b0a1836acdc811c1a83a7606d39bbba8b38cf",
"body": "* Fix enum pattern matching\r\n\r\n* Expand tests to include static usings\r\n\r\n---------\r\n\r\nCo-authored-by: Victor Irzak <victor.irzak@zomp.com>",
"is_bot": false,
"headline": "Fix enum pattern matching (#86)",
"author_name": "Gerard Smit",
"author_login": "GerardSmit",
"committed_at": "2024-08-07T21:09:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32fc8a9d5ef40beceaccaff3a5f1e9ac6b87f88d",
"body": "…evel",
"is_bot": false,
"headline": "Fix #83 Move directive stack to the method level instead of a block l…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-21T15:39:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c4ec93ff3276f3ef7b94cff2a3946c2f1fbc6fd",
"body": null,
"is_bot": false,
"headline": "Fix #84 Fix nullable, fully qualified names",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-19T18:31:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ff86a35c2d85be03e93ba2abc4566bbf12c312e",
"body": "…peSymbol to string",
"is_bot": false,
"headline": "Use pattern matching to determine type instead of converting INamedTy…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-15T01:21:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fad2a73b281960b99aef7bacf8f50dc59c15f4a4",
"body": null,
"is_bot": false,
"headline": "Add handling for ConfiguredCancelableAsyncEnumerable<T>",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-13T00:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4d4eb9456cbdf2356d5a03d116be7c2cd151cff",
"body": null,
"is_bot": false,
"headline": "Clean up MethodParentDeclaration creation",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-08T12:14:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "702ed51742e292c5d3c225fe2b62f02be4a61400",
"body": null,
"is_bot": false,
"headline": "Fix #82 Add support for interfaces",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-08T03:18:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1a312dbd98c31a322967a75aaef5e0286030a6c",
"body": null,
"is_bot": false,
"headline": "Bump packages and other minor changes",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-08T02:54:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbb542f85a3e4f1a058147f506cd4b84a42c9fca",
"body": "…explicit Invoke",
"is_bot": false,
"headline": "Fix #78 Improve Func<Task> to Action conversion with nested Func and …",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-07T17:02:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e6da6e89b0e905bb8c722d308e95dfc1f1a0dfd",
"body": null,
"is_bot": false,
"headline": "Fix #81 Handle events",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-06T16:35:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1c0e951c263b3bcfa207ad9dc51a774ce9290d6",
"body": "…x spacing",
"is_bot": false,
"headline": "Fix #79 Improve value type check in conditional access expression, fi…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-07-06T16:18:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89dcc1a7912f68b6b1388cd39992af44fffd6125",
"body": null,
"is_bot": false,
"headline": "Fix #80 Handle delegate creation better",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-06-27T00:55:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "369eaac2e7e640955b0a10781e66afe88bfddaba",
"body": null,
"is_bot": false,
"headline": "Drop out-of-support .NET 7",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-06-26T22:35:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75bfa0450f192505d8c825a31889bea0e1a93470",
"body": null,
"is_bot": false,
"headline": "Resolve #77 Add support for structs and records",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-05-21T20:50:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da5ca5213d6c7926df896704c435d530bfa45aea",
"body": "…handling of QualifiedSyntaxName",
"is_bot": false,
"headline": "Fix #75 Process type argument inside VisitIdentifierName and improve …",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-05-14T01:17:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5689c4140f1bd5caad43dd65febc89d5aff3194e",
"body": "…perly when NRT is turned off and with value types",
"is_bot": false,
"headline": "Fix #73 Ensure conditional access with extension method generates pro…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-04-26T20:39:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a3c703e0990326f894316eebc569eee716a89bb",
"body": "… of the dot in an extension method",
"is_bot": false,
"headline": "Fix #74 Prevent a crash when there's a complex expression to the left…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-04-26T14:56:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1178fa2e29915a529e3e3c81bc2ef7596d53812",
"body": null,
"is_bot": false,
"headline": "Comply with the latest .NET analyzer",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-04-13T15:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30edff256aa6925eb06c3ad49cb3333a96b5dc71",
"body": null,
"is_bot": false,
"headline": "Fix #72 Drop configurewAwait from and await using from IAsyncDisposable",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-04-11T11:42:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2bc3cc971f626315eeabcde33774f0e974b6b455",
"body": null,
"is_bot": false,
"headline": "Fix #71 Exclude ArrayTypeSyntax from additional processing",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-04-09T14:01:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3d7afbf1acb75d6ab2c1572c835978ed7e055b0",
"body": "* Fix deconstruct and fully qualified types in async foreach\r\n\r\n* Move tests",
"is_bot": false,
"headline": "Fix deconstruct and fully qualified types in async foreach (#68)",
"author_name": "Gerard Smit",
"author_login": "GerardSmit",
"committed_at": "2024-03-23T14:02:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28761db48b4946049e6efc28d8f7d49d8cbd95cb",
"body": null,
"is_bot": false,
"headline": "Switch to release version from debug",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-03-21T01:03:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20da3182202ea719311511814035767a3d1ce7d7",
"body": null,
"is_bot": false,
"headline": "Fix #66 Convert Func<int, Task> into Action<int>",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-03-20T15:17:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa72a9747703d849bd0c12ea489713d003b1a33a",
"body": "…e condition with true if IsCancellationRequested is negated",
"is_bot": false,
"headline": "Fix #61 Drop if and while that has IsCancellationRequested and replac…",
"author_name": "Victor Irzak",
"author_login": "virzak",
"committed_at": "2024-03-19T22:20:59Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 31,
"latest_release_at": "2026-07-26T20:24:17Z",
"latest_release_tag": "v2.0.20",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 11,
"days_since_latest_release": 0,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "Zomp.SyncMethodGenerator",
"exists": true,
"license": null,
"keywords": [
"async",
"sync",
"csharp",
"source",
"generator"
],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Zomp.SyncMethodGenerator",
"is_deprecated": false,
"latest_version": "2.0.20",
"repository_url": "https://github.com/zompinc/sync-method-generator",
"versions_count": 82,
"total_downloads": 112711,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-27T01:07:54.780000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 10,
"stars": 82,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2022-11-19",
"count": 1
},
{
"date": "2023-11-13",
"count": 1
},
{
"date": "2023-12-11",
"count": 1
},
{
"date": "2024-01-02",
"count": 1
},
{
"date": "2025-05-28",
"count": 1
},
{
"date": "2025-06-04",
"count": 1
},
{
"date": "2025-06-24",
"count": 1
},
{
"date": "2026-01-30",
"count": 1
},
{
"date": "2026-04-14",
"count": 1
},
{
"date": "2026-06-20",
"count": 1
}
],
"complete": true,
"collected": 10,
"total_forks": 10
},
"star_history": null,
"open_issues_and_prs": 13
},
"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": true,
"typecheck_configs": [],
"toolchain_manifests": [
"src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj",
"src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"tests/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj",
"tests/Generator.Tests/Generator.Tests.csproj"
],
"largest_source_bytes": 99868,
"source_files_sampled": 322,
"oversized_source_files": 1,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 4616
},
"dependencies": {
"manifests": [
"package.json"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 2,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 14,
"direct_affected_count": 0
},
"ecosystems": [
"npm"
],
"dependencies": [
{
"name": "Microsoft.Bcl.HashCode",
"manifest": "src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Nerdbank.GitVersioning",
"manifest": "src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Microsoft.Bcl.AsyncInterfaces",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Microsoft.Bcl.HashCode",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Microsoft.CodeAnalysis.CSharp",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "N.SourceGenerators.UnionTypes",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Nerdbank.GitVersioning",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "PolySharp",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
},
{
"name": "Microsoft.SourceLink.GitHub",
"manifest": "src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"ecosystem": "nuget",
"version_constraint": null
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "Microsoft.Bcl.AsyncInterfaces",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Microsoft.Bcl.HashCode",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Microsoft.CodeAnalysis.CSharp",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "N.SourceGenerators.UnionTypes",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Nerdbank.GitVersioning",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "PolySharp",
"direct": true,
"version": null,
"ecosystem": "nuget"
},
{
"name": "husky",
"direct": false,
"version": "9.1.7",
"ecosystem": "npm"
},
{
"name": "prettier",
"direct": false,
"version": "3.9.6",
"ecosystem": "npm"
},
{
"name": "Basic.Reference.Assemblies.Net100",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "coverlet.collector",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Microsoft.NET.Test.Sdk",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Verify.SourceGenerators",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "Verify.Xunit",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "xunit",
"direct": false,
"version": null,
"ecosystem": "nuget"
},
{
"name": "xunit.runner.visualstudio",
"direct": false,
"version": null,
"ecosystem": "nuget"
}
],
"collected": true,
"truncated": false,
"total_count": 16,
"direct_count": 6,
"indirect_count": 10
}
},
"maintainership": {
"issues": {
"open_prs": 7,
"merged_prs": 29,
"open_issues": 6,
"closed_ratio": 0.936,
"closed_issues": 88,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "virzak",
"commits": 217,
"avatar_url": "https://avatars.githubusercontent.com/u/6209775?v=4"
},
{
"type": "User",
"login": "0xced",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/51363?v=4"
},
{
"type": "User",
"login": "GerardSmit",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/2109929?v=4"
},
{
"type": "User",
"login": "izanhzh",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/35218245?v=4"
},
{
"type": "User",
"login": "atifaziz",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/20511?v=4"
},
{
"type": "User",
"login": "michelebastione",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/50582333?v=4"
}
],
"contributors_sampled": 6,
"top_contributor_share": 0.919
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"build.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": true,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"pnpm-lock.yaml"
],
"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": 10,
"reason": "12 out of 12 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 2/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 3 contributing companies or organizations -- score normalized to 10",
"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": "16 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": 1,
"reason": "dependency not pinned by hash detected -- score normalized to 1",
"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": "58d59ad4821721f27da529988ab2a6daf928cba7",
"ran_at": "2026-07-27T01:22:04Z",
"aggregate_score": 4.7,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-27T00:23:36Z",
"oldest_open_prs": [
{
"number": 23,
"created_at": "2023-12-21T23:16:00Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 69,
"created_at": "2024-03-23T00:53:01Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 94,
"created_at": "2025-06-04T23:10:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 102,
"created_at": "2025-07-22T10:12:20Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 104,
"created_at": "2025-08-04T22:20:00Z",
"last_comment_at": "2025-08-05T10:53:19Z",
"last_comment_author": "GerardSmit"
},
{
"number": 114,
"created_at": "2026-01-30T23:18:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 117,
"created_at": "2026-04-16T16:00:49Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-27T00:19:56Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 19,
"created_at": "2023-11-13T15:36:41Z",
"last_comment_at": "2023-11-15T17:13:43Z",
"last_comment_author": "virzak"
},
{
"number": 92,
"created_at": "2025-05-27T13:46:47Z",
"last_comment_at": "2025-06-16T01:14:15Z",
"last_comment_author": "izanhzh"
},
{
"number": 105,
"created_at": "2025-08-20T13:09:48Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 113,
"created_at": "2026-01-30T23:17:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 116,
"created_at": "2026-04-14T19:55:43Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 132,
"created_at": "2026-07-26T23:09:35Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/zompinc/sync-method-generator",
"host": "github.com",
"name": "sync-method-generator",
"owner": "zompinc"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"security": 58,
"vitality": 71,
"community": 50,
"governance": 63,
"engineering": 64
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 71,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"commits_last_year": 31,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 11
},
"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": "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": "31 commits in the last year",
"points": 13.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 31
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "16 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": 1,
"latest_release_tag": "v2.0.20",
"releases_from_tags": false,
"days_since_latest_release": 0,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"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": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 50,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 39,
"inputs": {
"forks": 10,
"stars": 82,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "82 stars",
"points": 31,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 82
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "10 forks",
"points": 8,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 10
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "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
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 66,
"inputs": {
"packages": [
"Zomp.SyncMethodGenerator"
],
"dependents": null,
"ecosystems": "nuget",
"total_downloads": 112711,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "112,711 downloads all-time across nuget",
"points": 52.5,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 112711,
"ecosystems": "nuget"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 63,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 29,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 6,
"top_contributor_share": 0.919
},
"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 92% of commits",
"points": 1.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 92
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "6 contributors",
"points": 8.1,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 6
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 81,
"inputs": {
"merged_prs": 29,
"open_issues": 6,
"closed_issues": 88,
"issue_closed_ratio": 0.936,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "94% of issues closed",
"points": 43.8,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 94
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "29/30 decided PRs merged",
"points": 37,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 29,
"decided": 30
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 2/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"followers": 10,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "zompinc",
"public_repos": 5,
"account_age_days": 2294
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "10 followers of zompinc",
"points": 7.5,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 10,
"login": "zompinc"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "5 public repos, account ~6 yr old",
"points": 17.7,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 5
}
},
{
"code": "account_age_years",
"params": {
"years": 6
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"Zomp.SyncMethodGenerator"
],
"ecosystems": "nuget",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on nuget",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "nuget"
}
}
],
"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": "82 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 82
}
}
],
"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": 64,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 74,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"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": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "12 out of 12 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 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": "moderate",
"name": "Security",
"value": 58,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 47,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 4.7
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "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": "12 out of 12 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 2/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 3 contributing companies or organizations -- score normalized to 10",
"points": 2.5,
"status": "met",
"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": "16 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 1",
"points": 0.5,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 2 resolved dependencies against OSV; 14 could not be assessed (no resolved version, an unsupported ecosystem, or beyond the reported package list). This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 2
}
},
{
"code": "advisories_unassessed",
"params": {
"count": 14
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 2,
"unassessed_packages": 14,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 2,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"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": 8
},
"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": "good",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.47,
"agent_instruction_files": [
"AGENTS.md"
],
"agent_instruction_max_bytes": 4616
},
"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": "47 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 25.1,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 47,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"pnpm-lock.yaml"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": true,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.11,
"toolchain_manifests": [
"src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj",
"src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj",
"tests/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj",
"tests/Generator.Tests/Generator.Tests.csproj"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj, src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj, tests/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "src/Zomp.SyncMethodGenerator.Pack/Zomp.SyncMethodGenerator.Pack.csproj, src/Zomp.SyncMethodGenerator/Zomp.SyncMethodGenerator.csproj, tests/GenerationSandbox.Tests/GenerationSandbox.Tests.csproj"
}
}
],
"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": "C# (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C#"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "devcontainer, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "devcontainer, lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "11 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 11,
"sampled": 100
}
}
],
"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 1",
"points": 1,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "C#",
"largest_source_bytes": 99868,
"source_files_sampled": 322,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C# (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C#"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/322 source files over 60KB",
"points": 54.8,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 322,
"oversized": 1
}
}
],
"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"
],
"report_type": "repository",
"generated_at": "2026-07-27T01:22:16.768752Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/z/zompinc/sync-method-generator.svg",
"full_name": "zompinc/sync-method-generator",
"license_state": "standard",
"license_spdx": "MIT"
}