Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 2277,
"has_wiki": true,
"homepage": null,
"languages": {
"C": 48000,
"Ruby": 114736,
"Shell": 131,
"Dockerfile": 1417
},
"pushed_at": "2026-08-01T15:23:20Z",
"created_at": "2017-11-21T11:19:59Z",
"owner_type": "User",
"updated_at": "2026-08-01T14:27:49Z",
"description": "A Ruby implementation of the Noise Protocol framework(http://noiseprotocol.org/).",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "master",
"license_spdx_raw": null,
"primary_language": "Ruby",
"significant_languages": [
"Ruby",
"C"
]
},
"owner": {
"blog": "https://twitter.com/H_Yamaguchi",
"name": "Yamaguchi",
"type": "User",
"login": "Yamaguchi",
"company": "chaintope.com",
"location": "Fukuoka, Japan",
"followers": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/220267?v=4",
"created_at": "2010-03-11T01:16:05Z",
"is_verified": null,
"public_repos": 68,
"account_age_days": 5987
},
"license": {
"state": "absent",
"spdx_id": null,
"raw_spdx": null,
"file_present": false,
"scorecard_found": false,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.12.0",
"kind": "minor",
"published_at": "2026-08-01T15:24:36Z"
}
],
"recent_commits": [
{
"oid": "9ca346fd3d5cf77a79150f766ca8aff008078f7f",
"body": null,
"is_bot": false,
"headline": "Bump to 0.12.0",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T14:27:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "221692ef279b8e14a305126a8077a84ce37b59c2",
"body": "feat: implement the 448 DH function with OpenSSL X448",
"is_bot": false,
"headline": "Merge pull request #19 from Yamaguchi/feat/openssl_x448",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T14:19:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "918862d38bf6969ff8b87809a64d3c8724a8fd5c",
"body": "- Ruby 3.0 ships openssl 2.2 as a default gem, which has no\n OpenSSL::PKey.new_raw_private_key, so the 448 DH function raised NoMethodError there\n- Declare openssl >= 3.0 as a runtime dependency instead of relying on the bundled version",
"is_bot": false,
"headline": "fix: require openssl 3.0 for the raw key API",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T13:56:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac3572ead1e3f25accd409c6593426cdc9f3789d",
"body": "- Drop the ed448 gem and libgoldilocks in favour of OpenSSL's raw key API\n- Remove the bundled x86_64 libgoldilocks binaries and their spec_helper setup\n- Translate PKeyError for a bad public key into InvalidPublicKeyError, as the other DH functions do\n- Let a malformed private key keep propagating as PKeyError rather than blaming the peer\n- 448 specs now run natively on arm64, cutting failures there from 608 to 6",
"is_bot": false,
"headline": "feat: implement the 448 DH function with OpenSSL X448",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T12:13:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4e3d04fe1c9122ef3d5e5f0351f0b36526136db",
"body": "fix: reject one-way pattern misuse with NoiseHandshakeError",
"is_bot": false,
"headline": "Merge pull request #7 from Yamaguchi/fix/one_way_pattern_misuse",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T06:00:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b10eb57c4e16f003c22f9b76c113376a33f1d5c3",
"body": "- master already rejects one-way pattern misuse through Base#transport_cipher_state, so the conflicting encrypt/decrypt guards and the ONE_WAY_* constants are dropped in favour of it\n- Keep the spec that the initiator of Noise_N can still send transport messages, and fold the responder encrypt case into the existing one-way example",
"is_bot": false,
"headline": "Merge master into fix/one_way_pattern_misuse",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T05:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "160075613bafdd1c1684b4a4e3117ca6d15917ae",
"body": "fix: enforce the 65535 byte message limit on transport messages",
"is_bot": false,
"headline": "Merge pull request #9 from Yamaguchi/fix/transport_message_length",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-08-01T03:51:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "975cd9bc6e11021895acad436b4c061cf0d2bfea",
"body": "- The Noise spec caps every message at 65535 bytes, but encrypt and decrypt checked nothing\n- encrypt caps the plaintext at 65519 bytes: the limit less the 16 byte authentication tag\n- decrypt rejects before touching the CipherState, so an over-long message leaves n unchanged\n- Add MessageTooLongError so a caller can tell bad framing from a failed authentication",
"is_bot": false,
"headline": "fix: enforce the 65535 byte message limit on transport messages",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T17:36:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f3d06e2622f76562a3a8be4bd2cc23458ffc1c1",
"body": "Raise NoisePSKError when psks were never set",
"is_bot": false,
"headline": "Merge pull request #5 from Yamaguchi/fix/psk-not-set",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T17:27:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cd55f96aa655c7651562040d1dfbe230a5c8ac0",
"body": "fix: report an invalid public key the same way in every DH function",
"is_bot": false,
"headline": "Merge pull request #8 from Yamaguchi/fix/invalid_public_key_error",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:50:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5322ca49bcc54e0d270e190811156641337b9409",
"body": "feat: expose transport nonce and rekey on Connection",
"is_bot": false,
"headline": "Merge pull request #6 from Yamaguchi/fix/nonce_and_rekey_api",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:48:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ff5759fd20ef3838e0078efce0c420caac5cb1d",
"body": "Peer-supplied public keys leaked backend-specific errors: ED25519 let\nRbNaCl::CryptoError and RbNaCl::LengthError through and ED448 let a plain\nRuntimeError through, while only Secp256k1 raised InvalidPublicKeyError.\n\n- Translate the RbNaCl and libgoldilocks errors to InvalidPublicKeyError\n- Reject \n[…]\nunctions\n- Check the length first so an error about the private key stays intact\n- Name the compressed point length Secp256k1::DHLEN\n- Cover degenerate, low-order and missized public keys in the specs",
"is_bot": false,
"headline": "fix: report an invalid public key the same way in every DH function",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:46:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "918de2b296fd40cc58f49349a78c672715584efa",
"body": "- Add encryption_nonce/decryption_nonce readers and writers to Connection\n- Add rekey_encryption/rekey_decryption to Connection\n- Reject a nonce outside the unsigned 64-bit range with InvalidNonceError\n- Raise NoiseHandshakeError for the direction a one-way pattern cannot use\n- Document out-of-order receiving and rekey in README",
"is_bot": false,
"headline": "feat: expose transport nonce and rekey on Connection",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:36:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85a61acbd5036fc6e74ee2a0c2ba377cd006327d",
"body": "- A one-way pattern leaves the initiator without cipher_state_decrypt and the responder without cipher_state_encrypt, so encrypt/decrypt on the wrong side raised NoMethodError on nil\n- Connection::Base#encrypt and #decrypt now detect the missing cipher state and raise NoiseHandshakeError\n- Define ONE_WAY_SEND_ERROR and ONE_WAY_RECEIVE_ERROR so the message names the actual misuse\n- Cover the supported direction and both misuse cases with Noise_N specs in connection_spec.rb",
"is_bot": false,
"headline": "fix: reject one-way pattern misuse with NoiseHandshakeError",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:36:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4831990f6783135edf57c3c0ace036d8752b86a",
"body": "A psk pattern needs Connection#psks= to be called, but nothing sets the\nivar otherwise, so start_handshake on a connection whose psks are still\nnil died with `undefined method 'any?' for nil` from validate_psk!\nrather than the NoisePSKError the caller can act on.\n\nThe three psk failures were also indistinguishable from one another,\nsince all of them raised NoisePSKError with no message. Say which one\nhappened.",
"is_bot": false,
"headline": "Raise NoisePSKError when psks were never set",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:32:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "497a221f38e48b2d85d96e76f412d8ce57edfa82",
"body": "Fix protocol bugs found in review, and bump to 0.11.0",
"is_bot": false,
"headline": "Merge pull request #4 from Yamaguchi/fix/review-0.11.0",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:10:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f7797ef6c7cea22281335415c772f25703ff9e7",
"body": "The openssl gem shipped with Ruby 3.0 (2.2.2) raises\n`ArgumentError: data must not be empty` from Cipher#update, so any\nAESGCM message with a zero-length payload failed there — including the\n`write_message(\"\")` in the README's own example. Ruby 3.1 and later ship\nopenssl 3.x, which accepts it, which\n[…]\n vectors, whose payloads are never empty, never\ndid.\n\nSkip the update call for empty input and go straight to final plus the\ntag. Verified against ruby:3.0 in the container: 1990 examples, 0\nfailures.",
"is_bot": false,
"headline": "Let AES-GCM encrypt and decrypt an empty payload",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T16:08:57Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "254f6dbfa7b7242ce5e2ec4de7e22577afcfaf24",
"body": "Fixes ChaChaPoly#rekey, keypair validation for deferred patterns, the\npsk index bound and the BLAKE3 lengths, and validates message lengths\nand protocol names.\n\nBreaking: String#htb, String#bth and Hash#stringify_keys are no longer\ndefined on the core classes; the hex helpers moved to the\nNoise::Utils::HexString refinement. Connection::Base#valid_keypairs? is\nnow #missing_keypairs?, and ed448 is no longer a runtime dependency.",
"is_bot": false,
"headline": "Bump to 0.11.0",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T15:24:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31c4bcdf986e3ed872ca07e28039e2f051e9e621",
"body": "The lint job still ran on 3.0 while .ruby-version says 3.3.5, and rubocop\nprinted `Metrics/LineLength has the wrong namespace` on every run, so the\n120 column limit was never applied and the suite only kept to it because\nthat happens to be the modern default for Layout/LineLength.\n\nTargetRubyVersion stays at 3.0, which is what the gemspec supports.\n\n3.4 is added to the test matrix after running the whole suite against\nruby:3.4 in the container: 1986 examples, 0 failures.",
"is_bot": false,
"headline": "Lint on 3.3 and test on 3.4",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T15:19:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f81101455b75b38b1668782f0686302aba7f17e",
"body": "The prebuilt libsecp256k1 and libgoldilocks under spec/lib are x86_64,\nso on an arm64 host 605 of 1986 examples fail with dlopen architecture\nerrors and nothing to do with the code. Pinning the image to\nlinux/amd64 mirrors the CI runner and the whole suite passes.\n\nBeyond the platform the image need\n[…]\nin BUNDLE_PATH outside /work so mounting the working tree does not\nhide them.\n\nVerified: `docker run --rm -v \"$PWD\":/work noise-dev` reports\n1986 examples, 0 failures, and rubocop reports no offenses.",
"is_bot": false,
"headline": "Add a container that can actually run the suite",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T15:11:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8e8efc97a466b6f1b2d6e4b6cecc90553bb36515",
"body": "ed448 was a runtime dependency while blake3 and secp256k1-ruby were\ndevelopment dependencies, even though all three back an optional\nfunction, are loaded with the same optional require, and need a system\nlibrary that cannot be installed as a gem. Installing the gem pulled in\ned448 whether or not the\n[…]\n448 in the README alongside the other two.\n\nThe Gemfile listed secp256k1-ruby and blake3 again; the gemspec\ndirective already brings in the development dependencies, so those lines\nwere doing nothing.",
"is_bot": false,
"headline": "Treat every optional backend the same way",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T14:55:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ae6a560fc6eb8471fe3b204dac61087554556d9",
"body": "Requiring the gem defined String#htb, String#bth and Hash#stringify_keys\non the core classes for the whole process. stringify_keys in particular\nis the name ActiveSupport uses, with different semantics for nested\nhashes.\n\nHash#stringify_keys existed only to turn three symbol-keyed constants in\nProto\n[…]\nand delete it.\n\nThe hex helpers become the Noise::Utils::HexString refinement. Specs opt\nin with `using`; the two Symbol#to_proc call sites need explicit blocks\nbecause &:sym does not see refinements.",
"is_bot": false,
"headline": "Stop adding methods to String and Hash globally",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T14:46:33Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "df442e14f2100797fb76f9ca0fe57a27d5f7fc18",
"body": "The raw binary public key was passed straight through as the exception\nmessage, so the error printed as unreadable bytes. Format it as hex and\nexpose the key through a reader instead, since it was already stored but\nunreachable.\n\nThe rescue in Secp256k1#dh referenced ::Secp256k1::AssertError, which\n\n[…]\nised NameError of its own when the gem had only partly loaded and\nmasked the original failure. Building a Secp256k1 now fails up front in\nthat case, so the rescue only runs against a fully loaded gem.",
"is_bot": false,
"headline": "Give InvalidPublicKeyError a readable message",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T14:31:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "001901c2dc5c8e536bd2882f3b16bab620376879",
"body": "`require_force` logged the LoadError and carried on, so a missing native\nlibrary only showed up much later as something unrelated: with an\nx86_64 libgoldilocks on an arm64 machine the suite reported `undefined\nmethod 'goldilocks_x448' for module Ed448` and said nothing about the\narchitecture.\n\nNoise\n[…]\nnce to Ed448::X448::X448_PRIVATE_BYTES\nso the file still loads when the gem is absent entirely, and move\nrequire_force off Object, where any library defining the same name would\nhave collided with it.",
"is_bot": false,
"headline": "Report a failed optional dependency where it is used",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T14:21:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "81f968a676299a5312b98c8e5f9c36d8fef5d42f",
"body": "BLAKE3 produces a 32 byte digest over 64 byte blocks, but the class\ndeclared 64 and 128, borrowed from BLAKE2b. SymmetricState pads the\nprotocol name to HASHLEN and Blake3HMAC pads its key to BLOCKLEN, so\nboth were wrong and no BLAKE3 handshake could interoperate.\n\nNot exercised by the suite: the blake3 gem needs a native extension that\nis not built here, and BLAKE3 is an extension to the Noise spec with no\npublished test vectors.",
"is_bot": false,
"headline": "Correct the BLAKE3 hash and block lengths",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:22:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b4f44fecd8527e8251e26e41670e9b9c4a0593c",
"body": "The if/elsif chain had no else, so an unrecognised digest name returned\nnil and hkdf went on to derive keys from it.",
"is_bot": false,
"headline": "Reject an unsupported digest in hmac_hash",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:21:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0dbd6f691ca1e57a531fba646a5c26cd4cbfc664",
"body": "The `cipher: AesGcm.new` default could never work: AesGcm is not\nresolvable from Noise::State, so evaluating it raises NameError. Both\ncall sites already pass the protocol's cipher, so make the argument\nrequired rather than leave a default that only fails.",
"is_bot": false,
"headline": "Require the cipher when building a CipherState",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:20:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d23e3207b52690cbb417cbb852c72cadca12dda",
"body": "The predicate returned true when a required keypair was absent, so\n`raise NoiseValidationError if valid_keypairs?` read as the opposite of\nwhat it did.",
"is_bot": false,
"headline": "Rename valid_keypairs? to missing_keypairs?",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:15:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b13b1a71b037a13356eefc324a2f4e6dbf0d0064",
"body": "Connection::Base decided the handshake was over by testing the truthiness\nof whatever HandshakeState#write_message happened to end on: the value of\n`@symmetric_state.split if @message_patterns.empty?`, which is an array\nof cipher states or nil. Any future statement added at the end of those\nmethods would have silently changed the meaning.\n\nBoth methods now end in a named `finish_handshake` that returns a\nboolean, and Base assigns it directly.",
"is_bot": false,
"headline": "Return explicitly whether the handshake is finished",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:14:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52e60a137b21ebaa285b7de7cd0f0a43de987936",
"body": "`tokens.dup` only copied the outer array, so every HandshakeState built\nfrom the same Protocol shared the per-message token arrays with the\nPattern. Nothing mutates them today, which is the only reason this was\nnot already a bug, but the handshake consumes message_patterns and has\nno business reaching into shared state.",
"is_bot": false,
"headline": "Copy message patterns deeply into the handshake state",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:13:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fca55a30efbb4b7640a9d036eee06379c341872c",
"body": "`@re ||= re` kept a previously set re and discarded the one just read,\nwhile still consuming its bytes from the message and mixing the stale\nkey into the state. The Noise spec says to set re to the next DHLEN\nbytes unconditionally.\n\nThe guard was only ever harmless because re is nil at that point in\nevery pattern, including the fallback ones; the 25519 XXfallback vectors\nstill pass.",
"is_bot": false,
"headline": "Always store the ephemeral key read off the wire",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:13:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2633802d24f104c7419d21e074b5ded56b400dd7",
"body": "The commented-out `initialize_next_message` call read as leftover\ndebris. Resetting it would be wrong: a fallback swaps the roles, so the\nside that wrote the aborted message has to read next and the side that\nfailed to read it has to write next, which is the state both sides\nalready carry. Drop the dead line and say so.",
"is_bot": false,
"headline": "Explain why fallback keeps the pending message direction",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:11:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00ecc7e285dd2a43e48ef5fcf697b99da3b41644",
"body": "`format('%16x', n)` pads with spaces, not zeros. It happened to produce\nthe right bytes only because `pack('H*')` maps a space to a zero nibble,\nwhich is an accident of the implementation rather than anything the\nformat string expresses.\n\nPack the nonce directly: big-endian for AES-GCM, little-endia\n[…]\nfor\nChaCha20-Poly1305. Verified byte-for-byte identical, including the\nresulting encoding, for 0, 1, 255, 2**32, 2**64-1 and an arbitrary\nvalue.\n\nThis also drops the last use of String#htb inside lib.",
"is_bot": false,
"headline": "Build cipher nonces with pack instead of a space-padded format string",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:09:47Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5973a28b191f7ef2477b062999662d2397664b7d",
"body": "These are local agent instruction files, not part of the gem.",
"is_bot": false,
"headline": "Ignore AGENTS.md and CLAUDE.md",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T13:06:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9789b60a6bf43f4cee51f24c5dfb2747b01c5d79",
"body": "A malformed name leaked Ruby's own errors instead of the library's:\n`Protocol.create('Noise')` raised NoMethodError from `nil.scan`, and an\nunknown pattern raised `NameError: uninitialized constant\nNoise::PatternZZ`.\n\n- Protocol.create requires the name to have all five components.\n- Pattern.create \n[…]\nconst_get.\n- Modifier.parse matches psk indexes with an anchored regex, so 'pskfoo'\n is rejected rather than silently read as psk0.\n\nAll of these errors now carry the offending name in their message.",
"is_bot": false,
"headline": "Raise ProtocolNameError for every malformed protocol name",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T12:57:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "491f7eb85f0516c0edb94bf5128385754ded570d",
"body": "Nothing checked how long a message was before slicing it apart, so a\ntruncated handshake message surfaced as `TypeError: no implicit\nconversion of nil into String` from SymmetricState#mix_hash, and a\ntruncated transport message made the ciphers slice a nil authentication\ntag out of it.\n\n- HandshakeS\n[…]\nCipherState#decrypt_with_ad rejects a ciphertext shorter than the tag.\n- Connection::Base enforces the 65535 byte cap the Noise spec puts on a\n handshake message, on both the read and the write side.",
"is_bot": false,
"headline": "Validate the length of incoming messages",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T12:53:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fc589bd97ae41c1878c264d28331aa8a097d0a95",
"body": "The bound was `index / 2 > @tokens.size`, which let an index up to twice\nthe message count through. `Noise_NNpsk3_...` then hit\n`@tokens[index - 1] << Token::PSK` on nil and raised NoMethodError\ninstead of PSKValueError.\n\npsk0 prepends to the first message and pskN appends to the Nth, so the\nlargest valid index is the number of messages.",
"is_bot": false,
"headline": "Fix out-of-range psk index passing validation",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T12:44:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02b1313cef6289e44e0363128ab08cb28dce347a",
"body": "`required_keypairs_of_initiator` / `_of_responder` inspected single\ncharacters of the pattern name, so every deferred pattern carrying a '1'\nin that position was misjudged: X1K, X1K1, I1K and I1K1 dropped the\ninitiator's :rs requirement, and X1X, K1K and NX1 dropped :s.\n\nValidation then passed with \n[…]\ns static public key is pre-shared or sent during\nthe handshake, and needs the peer's static key when that key is\npre-shared. Deferred patterns now agree with the fundamental patterns\nthey derive from.",
"is_bot": false,
"headline": "Derive required keypairs from the pattern instead of its name",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T12:42:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2af4bcb1dfe241a32145ff798427fb6730e13c94",
"body": "`[0..32]` is an inclusive range, so REKEY produced 33 bytes instead of\nthe 32 bytes the Noise spec requires. AesGcm#rekey already used the\ncorrect exclusive range.\n\nAdd rekey specs for both ciphers.",
"is_bot": false,
"headline": "Fix ChaChaPoly#rekey returning a 33-byte key",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2026-07-31T12:35:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9642e599be78450e83df634566e6bfc9700fadc4",
"body": "Update Ruby version to 3.3",
"is_bot": false,
"headline": "Merge pull request #3 from Yamaguchi/ruby_3.3",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2025-12-21T11:36:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2609a3d26a79a52b3d046da93b447bd7b94d3c82",
"body": null,
"is_bot": false,
"headline": "Add support for ruby 3.3",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2024-12-20T06:04:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21d6fd0d05099872782f785140d2186ddb69342b",
"body": null,
"is_bot": false,
"headline": "Ruby version >3.0",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2023-07-10T04:39:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed6d1ce237fa8d7205cf2c48f847187c63e6ee06",
"body": null,
"is_bot": false,
"headline": "Change supported ruby version to 2.7.6",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2022-08-27T08:32:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "724e7d0cfd5a94726fc15bdf2b34530b9b1d16b5",
"body": null,
"is_bot": false,
"headline": "Bump to 0.10.1",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2022-08-27T08:22:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e757e551dac2319ab6a66ba285cc59636c1d697",
"body": null,
"is_bot": false,
"headline": "'The set-env command is disabled.'",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2022-08-27T08:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f137220487ef2977a80595fa55764ceb933abb3",
"body": null,
"is_bot": false,
"headline": "Fix undefined method error",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2022-08-27T08:01:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f6ac07c9edd2b0c0c664a8fea976d53adaf57df",
"body": null,
"is_bot": false,
"headline": "Disable travis CI. (and use Github actions)",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-07-25T06:54:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcc27a044cfc05677047a0a4be9de364ec61ca14",
"body": null,
"is_bot": false,
"headline": "Enable CI build for Ed448 functions",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-07-25T06:22:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69badea06e7cd31d9e6b2ae1a8dc2f82310b94ee",
"body": null,
"is_bot": false,
"headline": "Enable CI test for secp256k1 functions",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-07-25T06:22:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c25a220e3d56380d0e17810049ba5dda9c891ee2",
"body": null,
"is_bot": false,
"headline": "Update bundler",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-07-25T01:55:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cae2e66dd8c2cdcee1bc1d18869a7f4ee7bac9b1",
"body": null,
"is_bot": false,
"headline": "Github action",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-07-25T01:45:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5bb3f6bd396b51c9383678ce8a2354d7ebe9f919",
"body": "https://github.com/advisories/GHSA-jppv-gw3r-w3q8",
"is_bot": false,
"headline": "Update noise.gemspec",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-03-01T07:54:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6905c0c0cd914348f4722cb9cf307f09e68265d4",
"body": null,
"is_bot": false,
"headline": "Refactor: Define Token classes",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-01-19T11:16:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "23e486961addacf72e106a1603c843f5315f3d0c",
"body": null,
"is_bot": false,
"headline": "Fix rubocop warnings",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-01-19T09:05:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2619213888d080c493dd22c095a43b8c9796d8c",
"body": null,
"is_bot": false,
"headline": "bump 0.10.0",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-01-18T10:56:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2719330d8941eb2d1882e1ecefffc2064d2e59e9",
"body": null,
"is_bot": false,
"headline": "Support BLAKE3 hash function",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2020-01-18T10:56:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "190415f953ba7b46cc66446af58fc9b39899a528",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-09-27T08:48:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cca3f3751e462eee8bdc46c8bd0c88d3ecb408d9",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-10T09:49:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3499b03cf13e61ad8f5caac68682523172566bd6",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-10T09:47:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e37b639f4d9ee8178d3cdcbb6fff2ee424b6b31e",
"body": null,
"is_bot": false,
"headline": "Update README. Add list of supported features",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-10T09:38:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7d674f9335c54bb77a75be77a13d5e51d7d7bf1",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83bc03b7387ea57f9f05779d59f8520fcff5e0d9",
"body": null,
"is_bot": false,
"headline": "bump 0.9.4",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6990d6b07900d8975cc9f41f0184d1bcf816780",
"body": null,
"is_bot": false,
"headline": "Suppress rubocop warnings",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7eb883324094a381a9a2220f10bd989d6572accc",
"body": null,
"is_bot": false,
"headline": "Add Edwards448 functions",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6ef14eedd6532cdc5368611de5bef605ab5f23b",
"body": null,
"is_bot": false,
"headline": "Add ed448 dependency",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8348f4ec21ce606d6822549a3431d24ba12e717d",
"body": null,
"is_bot": false,
"headline": "Fallback pattern should cause Noise::Exceptions::DecryptError",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-07-08T07:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b9b31fd6fa2ea898dd2d15c548ce7e8337b7833",
"body": null,
"is_bot": false,
"headline": "bump 0.8.4",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-06-24T06:34:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b554f6829669fdba94b36a1a20f905abed5af577",
"body": null,
"is_bot": false,
"headline": "Add fallback modifier support",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-06-24T06:33:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "873ba54feadd659447c81fff87a529a46d6742a1",
"body": "…cation",
"is_bot": false,
"headline": "Ignore test case NoisePSK, as the prefix 'NoisePSK' is out of specifi…",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-06-21T08:53:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "836269604a1bea8b6139dc34079370d07f0af42e",
"body": null,
"is_bot": false,
"headline": "Add Deferred Handshake Patterns support",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-06-21T07:06:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93201f69fcadc09c9cda42f388e0efa98db22a9b",
"body": null,
"is_bot": false,
"headline": "Update test vectors.(Some specs fails in new test pattern",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-06-21T05:00:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0082e1282516ecb70242f916e48c0e43048178ea",
"body": null,
"is_bot": false,
"headline": "Rename mehtod name Pattern#one_way -> Pattern#one_way?",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-05-09T09:17:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2a86e6ad26323e6d772bcbd3c8ab87cf912a16f",
"body": null,
"is_bot": false,
"headline": "Calculate length of handshake messages",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-05-09T08:53:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba6fa5f0b55278ae9e9cacf21a28ca8c572627b0",
"body": null,
"is_bot": false,
"headline": "Implement #rekey(k) methods for cipher class",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-29T06:03:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59afd13d933c68b72136fba476a7503a9380267d",
"body": null,
"is_bot": false,
"headline": "bump 0.7.4",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T09:57:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1be2272dc69bec775379079dc611de0d7bcaba3",
"body": null,
"is_bot": false,
"headline": "Expose s and rs, for the usecases which need them",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T09:56:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fa31a6ff4536af3064d4d5abb8de5ed5ca8a2b6",
"body": null,
"is_bot": false,
"headline": "Fix spec failure",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T09:27:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a422334cfd64cc35d3fe41f1c2f72c25cf2c246e",
"body": null,
"is_bot": false,
"headline": "bump 0.7.3",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T09:23:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfeb926b2cb63fac692e6f8dd13aacd57863235b",
"body": null,
"is_bot": false,
"headline": "Add usage in README.md",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T09:23:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08662e965d2ab39c6e27199ba0342c3fe6a1b233",
"body": null,
"is_bot": false,
"headline": "bump 0.7.2",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T07:25:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a29d972f90e568a27d9fe7081c5aef23f232d92f",
"body": null,
"is_bot": false,
"headline": "Suppress rubocop warnings",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T07:25:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eeae7c18ac2a29b73d5bd21de09927c6d94f288e",
"body": null,
"is_bot": false,
"headline": "Fix for psk mode",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T07:02:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f252a701de1a6c47dc06cc965ca790e5f9b71d2",
"body": null,
"is_bot": false,
"headline": "Define Initiator class and Responder class",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-28T06:58:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc4b4516f720b9532f198fa238f19f19ec88a25c",
"body": null,
"is_bot": false,
"headline": "Noise::Protocol should not have state, Noise::Connection should have.",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-27T02:32:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c05dcb4a80151c4210da5e231e5ce318128e6ab7",
"body": null,
"is_bot": false,
"headline": "Remove unused code",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-26T10:40:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "302cce87178326a6970b08c9946852a4608fb0a5",
"body": null,
"is_bot": false,
"headline": "Set keypairs on initializing Protocol object",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-26T10:22:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bee7e2f0390737f6e91881fbf64146795cea091c",
"body": null,
"is_bot": false,
"headline": "Change the type of local key to Noise::Key",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-26T09:40:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e33efd3f64db28c5cb99e32feff757ac92fce5f",
"body": null,
"is_bot": false,
"headline": "Change remote key type to String",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-26T09:30:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4b06603ddf0ec5a75269c664640b09e381b356c",
"body": null,
"is_bot": false,
"headline": "Add method comment",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-26T07:40:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f735661975e1cb0606c8233ad21eb7411cc002a",
"body": null,
"is_bot": false,
"headline": "bump 0.7.1",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T05:53:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "489ef2d4c7e03b64df584d223855e262015aaf0c",
"body": null,
"is_bot": false,
"headline": "Ignore LoadError on secp256k1",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T05:53:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7639cc8981e78615cb069b67e57d8166a2ed0d50",
"body": "Change counter 't' from an array of int32 to integer",
"is_bot": false,
"headline": "Refactor blake2s hash function",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T05:43:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d33bf885eba282b42c37064a69c6bb0aa11ad8de",
"body": null,
"is_bot": false,
"headline": "bump 0.7.0",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T04:34:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a4d9fd1d6f99f36183fc5d6977c364eceed4447",
"body": null,
"is_bot": false,
"headline": "Make secp256k1 optional",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T04:33:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "106ca46ce8d0ed176d2a29af1f846ee41e52dbcf",
"body": "…stvectors/blake2s-kat.txt",
"is_bot": false,
"headline": "Add Test Vectors from https://github.com/BLAKE2/BLAKE2/blob/master/te…",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T03:44:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4d60b2fe6c165fbdcebd4b5a67c0ea1ed80cbea",
"body": null,
"is_bot": false,
"headline": "Fix indentation",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T03:26:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a62334f30d62774c8c5e9a06e4f890c8322e0c6",
"body": null,
"is_bot": false,
"headline": "Simplify methods for blake2s.",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-19T03:25:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95cf5d777c81d73f7fcf39baf9416582ddd39b09",
"body": null,
"is_bot": false,
"headline": "Blake2s support",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2019-04-18T12:26:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f07adec1ad04bc1e6f002009d4e5164f9cdc4e23",
"body": null,
"is_bot": false,
"headline": "Update CODE_OF_CONDUCT.md",
"author_name": "Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2018-12-06T07:07:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "006bd493b450ddd3bc211cd6050829cd7ca58752",
"body": null,
"is_bot": false,
"headline": "bump 0.6.3",
"author_name": "Hajime Yamaguchi",
"author_login": "Yamaguchi",
"committed_at": "2018-11-15T07:58:02Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 33,
"latest_release_at": "2026-08-01T15:24:36Z",
"latest_release_tag": "v0.12.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 2,
"days_since_latest_release": 0,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": false,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "noise-ruby",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/noise-ruby",
"is_deprecated": false,
"latest_version": "0.12.0",
"repository_url": "https://github.com/Yamaguchi/noise",
"versions_count": 21,
"total_downloads": 39551,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2017-12-05T14:45:32.627000Z",
"latest_published_at": "2026-08-01T15:23:33.104000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 2,
"stars": 12,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2022-03-04",
"count": 1
},
{
"date": "2022-03-25",
"count": 1
}
],
"complete": true,
"collected": 2,
"total_forks": 2
},
"star_history": null,
"open_issues_and_prs": 8
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 35083,
"source_files_sampled": 63,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Gemfile"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"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": 13,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "blake3",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "bundler",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "ecdsa",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "openssl",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rake",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rbnacl",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rspec",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-rspec",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "ruby-hmac",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "secp256k1-ruby",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "simplecov",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "simplecov-json",
"direct": false,
"version": null,
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 13,
"direct_count": 0,
"indirect_count": 13
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 8,
"open_issues": 8,
"closed_ratio": 0.273,
"closed_issues": 3,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Yamaguchi",
"commits": 170,
"avatar_url": "https://avatars.githubusercontent.com/u/220267?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ruby.yml"
],
"has_docs_dir": false,
"linter_configs": [
".rubocop.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 8,
"reason": "binaries present in source code",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "7 out of 7 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 0/8 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": 0,
"reason": "license file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 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": "9ca346fd3d5cf77a79150f766ca8aff008078f7f",
"ran_at": "2026-08-01T15:28:54Z",
"aggregate_score": 3.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-08-01T14:28:21Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-08-01T14:19:37Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 10,
"created_at": "2026-07-31T17:35:19Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 12,
"created_at": "2026-07-31T17:35:30Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 13,
"created_at": "2026-07-31T17:45:16Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 14,
"created_at": "2026-07-31T17:45:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 15,
"created_at": "2026-07-31T17:45:18Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 16,
"created_at": "2026-08-01T04:56:39Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 17,
"created_at": "2026-08-01T05:59:35Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 18,
"created_at": "2026-08-01T08:13:05Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Yamaguchi/noise",
"host": "github.com",
"name": "noise",
"owner": "Yamaguchi"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 53 is calibrated to 54 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 53,
"calibrated": 54,
"calibration": "2026-08-02"
}
}
],
"value": 54,
"inputs": {
"security": 37,
"vitality": 70,
"community": 36,
"governance": 49,
"calibration": "2026-08-02",
"engineering": 70,
"ai_readiness": 37,
"weighted_overall_raw": 53
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 70,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"commits_last_year": 33,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 2
},
"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": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "33 commits in the last year",
"points": 13.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 33
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 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": 84,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v0.12.0",
"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": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"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": "weak",
"name": "Community & Adoption",
"value": 36,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 17,
"inputs": {
"forks": 2,
"stars": 12,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "12 stars",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 12
}
}
],
"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": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "weak",
"name": "Community health",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_readme": true,
"has_license": false,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": true,
"readme_badge_services": [],
"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": "no license file detected",
"points": 0,
"status": "missed",
"details": [
{
"code": "license_absent",
"params": {}
}
],
"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": 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": "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": 60,
"inputs": {
"packages": [
"noise-ruby"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 39551,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "39,551 downloads all-time across rubygems",
"points": 47.8,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 39551,
"ecosystems": "rubygems"
}
}
],
"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": "weak",
"name": "Sustainability & Governance",
"value": 49,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 13,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "weak",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 48,
"inputs": {
"merged_prs": 8,
"open_issues": 8,
"closed_issues": 3,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.273,
"closed_unmerged_prs": 0,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "27% of issues closed",
"points": 11.5,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 27
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "8/8 decided PRs merged",
"points": 30,
"status": "met",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 8,
"decided": 8
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/8 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": 51,
"inputs": {
"followers": 6,
"owner_type": "User",
"is_verified": null,
"owner_login": "Yamaguchi",
"public_repos": 68,
"account_age_days": 5987
},
"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": "6 followers of Yamaguchi",
"points": 6.1,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 6,
"login": "Yamaguchi"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "68 public repos, account ~16 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 68
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"noise-ruby"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on rubygems",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "rubygems"
}
}
],
"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": "21 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 21
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 70,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "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": ".rubocop.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "7 out of 7 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": "weak",
"name": "Security",
"value": 37,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"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": 37,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.7
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "7 out of 7 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 0/8 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 not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 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": "exceptional",
"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"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"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": "weak",
"name": "AI Readiness",
"value": 37,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.38,
"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": "38 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 20.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 38,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "weak",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 43,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": true,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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": ".rubocop.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"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 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Ruby",
"largest_source_bytes": 35083,
"source_files_sampled": 63,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Ruby without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Ruby"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/63 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 63,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"metrics_version": "2.1.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-08-01T15:29:07.700697Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/y/Yamaguchi/noise.svg",
"full_name": "Yamaguchi/noise",
"license_state": "absent",
"license_spdx": null
}