Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 141,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 220232,
"Shell": 6447
},
"pushed_at": "2026-07-24T13:26:06Z",
"created_at": "2025-11-06T02:13:36Z",
"owner_type": "User",
"updated_at": "2026-07-24T13:28:36Z",
"description": "AsyncAPI 3.0 specification generation for Rust WebSockets and async protocols",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "www.lilback.com",
"name": "Mark Lilback",
"type": "User",
"login": "mlilback",
"company": null,
"location": "Pittsburgh, PA",
"followers": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/719661?v=4",
"created_at": "2011-04-09T20:11:13Z",
"is_verified": null,
"public_repos": 36,
"account_age_days": 5585
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-07-24T13:42:00Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-06-19T22:07:11Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-06-19T16:59:59Z"
},
{
"tag": "v0.3.0-beta.3",
"kind": "prerelease",
"published_at": "2026-06-19T00:55:43Z"
},
{
"tag": "v0.3.0-beta.2",
"kind": "prerelease",
"published_at": "2026-06-19T00:32:54Z"
},
{
"tag": "v0.3.0-beta.1",
"kind": "prerelease",
"published_at": "2026-06-19T00:08:15Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2025-11-07T17:18:22Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2025-11-06T19:41:48Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2025-11-06T17:19:00Z"
}
],
"recent_commits": [
{
"oid": "2679b90cf59f63078b43d5dcb2b387a4eb081a55",
"body": "Add a Protocol bindings feature bullet, a \"Migrating from 0.4.x\" section\ncovering the new bindings field on Server/Operation/Message, list the\nmqtt_bindings example, and mark protocol bindings (MQTT) done in the\nroadmap.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01AKM23LK9zgGcHn8HGsHqJi",
"is_bot": false,
"headline": "docs: update README for 0.5.0 (MQTT bindings + migration note)",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-07-24T13:25:53Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "50371cb4f7a7a141fbcccfc310e7316127973053",
"body": null,
"is_bot": false,
"headline": "chore(release): prepare for v0.5.0",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-07-24T13:12:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "539d5e58faf5ef5a0aa07891f87269e89b2da183",
"body": "Cargo.lock is gitignored (library workspace), but release.sh passed it to\n`git add`/`git checkout`. With `set -e`, `git add Cargo.lock` fails on the\nignored path and aborts the release. Drop Cargo.lock from both git\noperations; `cargo check` still refreshes the local lockfile.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01AKM23LK9zgGcHn8HGsHqJi",
"is_bot": false,
"headline": "fix(release): don't git-add the gitignored Cargo.lock",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-07-24T13:12:45Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "5195d7e39571494cdf085c98cc83baa815013ce1",
"body": "The attribute extractors discarded the result of parse_nested_meta with\n`let _ = ...`, so syn::Errors for malformed bindings (e.g. a last_will\nmissing required sub-fields, or a value of the wrong literal type) were\nswallowed and the binding was silently dropped.\n\nThread syn::Result through extract_a\n[…]\n yields\n`error: missing qos` at compile time.\n\nCloses #14.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>\nClaude-Session: https://claude.ai/code/session_01AKM23LK9zgGcHn8HGsHqJi",
"is_bot": false,
"headline": "fix: surface malformed asyncapi/mqtt attribute errors as compile errors",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-07-24T01:48:45Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "00e642904e039ce214a8dc0121c1a118aea1a18e",
"body": "…#12)\n\nAdds MQTT binding models and derive-macro parsing/codegen for server, operation, and message bindings. Partially addresses #11.\n\nIncludes examples/mqtt_bindings.rs and tests/mqtt_bindings_integration.rs, which derive mqtt(...) on a server, operation, and message and assert the emitted spec.\n\nFollow-ups: #14 (propagate binding parse errors), #15 (further example/test polish).\n\nCo-authored-by: Max Christoph <m.christoph@pureions.de>",
"is_bot": false,
"headline": "feat: add AsyncAPI MQTT bindings for server, operation, and message (…",
"author_name": "pureions",
"author_login": "pureions",
"committed_at": "2026-07-23T23:48:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "885c52b9ee3c003cd85447c37d1715bea78333f0",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(release): bump version to 0.4.0 and regenerate CHANGELOG",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T20:28:14Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "28d4d53d3f66c28bed63f4684434ab45548d51e6",
"body": "Documents the HashMap → IndexMap breaking change with a migration example\nshowing the asyncapi_rust::indexmap::IndexMap re-export pattern.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add 0.3.x → 0.4.0 migration guide and update version references",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T20:25:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "1035516d8c0db896e6decdd2a2d67a1c75dbd77b",
"body": "…ses #9)\n\nGenerated AsyncAPI specs now have stable property and component ordering\nacross builds. HashMap's random iteration order caused ~580 lines of churn\nin downstream TypeScript codegen on every rebuild despite no API changes.\n\nIndexMap preserves insertion order (struct field declaration order \n[…]\n natural than BTreeMap's alphabetical sort.\nindexmap is re-exported from asyncapi-rust so users don't need to add it\nto their own Cargo.toml.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: replace HashMap with IndexMap for deterministic spec output (clo…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T20:15:08Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "11ef5e5f18320c77c64ff7af756c98ff713ab8fd",
"body": null,
"is_bot": false,
"headline": "chore: merge release/0.3.0 into main",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T16:49:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2e2737f1dee9336eaac3bf86fc34408fefcf13e",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(release): bump version to 0.3.0 and regenerate CHANGELOG",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T16:49:11Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "9b71af904e5d0b0fc4d8d8ae40a302b15bccc096",
"body": "Add 9 new tests (5 integration, 4 unit) covering roundtrip deserialization,\nSchema::Any variants, untagged/adjacently-tagged enums, and attribute parsing.\nAdd cargo-tarpaulin config (.tarpaulin.toml) excluding compile-time proc macro\nentry points. Add coverage CI job uploading to Codecov. Add coverage badge and\nmigration guide to README.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "test: expand coverage to ~98% and add CI coverage reporting",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T16:48:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8bf2632be5a7967d295e3e75289fcd3ad595845e",
"body": "- Add \"Migrating from 0.2.x\" section documenting the breaking change in\n message naming (variant ident instead of serde rename string)\n- Document #[asyncapi(message_name = \"...\")] attribute with disambiguation example\n- Update Quick Start comment: asyncapi_message_names() now returns [\"UserJoin\", \"\n[…]\n\n- Regenerate CHANGELOG.md from full git history (removes stale duplicate\n [unreleased] block, adds all 0.3.0-beta entries with issue links)\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: update README for 0.3.0 and regenerate CHANGELOG",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T14:00:07Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "bb550a38a5670e7f9aa23f17cfe9d382f336da0c",
"body": "Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore(release): bump version to 0.3.0-beta.3",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:55:23Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bc6dd5288ed70d4b7f3440a61d11542cba4780a0",
"body": "…tect collisions (closes #8)\n\nMessage names in components.messages and asyncapi_message_names() now use the\nRust variant identifier (e.g. CurrentEditor) rather than the serde rename\n(e.g. \"current-editor\"). This makes names stable, unique per-enum, and suitable\nas code identifiers downstream.\n\nThe s\n[…]\nng,\ne.g. OperationResponse::GetInfo with message_name = \"GetInfoResponse\" to avoid\ncolliding with Operation::GetInfo.\n\nReported by @mlilback.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: use variant ident as message name; add message_name override; de…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:55:03Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7ca0f96eb629bbc5a412401ca459d3c12e3a8288",
"body": null,
"is_bot": false,
"headline": "chore(release): bump version to 0.3.0-beta.2",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:32:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "238f711d38813e00fcd4f62b303f40fa42e3c0c8",
"body": "…s (closes #7)\n\nPreviously, shared sub-type definitions were embedded as a full $defs\nblock inside every message payload (introduced in beta.1 while fixing\n#6). This caused downstream code generators to re-emit each shared type\nonce per message, producing duplicate top-level declarations.\n\nChanges:\n\n[…]\ner wins on name collision).\n- rewrite_defs_refs helper is scoped inside const _: () = { ... } so it\n doesn't leak into the user's namespace.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: hoist shared $defs into components.schemas; rewrite payload $ref…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:32:20Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "5adf68f7ef435818de862f31ad01d646b82c914f",
"body": null,
"is_bot": false,
"headline": "chore(release): bump version to 0.3.0-beta.1",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:07:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "18f9779eefd0e72b3c8c86c324f86512bb0e5bdd",
"body": "… fields\n\nReplace schema_type/format (removed in 3.0) with the correct fields:\ndefault, enum_values, examples, and location.",
"is_bot": false,
"headline": "docs: update channel parameter docs to reflect AsyncAPI 3.0 Parameter…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-19T00:04:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b2adbc638a4173ea00e01e2a60c51edbe1bab8a",
"body": "…loses #6, closes #2)\n\nasyncapi_messages() previously cloned the whole-enum oneOf schema onto\nevery message. Now it extracts each variant's individual schema from the\noneOf array by matching the serde tag field's const/enum value at\nruntime via asyncapi_tag_field(), so any tag name works (\"message\",\n[…]\nll back to the full schema as before.\nPanicking expect() replaced with .ok() so unusual schema shapes yield\nNone payload rather than a crash.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: emit per-variant payload schema for tagged enums; embed $defs (c…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-18T23:57:34Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "4ce046f3cab25c357a068c56b966e92c1dc976dd",
"body": "…late\n\nPreprocessors normalize \"Reported by @user.\" and \"Contributed by @user.\"\nin commit bodies into trailer format (Reported-by/Contributed-by) so\ncliff parses them as footers. A link parser turns \"#N\" references into\nGitHub issue links. Both appear inline in each changelog entry as\n\"(reported by @user, [#N](url))\".",
"is_bot": false,
"headline": "chore: add reporter/contributor credit tokens to cliff changelog temp…",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-18T23:32:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d703526b8cf37689c1acc20a2a3fd21489fb3e9d",
"body": "…panic (closes #4)\n\nAdd Schema::Any(serde_json::Value) as a catch-all last variant in the\nuntagged Schema enum. schemars 1.x emits minimal schemas like\n{\"title\": \"Nullable_AnyValue\"} for open-ended types (serde_json::Value,\nOption<serde_json::Value>). These are valid JSON Schema but didn't match\nReference or Object, causing an expect() panic in asyncapi_messages().\n\nReported by @csells.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: handle open-ended JSON Schemas (e.g. serde_json::Value) without …",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-18T23:24:34Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "7ef4b03258ffa0b37d56bb48f308167a62f96f54",
"body": "AsyncAPI 3.0 removed the `schema` property from the Parameter object.\nReplace it with the proper 3.0 fields: `description`, `default`, `enum`,\n`examples`, and `location`. The `schema_type`/`format` codegen attributes\nare replaced with `default`, `enum_values`, `examples`, and `location`.\n\nReported by @pureions.\n\nCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: bring Parameter object into AsyncAPI 3.0 compliance (closes #5)",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2026-06-18T23:21:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "8d4bbfa71e4690428396cc5f8ee9b365e449056b",
"body": "The project has successfully released v0.2.0 to crates.io with:\n- Server variables and channel parameters\n- Comprehensive examples and documentation\n- Full test suite and CI/CD\n- 100% success in real-world testing\n\nThe library is now ready for production use.",
"is_bot": false,
"headline": "docs: remove early development notice from README",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T20:04:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d95437a042a59657e068a385c5b3d4843e551ef0",
"body": "- Add cargo-husky for automatic pre-commit quality checks\n- Enhance release.sh with comprehensive pre-release checks:\n - Code formatting (rustfmt)\n - Clippy warnings\n - Full test suite\n - Documentation build\n- Update CONTRIBUTING.md with pre-commit hooks documentation\n- Create .cargo-husky/hooks/pre-commit for automatic enforcement\n\nAll commits will now automatically check formatting and clippy before allowing commit.",
"is_bot": false,
"headline": "feat: add pre-commit hooks and enhanced release script",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T19:13:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d8c3c5292f3210dc5789a6bf9b463b0c7b05607",
"body": null,
"is_bot": false,
"headline": "style: apply rustfmt formatting to server_variables.rs",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T18:56:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd8d33a1e5b5923aab3969f4e1c6e3fb93e0fccf",
"body": "- Add allow(clippy::duplicated_attributes) for intentional channel reuse\n- Fix unused variable in debug_schema.rs",
"is_bot": false,
"headline": "fix: resolve clippy warnings in examples",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T18:55:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3bd2f519f05bee09b479f3b46c9aae3ba012c69",
"body": null,
"is_bot": false,
"headline": "chore: fix rustfmt formatting issues",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T18:53:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66709ce15ede9d2bd4817769faa708c4f184a8e5",
"body": null,
"is_bot": false,
"headline": "chore(release): prepare for v0.2.0",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T17:17:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b0dfa25e8328c45f6ff0e51a3eeb3146c20b5c2",
"body": "Add comprehensive example demonstrating server variables and channel\nparameters for user-specific WebSocket connections.\n\n## Example Features\n\n**Server Variables:**\n- Multiple servers (production, staging)\n- pathname: \"/api/{version}/ws/{userId}\"\n- Variables with descriptions, examples, enum values,\n[…]\noperations and messages\n- Full AsyncAPI 3.0 specification in JSON format\n\n## Usage\n\n```bash\ncargo run --example server_variables\n```\n\nUpdated README.md to include the new example in the examples list.",
"is_bot": false,
"headline": "docs: add server_variables.rs example",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T17:03:55Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "af90268d1e8dace3ce703a47d60e1d62b49ba326",
"body": "Implements AsyncAPI 3.0 server variables and channel parameters for\ndocumenting dynamic WebSocket paths and typed URL parameters.\n\n## New Features\n\n### Server Variables\nDefine variables in server pathnames with documentation and examples:\n```rust\n#[asyncapi_server(\n name = \"production\",\n host \n[…]\nnnel_with_parameters\n- test_extract_channel_with_multiple_parameters\n\nAddresses requirements from nc-server asyncapi migration for documenting\nuser-specific WebSocket connections with path parameters.",
"is_bot": false,
"headline": "feat: add server variables and channel parameters support",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T16:33:44Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8e8f69d17c861f9760deb3d214ca926b31679a64",
"body": "Generated complete changelog covering all releases using git-cliff.\n\n## Changes\n- **CHANGELOG.md** - New file with release history\n - v0.1.0 - Initial release with features and documentation\n - v0.1.1 - README metadata fix\n - [unreleased] - Recent bug fixes\n\n- **cliff.toml** - Fixed template form\n[…]\n\n - Removed line continuation backslashes for proper newlines\n - Simplified footer to avoid template errors\n\nThe CHANGELOG.md will be automatically updated by scripts/release.sh\nfor future releases.",
"is_bot": false,
"headline": "docs: generate retroactive CHANGELOG.md for v0.1.0 and v0.1.1",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T16:24:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "22426a50f1023e1d562c91e15aa357f78a260a31",
"body": "**Critical fix for schemars 1.1 compatibility**\n\n## Problem\nSchemars 1.1 outputs `\"type\": [\"string\", \"null\"]` (an array) for\noptional fields like `Option<NaiveDateTime>`, but our SchemaObject\nwas defined with `schema_type: Option<String>`, causing:\n```\nFailed to deserialize schema: Error(\"data did n\n[…]\n/Cargo.toml:**\n - Added chrono dev-dependency for debug example\n\n## Testing\nAll 35 tests pass, including 10 doc tests that verify the fix.\n\nFixes issue discovered during nc-server asyncapi migration.",
"is_bot": false,
"headline": "fix: support schemars 1.1 schema type arrays for optional fields",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T16:16:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5a77c92688bd371ec19b0d3c616b6a85734ad184",
"body": "- Add cliff.toml configuration for conventional commits\n- Add scripts/release.sh interactive release helper\n- Add docs/RELEASING.md with release process documentation\n\nFeatures:\n- Automatic changelog generation from conventional commits\n- Pre-1.0 version bump rules (feat/breaking→minor, fix→patch)\n- Interactive release script with validation\n- Manual control over publishing to crates.io",
"is_bot": false,
"headline": "chore: add git-cliff for changelog generation",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T16:07:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdbac6651c0f7356eed8d8bb09bc87329488dc85",
"body": "BREAKING CHANGES:\n- Upgrade to schemars 1.1 (from 0.8) for chrono datetime support\n- Fix #[asyncapi_messages(...)] to accept full module paths\n\nFixes:\n- Parse Path instead of Ident for message types in #[asyncapi_messages]\n- Now supports: #[asyncapi_messages(super::messages::Operation, crate::Respon\n[…]\nTime/DateTime fields\n- Updated README with chrono configuration examples\n\nTests:\n- Added test for module path parsing\n- All 34 tests passing\n- Updated test assertions to use quote! for Path comparison",
"is_bot": false,
"headline": "fix: support module paths in #[asyncapi_messages(...)]",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-07T15:57:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "28be69fb198c725bbdfd48fc11ae49bfb3a6520a",
"body": null,
"is_bot": false,
"headline": "chore: fix rustfmt formatting issues",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T23:14:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fca24bcb8b09e12f0753473541023970755975fb",
"body": "- Add readme = \"../README.md\" to all three crates\n- Bump version to 0.1.1 to fix missing README on crates.io\n- Update dependency versions in main crate\n\nThis is a metadata-only release to display the README on crates.io\npackage pages. No code changes.",
"is_bot": false,
"headline": "chore: add README to crates.io metadata (v0.1.1)",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T19:40:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8c7204bab06fad603da15142bfe0eb994756961",
"body": null,
"is_bot": false,
"headline": "docs: update README with message integration feature",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T17:05:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4bcc4de71bcb35e7b8568e8985fe05a279ca3fc8",
"body": "Add support for combining ToAsyncApiMessage types into AsyncApi specs\nby automatically populating the components/messages section.\n\nNew attribute:\n- #[asyncapi_messages(Type1, Type2, ...)] - Reference message types\n\nFeatures:\n- Parse comma-separated list of type identifiers\n- Generate code to call T\n[…]\nChatMessage and SystemMessage\nin the components/messages section with full JSON schemas.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add message integration with #[asyncapi_messages(...)]",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T17:03:51Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "aecf2554a00907698b47fde0e0a8634de6bd4966",
"body": "Enhanced documentation with detailed examples and explanations:\n\nMain crate (asyncapi-rust):\n- Expanded crate-level docs from ~40 to ~138 lines\n- Added detailed Quick Start with dependencies and example\n- Added Core Concepts section (ToAsyncApiMessage and AsyncApi)\n- Added Framework Integration sect\n[…]\n 10 integration tests: ✅ passing\n- 10 doc tests: ✅ passing (up from 2)\n- Clippy: ✅ clean\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: comprehensive rustdoc enhancements across all crates",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T16:51:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "134a05e1d09b8c288c9ca779e10caf4c2d76b2eb",
"body": "Remove .update-notes-template.sh from git tracking and add pattern\nto gitignore for personal development files.\n\nChanges:\n- Remove .update-notes-template.sh from tracking (kept locally)\n- Add .update-notes-template.sh to .gitignore\n- Add pattern .*-notes.* for other personal note tools\n- Rename sect\n[…]\nale:\n- Personal development tools shouldn't be in version control\n- Specific patterns preferred over broad .* wildcards for open source\n- Clear, explicit gitignore is easier to understand and maintain",
"is_bot": false,
"headline": "chore: gitignore personal development scripts",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T16:38:27Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "477ae600219904d4265103911e8efddb19a39518",
"body": "Add comprehensive examples showing how to integrate asyncapi-rust\nwith popular Rust web frameworks for WebSocket applications.\n\nNew Examples:\n1. actix_websocket.rs - Real-world actix-web + actix-ws integration\n - Chat application with Join/Message/Leave protocol\n - Shows how to use ChatMessage e\n[…]\nrk\n\nAll examples compile and run successfully.\nUpdated README with new examples section.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add real-world framework integration examples",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T16:29:49Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "354591db95e8ee222b3b5e112eb9490d5bc832be",
"body": "Implement support for complete AsyncAPI specifications using attribute\nmacros for servers, channels, and operations.\n\nNew attributes:\n- #[asyncapi_server(...)] - Define servers with host, protocol, description\n- #[asyncapi_channel(...)] - Define channels with address\n- #[asyncapi_operation(...)] - D\n[…]\n_operation(name = \"sendMessage\", action = \"send\", channel = \"chat\")]\nstruct ChatApi;\n```\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: enhance AsyncApi derive with servers, channels, and operations",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T16:20:33Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "764559852dcfb0c7b98674be27b6431413f628fd",
"body": "Document two approaches for working with generated AsyncAPI specs:\n1. Standalone binary pattern for generating spec files at build time\n2. Rustdoc integration using include_str! to embed specs in docs\n\nChanges:\n- Add \"Generating Specification Files\" section to README\n - Document standalone binary a\n[…]\npec files\n- Including specs in rustdoc output\n- Integration with API documentation tools\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add spec file generation and rustdoc integration guide",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T16:14:03Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "f5dc87acc8a2301b8f32d8c942fc583bc1f98166",
"body": "Implement AsyncApi derive macro to generate basic AsyncAPI\nspecifications with Info section pre-populated from attributes.\n\nChanges:\n- Add asyncapi_spec_attrs module for parsing spec-level attributes\n- Parse title, version, description from #[asyncapi(...)] attributes\n- Generate asyncapi_spec() meth\n[…]\ncount: 24 total tests passing (13 unit + 9 integration + 2 model)\nAll clippy checks pass\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement #[derive(AsyncApi)] for spec generation",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T15:57:46Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "58a82776d82907228f453daf6580c787ab280ca3",
"body": "Implement triggers_binary flag attribute to indicate messages that\nshould use binary content types by default.\n\nChanges:\n- Add triggers_binary: bool field to AsyncApiMeta struct\n- Parse triggers_binary flag in extract_asyncapi_meta()\n- Wire triggers_binary through MessageMeta to generated code\n- Def\n[…]\ncount: 20 total tests passing (10 unit + 7 integration + 3 model)\nAll clippy checks pass\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add triggers_binary attribute for binary message support",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T15:10:51Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "13c93001c583677f5b57231c0182a3904d5ea4f3",
"body": "Add support for enhanced documentation via #[asyncapi(...)] attributes\non message types and variants.\n\nFeatures:\n- New asyncapi_attrs module for parsing asyncapi metadata\n- Support for summary, description, title, content_type attributes\n- Metadata applied to generated Message objects\n- Works on bot\n[…]\nutes for all variants\n- Generated spec includes summary and description for each message\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement #[asyncapi(...)] helper attributes",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T15:00:57Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9242094a97989d43606b862f2028edb4eeee8307",
"body": "Add two complete examples demonstrating asyncapi-rust usage:\n\n1. simple.rs - Minimal example showing:\n - Basic message types with JsonSchema\n - asyncapi_message_names() usage\n - asyncapi_messages() schema generation\n - JSON serialization of messages\n\n2. chat_api.rs - Complete AsyncAPI 3.0 sp\n[…]\nh examples run successfully:\n- cargo run --example simple\n- cargo run --example chat_api\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: add working examples and update README",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T14:45:31Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7fb502304c44ad3a99a1f3a78c1eb6654102013a",
"body": "Integrate schemars to generate complete AsyncAPI Message objects\nwith JSON Schema payloads from Rust types.\n\nFeatures:\n- Added schemars dependency to workspace\n- New asyncapi_messages() method generates Vec<Message> with schemas\n- Schema type enhanced to support full JSON Schema spec:\n - SchemaObje\n[…]\nSchemaObject\n\nTests: 14 total (all passing)\nClippy: No warnings\nschemars version: 0.8.22\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add JSON Schema generation with schemars integration",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T14:39:21Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "5f760f7934f8ebd0842c2fb6705d62c1aaf2431f",
"body": "Implement actual macro logic for parsing serde attributes and\ngenerating AsyncAPI message metadata from Rust types.\n\nFeatures:\n- Parse enum variants and extract message names\n- Support #[serde(rename = \"...\")] on variants\n- Support #[serde(tag = \"...\")] on enums\n- Handle both enums and structs\n- Gen\n[…]\nruct\n\nTests: 12 total (8 unit tests + 4 integration tests)\nAll CI checks passing locally\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: implement ToAsyncApiMessage derive macro",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T03:54:41Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "4a97a18369c9b7c672d772c0b92e60a8f8ad75ce",
"body": "Create 3-crate workspace:\n- asyncapi-rust: Main crate with proc macro re-exports\n- asyncapi-rust-codegen: Procedural macro implementations\n- asyncapi-rust-models: Runtime AsyncAPI 3.0 data structures\n\nAdd GitHub Actions CI workflow:\n- Test on Rust 1.85 (MSRV) and stable\n- Run clippy with warnings as\n[…]\nh for progress tracking\n\nAll tests passing (4 tests total)\nAll CI checks passing locally\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\nCo-Authored-By: Claude <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat: add workspace structure and CI/CD pipeline",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T03:51:05Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "19805439aad4697e36f300cf17bb520e02292325",
"body": "Development notes are for local tracking only, not committed to repo.",
"is_bot": false,
"headline": "chore: add .dev-notes.md to gitignore",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T02:20:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ff4b1c515edb63ef3a8499f23c0db30b428075c",
"body": "- Add README with project overview and examples\n- Add dual MIT/Apache-2.0 license\n- Add workspace Cargo.toml (edition 2024, MSRV 1.81)\n- Add CODE_OF_CONDUCT.md and CONTRIBUTING.md\n- Add .gitignore for Rust projects\n- Note: Early development stage, API not yet stable",
"is_bot": false,
"headline": "Initial commit: project structure and documentation",
"author_name": "Mark Lilback",
"author_login": "mlilback",
"committed_at": "2025-11-06T02:16:11Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 9,
"commits_last_year": 52,
"latest_release_at": "2026-07-24T13:42:00Z",
"latest_release_tag": "v0.5.0",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 3,
"days_since_latest_release": 1,
"mean_days_between_releases": 32.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 71,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "asyncapi-rust",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"asyncapi",
"codegen",
"documentation",
"grpc",
"websocket",
"development-tools",
"api-bindings",
"web-programming",
"asynchronous"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/asyncapi-rust",
"is_deprecated": false,
"latest_version": "0.5.0",
"repository_url": "https://github.com/mlilback/asyncapi-rust",
"versions_count": 6,
"total_downloads": 52509,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 14619,
"first_published_at": "2025-11-06T17:25:41.336099Z",
"latest_published_at": "2026-07-24T13:41:28.390127Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
},
{
"name": "asyncapi-rust-models",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"asyncapi",
"codegen",
"documentation",
"grpc",
"websocket",
"development-tools",
"api-bindings",
"web-programming",
"asynchronous"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/asyncapi-rust-models",
"is_deprecated": false,
"latest_version": "0.5.0",
"repository_url": "https://github.com/mlilback/asyncapi-rust",
"versions_count": 6,
"total_downloads": 52658,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 14638,
"first_published_at": "2025-11-06T17:23:23.873702Z",
"latest_published_at": "2026-07-24T13:40:54.897287Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
},
{
"name": "asyncapi-rust-codegen",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"asyncapi",
"codegen",
"documentation",
"grpc",
"websocket",
"development-tools",
"api-bindings",
"web-programming",
"asynchronous"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/asyncapi-rust-codegen",
"is_deprecated": false,
"latest_version": "0.5.0",
"repository_url": "https://github.com/mlilback/asyncapi-rust",
"versions_count": 6,
"total_downloads": 52663,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 14636,
"first_published_at": "2025-11-06T17:23:33.568204Z",
"latest_published_at": "2026-07-24T13:41:12.389176Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
}
]
},
"popularity": {
"forks": 2,
"stars": 16,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2025-12-26",
"count": 1
},
{
"date": "2026-06-25",
"count": 1
}
],
"complete": true,
"collected": 2,
"total_forks": 2
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"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",
"asyncapi-rust-codegen/Cargo.toml",
"asyncapi-rust-models/Cargo.toml",
"asyncapi-rust/Cargo.toml"
],
"largest_source_bytes": 43443,
"source_files_sampled": 20,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml",
"asyncapi-rust-codegen/Cargo.toml",
"asyncapi-rust-models/Cargo.toml",
"asyncapi-rust/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": "syn",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "quote",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "proc-macro2",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "serde",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "serde_json",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "schemars",
"manifest": "asyncapi-rust-codegen/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "serde",
"manifest": "asyncapi-rust-models/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "serde_json",
"manifest": "asyncapi-rust-models/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "indexmap",
"manifest": "asyncapi-rust-models/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "asyncapi-rust-codegen",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.5.0"
},
{
"name": "asyncapi-rust-models",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.5.0"
},
{
"name": "serde",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "serde_json",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "schemars",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "indexmap",
"manifest": "asyncapi-rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
}
],
"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": 1,
"open_issues": 1,
"closed_ratio": 0.923,
"closed_issues": 12,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "mlilback",
"commits": 51,
"avatar_url": "https://avatars.githubusercontent.com/u/719661?v=4"
},
{
"type": "User",
"login": "pureions",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/254468674?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.981
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.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": 1,
"reason": "branch protection is not maximal on development and all 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 1 merged PRs checked by a CI test -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 1/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 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": "22 commit(s) and 9 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": null,
"reason": "no releases found",
"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": "2679b90cf59f63078b43d5dcb2b387a4eb081a55",
"ran_at": "2026-07-25T18:51:20Z",
"aggregate_score": 3.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-24T13:29:31Z",
"oldest_open_prs": [
{
"number": 3,
"created_at": "2025-12-26T14:49:30Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-07-23T23:48:43Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 13,
"created_at": "2026-07-14T15:19:26Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/mlilback/asyncapi-rust",
"host": "github.com",
"name": "asyncapi-rust",
"owner": "mlilback"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"security": 40,
"vitality": 78,
"community": 57,
"governance": 58,
"engineering": 59
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 78,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"commits_last_year": 52,
"human_commit_share": 1,
"days_since_last_push": 1,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "52 commits in the last year",
"points": 15.5,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 52
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "22 commit(s) and 9 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 9,
"latest_release_tag": "v0.5.0",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 32.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "9 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 9
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~32.5 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 32.5
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 1,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 1 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 1
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 57,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 19,
"inputs": {
"forks": 2,
"stars": 16,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "16 stars",
"points": 19.1,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 16
}
}
],
"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": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 85,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"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": "good",
"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": 77,
"inputs": {
"packages": [
"asyncapi-rust",
"asyncapi-rust-models",
"asyncapi-rust-codegen"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 157830,
"monthly_downloads": 43893
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "43,893 downloads/month across crates",
"points": 61.9,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 43893,
"ecosystems": "crates"
}
}
],
"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": 58,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 15,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.981
},
"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 98% of commits",
"points": 0.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 98
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 81,
"inputs": {
"merged_prs": 1,
"open_issues": 1,
"closed_issues": 12,
"issue_closed_ratio": 0.923,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "92% of issues closed",
"points": 43.2,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 92
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "1/1 decided PRs merged",
"points": 38.2,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 1,
"decided": 1
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 52,
"inputs": {
"followers": 11,
"owner_type": "User",
"is_verified": null,
"owner_login": "mlilback",
"public_repos": 36,
"account_age_days": 5585
},
"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": "11 followers of mlilback",
"points": 7.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 11,
"login": "mlilback"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "36 public repos, account ~15 yr old",
"points": 23.4,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 36
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"asyncapi-rust",
"asyncapi-rust-models",
"asyncapi-rust-codegen"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 1
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "3 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 3,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "6 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 6
}
}
],
"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": 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 1 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": 40,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 40,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.9
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection is not maximal on development and all release branches",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 1 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/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no 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": "22 commit(s) and 9 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": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "moderate",
"name": "AI Readiness",
"value": 55,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "52 of 52 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 52,
"sampled": 52
}
}
],
"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.519,
"toolchain_manifests": [
"Cargo.toml",
"asyncapi-rust-codegen/Cargo.toml",
"asyncapi-rust-models/Cargo.toml",
"asyncapi-rust/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, asyncapi-rust-codegen/Cargo.toml, asyncapi-rust-models/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, asyncapi-rust-codegen/Cargo.toml, asyncapi-rust-models/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": "27 of the last 52 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 27,
"sampled": 52
}
}
],
"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": 43443,
"source_files_sampled": 20,
"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/20 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 20,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-25T18:51:27.087942Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/mlilback/asyncapi-rust.svg",
"full_name": "mlilback/asyncapi-rust",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}