, this made rust skip the\nkeyword-boundary check for literals like '${', so a template `${x}`\ninterpolated in rust b\n[…]\nt. mini-js now\nparses identically across both implementations (all 30 cases), completing\nbyte-identical parsing on the culebra corpus too.\n\nGuarded by spec/tests/extensions/word_boundary_literal.json.",
"is_bot": false,
"headline": "rust-peglib: treat a literal as a word by %word start-match, like cpp",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T02:33:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "601d9048204aa83c4b41159b3f79d60cc81b1549",
"body": "Two cases where rust marked a rule as a non-token that cpp treats as a\ntoken, changing the raw AST (a token leaf vs a node with children):\n- a reference to a macro is not itself a rule for token purposes; recurse\n into the macro's arguments instead;\n- references that appear only inside an and/not predicate do not count.\n\nAcross 146 real culebra source files the two implementations now produce\nbyte-identical raw and optimized ASTs. Guarded by\nspec/tests/core/token_determination.json.",
"is_bot": false,
"headline": "rust-peglib: match cpp is_token determination for macros and predicates",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T02:27:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52c3733c6b3b18347a6baac94f480d06a392230e",
"body": "For a left-recursive rule, cpp-peglib fires enter/leave once per do_parse\ncall (the seed and each grow), while a recursive reference that hits the\nLR memo fires nothing. rust fired enter/leave once at the Holder level\nand let recursive references trace via the memo path, producing a\ndifferent event \n[…]\nrules still trace once in Holder,\n before the packrat check, so cache hits trace like cpp's uncached\n re-parse.\n\nGuarded by the trace_left_recursion group in\nspec/tests/semantic/trace_ordering.json.",
"is_bot": false,
"headline": "rust-peglib: fire enter/leave per LR seed/grow iteration",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T02:07:16Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6c5d05a9c87777b95edabbe917c7feda1f2fbc1c",
"body": "cpp-peglib parses a macro instantiation directly, without pushing a\nsemantic scope or firing the rule's enter/leave hooks — the macro rule\nis transparent and only the expanded body's rules appear in a trace.\nrust fired enter/leave for the macro rule too. Add the early macro path\nin Holder::parse_core to match.\n\nGuarded by spec/tests/semantic/trace_ordering.json.",
"is_bot": false,
"headline": "rust-peglib: macro rules are transparent to enter/leave",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T01:44:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62ca52be59a70af531fc86c2faf76e057573a7e5",
"body": "The `|` dictionary operator binds tighter than sequence and `/`, like\ncpp-peglib (`Dictionary \u003c- Literal ('|' Literal)+` is a primary). It was\nhandled at the expression level instead, which both rejected mixing `|`\nand `/` (`'a' | 'b' / 'c'`) and rejected `'a' 'b' | 'c'`.\n\nMove dictionary collection\n[…]\n| 'b' / 'c'`\nparses as `('a' | 'b') / 'c'` and `'a' 'b' | 'c'` as `'a' ('b' | 'c')`,\nand drop the now-unnecessary mix/literal-only checks.\n\nGuarded by spec/tests/extensions/dictionary_precedence.json.",
"is_bot": false,
"headline": "rust-peglib: parse `|` (dictionary) at the primary level",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T01:34:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5f855d0353e8d14a499645e6711ee34936387d30",
"body": "Five cases where rust-peglib was more permissive than the reference:\n- unknown escape sequences (e.g. `\\z`) are an error instead of silently\n becoming the literal character;\n- reversed character-class ranges (`[z-a]`);\n- unrecognized instructions inside `{ ... }`;\n- more than one leading `~` ignore operator;\n- duplicate `%whitespace` / `%word` definitions.\n\nGuarded by spec/tests/core/grammar_rejections.json.",
"is_bot": false,
"headline": "rust-peglib: reject invalid grammars that cpp-peglib rejects",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T01:27:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b923b16f565c44cf5d81cbce38c5af652407523",
"body": "… parser\n\nAdd a README section for GrammarBlob serialization (serialize_grammar / load_blob,\npeglint --blob) covering fast startup, the structure-only limitation, and the\nunsupported operators.\n\nSync grammar/cpp-peglib.peg with peglib.h's internal meta-grammar: rename the\nerror message keyword to `e\n[…]\nr escape\nset, add the `ast_name` instruction, and drop the redundant BeginCapScope\nalternative in Primary in favor of CapScope.\n\nClaude-Session: https://claude.ai/code/session_017WVG7euqwWKfr2tY3gzu8y",
"is_bot": false,
"headline": "docs: document grammar serialization and sync cpp-peglib.peg with the…",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T01:26:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "09576bbb49f012bd8344e93517fe68e6218e88b8",
"body": "Three divergences in the reported parse error:\n- Trailing input after a full match now reports \"expected end of input\"\n instead of a generic \"syntax error.\" (unless a deeper error was\n recorded past the match end).\n- When a nested attempt fails past the accepted match, its position is\n used for t\n[…]\nion and the\n current rule via set_error_pos, so the message names the unexpected\n token and expected rule instead of a bare \"syntax error.\".\n\nGuarded by spec/tests/error/trailing_and_predicate.json.",
"is_bot": false,
"headline": "rust-peglib: match cpp error reporting for trailing input and lookahead",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:57:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "88de66db9a689f4761d5007ecb5369b2ad3e54a3",
"body": "A rule node should carry a /N choice suffix only when its body is\nchoice-like (PrioritizedChoice or Dictionary, unwrapping a token\nboundary); a choice nested inside a sequence must not leak it. do_parse\nnow resets choice_count/choice after the body parses unless the body is\nchoice-like, mirroring cpp-peglib's Holder.\n\nGuarded by spec/tests/ast/choice_count.json.",
"is_bot": false,
"headline": "rust-peglib: don't leak nested-choice choice_count onto rule AST nodes",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:40:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cdce1c698af37e4d8b85a31c92f905510f794ec",
"body": "Both implementations mishandled escapes that the meta grammar accepts:\n- cpp resolved `\\-` and `\\^` to NUL (resolve_escape_sequence fell through\n to octal parsing, which read no digits).\n- rust resolved `\\f` and `\\v` to the literal letters 'f'/'v' (they hit\n the catch-all arm of parse_escape_char).\n\nAdd the missing cases so `\\-`/`\\^` are literal '-'/'^' and `\\f`/`\\v` are\nU+000C/U+000B in both. Guarded by spec/tests/core/escapes.json.",
"is_bot": false,
"headline": "Fix escaped `\\-` `\\^` `\\f` `\\v` in character classes and literals",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:33:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6834ee60cda132586b2aca9050ab80f144b30dde",
"body": "A grammar whose first rule is a reserved `%` directive (%word,\n%whitespace) wrongly used that directive as the start rule. Skip\n`%`-prefixed names when picking the default start. Long-standing since\n%word was added in 2018.\n\nAdd spec/tests/core/start_rule.json as a regression guard.",
"is_bot": false,
"headline": "Exclude %-directives from default start-rule selection",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:18:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67f344a6dd973c831f66c39bef6d9a7f356bcc6d",
"body": "Add language-independent conformance tests covering AST optimization\nand instructions (spec/tests/ast/) plus Unicode character classes, dot\nmatching, and non-ASCII rule names/literals (spec/tests/unicode/).\nExpected values were generated with cpp-peglib.",
"is_bot": false,
"headline": "spec: migrate AST and Unicode conformance tests from the C++ suite",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:18:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50847b3f881a5e4e4b3c6acb5ee3ed9c1f1f8a61",
"body": "- UTF-8 identifiers: accept non-ASCII (BMP) rule names in the meta\n parser, excluding the cut markers, mirroring cpp's IdentStart.\n- AST instructions: parse `{ no_ast_opt }` and `{ ast_name: X }` and\n apply them (previously the instruction block was discarded).\n- `~` ignore operator in AST mode: w\n[…]\nvalue/tokens, keeping its siblings.\n- harness: use the parser's optimize_ast so no_ast_opt is honored.\n\nStrengthen spec/tests/core/ignore.json with expected_ast assertions\nthat guard the `~` behavior.",
"is_bot": false,
"headline": "rust-peglib: fix parity gaps with cpp-peglib",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-07-01T00:18:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cef913a4c2e09ba2543a9e68188c94fd93238c19",
"body": "Serialize a compiled Grammar to a byte blob and back, so an application can embed a prebuilt blob and skip the meta-parse on startup (deserialize is ~40x faster than load_grammar). Structure only: semantic callbacks are not serialized and are re-applied after load; references resolve by name and fir\n[…]\nser::serialize_grammar()/load_blob(), and a peglint --blob option to emit a blob. Covered by test/test_serialize.cc (18 tests).\n\nClaude-Session: https://claude.ai/code/session_01TonqfjNuon56CkTuSijkof",
"is_bot": false,
"headline": "Add grammar serialization (GrammarBlob) for fast startup",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T21:55:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "646b24caea29e0c836c29fec621060eeea7f462f",
"body": "Add spec test cases covering non-ASCII (CJK and Greek) rule names, filling the previously empty spec/tests/unicode/ directory.\n\nClaude-Session: https://claude.ai/code/session_01TonqfjNuon56CkTuSijkof",
"is_bot": false,
"headline": "Add Unicode identifier conformance tests",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T16:35:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10b9b4123bd82d5c3bf35968ae74a27b3e668b30",
"body": "Vendor the culebra grammar under grammar/ for reference and testing.\n\nClaude-Session: https://claude.ai/code/session_01TonqfjNuon56CkTuSijkof",
"is_bot": false,
"headline": "Add culebra.peg as a reference grammar",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T16:35:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c98721aca0b36b7af0185c0ff52fbc2723844f84",
"body": "The built-in symbol table feature (declare_symbol/check_symbol) was removed in #239 due to fundamental limitations (no packrat support, no way to initialize tables before parsing, no nested scopes). An unreachable instruction handler in peglib.h and the disabled SymbolTableTest cases (guarded by the\n[…]\nates the recommended way to do symbol checking via semantic predicates, and move it out of the dead #ifdef so it actually runs.\n\nClaude-Session: https://claude.ai/code/session_01TonqfjNuon56CkTuSijkof",
"is_bot": false,
"headline": "Remove dead Symbol Table support remnants",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T16:35:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "735d475125934362cf1a511700cdd6cc4c77f932",
"body": "Port of the cpp-peglib change (d73725f). compute_first_set followed\nreferences with only a path cycle-guard and no result cache, so each rule's\nfirst-set was recomputed every time it was referenced -- O(N^2) for grammars\nwith dense cross-references. Add a first-set cache shared across all rules\nand \n[…]\nimary left-factoring, the packrat-filter\ncycle guard) have no rust-peglib counterpart: rust-peglib parses grammar text\nwith a hand-written recursive-descent parser and has no selective packrat\nfilter.",
"is_bot": false,
"headline": "rust-peglib: compute first-sets in O(N) by caching per-rule results",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T03:35:37Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "82de941abf27696010299795a15c030f2d2ec848",
"body": "A definition and a primary both begin with an identifier whose two forms\n(macro vs plain) share that prefix, so the bootstrap meta-parser scanned the\nidentifier twice: once in the macro alternative (which then failed at the\nparameter/argument list) and again in the plain alternative. First-Set\nfilte\n[…]\n syntax-error reporting for\nmalformed grammars may shift.\n\nload_grammar is ~1.3-1.45x faster (a ~190-rule grammar: 11.0 -> 8.7 ms). Also\nupdate grammar/cpp-peglib.peg, the reference grammar, to match.",
"is_bot": false,
"headline": "Left-factor the meta-grammar's Definition and Primary rules",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-30T03:05:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1986fc1c970f48f84c2884d29284aa3f759d3892",
"body": "First-Set filtering skips parse alternatives whose next byte cannot match,\nbut it was only applied to user grammars in perform_core, not to the\nbootstrap meta-grammar that parses grammar text. Run SetupFirstSets on the\nmeta-grammar in the ParserGenerator constructor so load_grammar benefits too.\n\nSa\n[…]\n repetition, macros, captures/back-references,\nprecedence/ast_name instructions, dictionaries, cut, negated classes and\nignored rules to confirm the meta-parser still compiles the full grammar\nsyntax.",
"is_bot": false,
"headline": "Apply First-Set filtering to the bootstrap meta-grammar",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-29T23:11:38Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d73725fa1828de7e9cc3d70281399325be44a0fc",
"body": "perform_core created a fresh SetupFirstSets per rule, so each rule\nre-walked every reachable rule to set up first-sets -- O(N^2) for grammars\nwith dense cross-references. Share a single visitor across all rules so its\nfirst-set cache and visited-rule set persist, computing each rule's\nfirst-sets onc\n[…]\n grammars drops ~3.6x at 1600 rules; real\ngrammars are unaffected (already dominated by meta-parse). Add first-set\ntests for a shared sub-rule and a left-recursive rule referenced from\nmultiple rules.",
"is_bot": false,
"headline": "Compute first-sets in O(N) by sharing the SetupFirstSets visitor",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-29T21:53:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "697b5868fe019c80813f665344f0f649342dc126",
"body": "Add visited_rules to CollectReachableRules to guard re-entry and avoid\ninfinite recursion when initializing the packrat filter through Holder\ncycles formed by combinator-built grammars. Add a unit test for a\nrecursive combinator grammar with packrat enabled.",
"is_bot": false,
"headline": "Prevent recursion over Holder cycles in packrat",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-29T15:59:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5afb20728fb0bd58d2be7246dc90bec67f17b19",
"body": null,
"is_bot": false,
"headline": "Release v1.12.0",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-10T03:46:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "806499ca057e8da233f03778dca5ee8c2157cafd",
"body": "- Replace the packrat cache (std::map in C++, HashMap in Rust) with\n PackratCache: a flat open-addressing hash table with linear probing,\n fused (position * rule count + rule id) keys, a lazily allocated\n semantic-value array, and input-length-based initial capacity\n- Cache the tracer availabilit\n[…]\nmpute lowercase literals for case-insensitive\n matching (Rust)\n- Use unique_ptr for the semantic value stack\n\nbig.sql parse time vs YACC baseline: 3.4x -> 2.0x (C++);\nTPC-H queries ~17% faster (Rust)",
"is_bot": false,
"headline": "Speed up packrat parsing with an open-addressing memoization cache",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-10T00:01:49Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "de60491eeb065e81e9cfff40efb20cb87a1be4f9",
"body": "find_grammar() only searched \"spec/mini-js/grammar.peg\" with relative\nprefixes \"\", \"../\", \"../../\" from the current working directory. When the\ntest binary runs from a directory that is not 0-2 levels below the repo\nroot (e.g. nested build trees, package builds such as FreeBSD ports), the\ngrammar fi\n[…]\niJsTest cases as Skipped.\n\nPass the absolute grammar path via the MINI_JS_GRAMMAR_PATH compile\ndefinition and use it as the primary candidate, falling back to the\nexisting relative search.\n\nFixes #341",
"is_bot": false,
"headline": "Fix MiniJsTest being skipped when run from non-standard directories",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-07T22:15:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b68a7b2e81b412239eba0858df813a01e5ca41af",
"body": null,
"is_bot": false,
"headline": "Release v1.11.0",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-06T19:19:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3de6f438cf2cd279b02cf93790a3107057437de8",
"body": "- Add CPPPEGLIB_VERSION / CPPPEGLIB_VERSION_NUM macros to peglib.h\n- Add scripts/release.sh (dry-run by default, --run to execute)\n- Add `release` recipe to justfile\n- Add abidiff CI with a header-only ABI probe to drive patch/minor bumps",
"is_bot": false,
"headline": "Add `just release` versioning workflow",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-06-06T19:08:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e24d65d46c0a3b8348a9884b0b9328bf5ee9d0e",
"body": null,
"is_bot": false,
"headline": "Update README",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-29T18:06:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa5ae678ae5bec20e970b864638c1c0e4ac78c9b",
"body": null,
"is_bot": false,
"headline": "Fixed waring",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-29T17:44:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "995a39247008e626b05d7c45228c744e14e2f7bf",
"body": "A rule (or macro instantiation) annotated `{ ast_name: NodeTag }` emits\nits AST node under NodeTag instead of the rule's own name. This lets two\nparallel productions — e.g. a parameterized rule instantiated for two\nargument sets, or hand-written sibling rules — converge onto a single\nAST tag so a tr\n[…]\nle, opt-in\ndirective in the `{ ... }` block. Default (no instruction) is unchanged\n— nodes keep their rule name. The optimizer's keep-list honors the\noverride so `ast_name` composes with `no_ast_opt`.",
"is_bot": false,
"headline": "Add `{ ast_name: X }` instruction to override an AST node's tag",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-29T17:31:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ee939505e6ecdc72902439e53f8ca70d599693f",
"body": "When AstOptimizer collapsed a 1-child wrapper into a node derived\nfrom a rule with `no_ast_opt`, the surviving node kept the rule's\nname but its pos/len was overwritten by the outermost collapsed\nwrapper's range. This broke error reporting and source-level\nrewriting for nodes the user explicitly mar\n[…]\nopy\nconstructor. When the flag is set, the collapsed node inherits the\nchild's pos/len instead of adopting the outer rule's range.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) \u003cnoreply@anthropic.com>",
"is_bot": false,
"headline": "Preserve pos/len of no_ast_opt rules through AST collapse",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-28T05:08:26Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "debd063f3cd7a8fba2e7a978687c078786234628",
"body": "ComputeFirstSet's per-traversal cache stored results regardless of\nwhether a cycle was hit during the rule's body computation. A cycle\nreturns no contribution, so the cached value is incomplete and unsafe\nto reuse from a different call context. Reusing such a polluted entry\ncould cause a Prioritized\n[…]\nr to use a\npolluted cache.\n\nTrack a cycle counter and skip caching for rules whose computation hit\na cycle. Cycle-free rules are still cached, so the original speedup\nfor non-LR grammars is preserved.",
"is_bot": false,
"headline": "Fix FirstSet cache pollution under left recursion",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-02T23:19:19Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b833ef990fcb72d9fbf7fbb54f6ddd7b5b11ed97",
"body": "std::optional and std::exchange are used in peglib.h but their headers\nwere not directly included. libc++ pulls them in transitively, but\nlibstdc++ does not, breaking the build on Linux. Reported by the\nculebra project.\n\nCo-Authored-By: Claude Opus 4.7 (1M context) \u003cnoreply@anthropic.com>",
"is_bot": false,
"headline": "Add missing \u003coptional> and \u003cutility> includes",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-05-02T22:35:19Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "053660bf89c48021b0a9f247326fcd3eb50df103",
"body": "Introduce an optional per-traversal FirstSet cache for ComputeFirstSet to share computed FirstSets and avoid exponential re-walks across cross-referenced rules. Add visited_rules_ to SetupFirstSets to skip recomputing PrioritizedChoice::first_sets_ for rules reached multiple times. Cycle handling is preserved.",
"is_bot": false,
"headline": "Cache first sets and avoid redundant rule visits",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-04-21T04:00:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dffbcb6edd03bf57900802bef0810371c4855733",
"body": null,
"is_bot": false,
"headline": "Add language independent test framework (#339)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-04-20T01:49:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcabc63cf4b966eb6f33abd571ae4cda6bf707f0",
"body": null,
"is_bot": false,
"headline": "Fix #338",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-18T02:03:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae24b6dfc2a42901fa6467b3df4170b0a948bfb4",
"body": null,
"is_bot": false,
"headline": "Refactor variable declaration for clarity in ComputeFirstSet::visit",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-14T02:32:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e88335f2110f1b681413439cbd90b9dffe2a492",
"body": "Signed-off-by: Rui Chen \u003crui@chenrui.dev>",
"is_bot": false,
"headline": "Add missing \u003coptional> include (#337)",
"author_name": "Rui Chen",
"author_login": "chenrui333",
"committed_at": "2026-03-13T21:02:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60a77c634e81c7fbce7fe949ec9573deff0c64cf",
"body": "* Add more tests\n\n* Enhance profiling capabilities and improve Trie performance metrics\n\n* Implement ISpan optimization for ASCII CharacterClass repetition in parsing\n\n* Implement LPeg-style snapshot/rollback for SemanticValues and CaptureScope\n\nReplace push()/pop()/append()/shift_capture_values() w\n[…]\nbclasses to inherit from TraversalVisitor for improved code reuse and maintainability\n\n* Update native.wasm binary to latest version\n\n---------\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>",
"is_bot": false,
"headline": "Performance Improvement (#336)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-11T04:02:19Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "3b6f47f7fcc7acc664cc3b75df68b719ea3864e3",
"body": "Split test1.cc, test2.cc, test3.cc into 10 descriptive files organized\nby feature area. Added 84 new tests covering previously under-tested\nareas (cut operator, recovery, enter/leave handlers, user-defined rules,\nsemantic predicates, lookahead, token boundary interactions, capture\nscope, character c\n[…]\nture interactions\n- test_left_recursive.cc: left recursion (merged old detection tests)\n- test_first_set.cc: first-set optimization (unchanged)\n\nCo-Authored-By: Claude Opus 4.6 \u003cnoreply@anthropic.com>",
"is_bot": false,
"headline": "Reorganize test files with descriptive names and add comprehensive tests",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-07T15:53:09Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9a81a9c7e836b208e092dd9f815dcbc3388a1dd9",
"body": "* Fix null pointer dereference in char8_t parse_and_get_value overloads\n\nThe char8_t overloads were passing *path instead of path, which would\ndereference a null pointer when path=nullptr (the default).\n\nCo-Authored-By: Claude Opus 4.6 \u003cnoreply@anthropic.com>\n\n* Add left recursion test cases and gra\n[…]\n() pattern. This eliminates MSVC\noverload ambiguity and simplifies the API.\n\nCo-Authored-By: Claude Opus 4.6 \u003cnoreply@anthropic.com>\n\n---------\n\nCo-authored-by: Claude Opus 4.6 \u003cnoreply@anthropic.com>",
"is_bot": false,
"headline": "Left recursion new (#335)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-07T08:13:58Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "a747613edd283f7300a81a0e63c384e78d3407ea",
"body": null,
"is_bot": false,
"headline": "Performance improvement for #316",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-07T02:12:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "861ecee203564b0fadeb929738da1ac6f36cac2d",
"body": "- Introduced a new SQL benchmark query (q1.sql) that aggregates line item data based on return flag and line status, filtering by ship date.\n- Added a grammar definition file (sql.gram) to parse SQL statements, including support for various clauses such as SELECT, FROM, WHERE, GROUP BY, and ORDER BY.",
"is_bot": false,
"headline": "Add SQL benchmark query and grammar definitions",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-06T05:15:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a86b8701c31b9062566bf6fc0978c606003267f",
"body": null,
"is_bot": false,
"headline": "Add predicate data handling in parser and corresponding tests (#333)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2026-03-06T04:35:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de57145d884e1eb6ca81b3972b588eb1cf5e643e",
"body": null,
"is_bot": false,
"headline": "Fix expected output format in TokenBoundaryTest",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-12-09T17:51:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebaff88c64bf532ce762f4b501639974179e3920",
"body": null,
"is_bot": false,
"headline": "Fix parameter order (#330)",
"author_name": "the-fck",
"author_login": "the-fck",
"committed_at": "2025-12-09T04:06:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66cbbb9f82763d5928d0e4d83b84d4a60dce04b8",
"body": null,
"is_bot": false,
"headline": "Fix playground crash problem",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-07-12T14:32:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee9eeecdc83a6589341bb826a398cc8caefed657",
"body": null,
"is_bot": false,
"headline": "Removed windows-2019, and added windows-2022 to the CI workflow",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-07-12T13:32:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29389674360bc79c174955f297507d7797d5638d",
"body": null,
"is_bot": false,
"headline": "Fixed problem with invalid UTF-8 format text",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-07-12T03:19:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa23ad00303a32efe41baa69ee32921e1d14147d",
"body": null,
"is_bot": false,
"headline": "'Characger range out of order' problem support",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-06-06T01:57:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16685ba0fe2574a4f4786dec93ffa21158e728e6",
"body": null,
"is_bot": false,
"headline": "Update os matrix for github actions",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T12:01:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "751c4f0899590e48e6a5e1fe53da7e05c4b7cbd7",
"body": null,
"is_bot": false,
"headline": "Fix #322",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T11:53:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9057218a77094f9184a7e2176376f6c5bc421a1d",
"body": null,
"is_bot": false,
"headline": "Fix unit test",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T11:36:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c892602e0589f6600ff57eadd9106303a8c1cbfd",
"body": null,
"is_bot": false,
"headline": "Fix #321",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T10:19:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f9ff22d55781b2444c359d715236e84e0718b8e",
"body": null,
"is_bot": false,
"headline": "Fix #320",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T09:58:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edcd297af8dcdf9fe07b683824c27f5514aa0bab",
"body": null,
"is_bot": false,
"headline": "Updated README.md",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T09:53:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebba040555bfef4d447a2308307115b587090319",
"body": null,
"is_bot": false,
"headline": "Update .gitignore",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2025-05-06T09:52:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "527422aa38ce78c4214b21843e97584bc2db0150",
"body": null,
"is_bot": false,
"headline": "Update GitHub Actions workflow (#315)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-11-16T19:27:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e405c4b034e9bf2581849bab5362cfe60cea813",
"body": null,
"is_bot": false,
"headline": "It fixes for compiling error on C++20. (#314)",
"author_name": "Mura",
"author_login": "mura-orz",
"committed_at": "2024-11-16T18:55:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0cbfdc7f210bbedd9b9d286b98265f986dd04e7",
"body": null,
"is_bot": false,
"headline": "Fix grammar, punctuation, and formatting in README.md (#313)",
"author_name": "Patrick Scheibe",
"author_login": "halirutan",
"committed_at": "2024-11-13T13:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dedc8278d2b251404d3d9774a587fbd02daff8da",
"body": null,
"is_bot": false,
"headline": "Fix #311",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-11-12T01:17:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ab5d27d7b866b210c52ee2718f00ef202da173a",
"body": null,
"is_bot": false,
"headline": "Bump actions/checkout version",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-09-03T19:12:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab393fbdd71f1f8e60e82bb8ad58790ae868fc1f",
"body": null,
"is_bot": false,
"headline": "Removed Appveyor CI",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-09-03T19:04:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79eb37c8518f1d404b91e67f557494353997901d",
"body": null,
"is_bot": false,
"headline": "Fix #304 (#306)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-09-03T14:30:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b022992a435285e1e270976e647906de0ab6de8",
"body": null,
"is_bot": false,
"headline": "Updated cpp-peglib.peg",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-09-01T19:53:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ef7180a12f305ac92fad73efb4d9a7b81e5b980",
"body": null,
"is_bot": false,
"headline": "Update CMake related files",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-06-17T17:03:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50ea4b05e9b1d599a06e1fb22e5658695cc1f24c",
"body": "…nager compatibility. (#298)\n\nCMAKE_SOURCE_DIR points to the top-level CMakeLists.txt, not to the subdir CMakeLists.txt, so when cpp-peglib is included in a project, the INTERFACE/include directory points to the wrong location.",
"is_bot": false,
"headline": "Changed INTERFACE location to CMAKE_CURRENT_SOURCE_DIR for package ma…",
"author_name": "Niels Moseley",
"author_login": "trcwm",
"committed_at": "2024-05-02T09:31:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f01a5e637ee9c2994c91b203b10263930550e908",
"body": null,
"is_bot": false,
"headline": "Update the README",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-04-23T22:10:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9d38ec122f450930bef3c4e7abdb60db4af20ca",
"body": null,
"is_bot": false,
"headline": "Update playground",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-04-01T14:57:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f61052359c1a0e621b69a54ab5c8b938c2e757df",
"body": null,
"is_bot": false,
"headline": "Fix #294",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-03-31T23:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f06da7aa625df9a9a1fa98b6e9f00616ff98749",
"body": null,
"is_bot": false,
"headline": "Update playground",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-03-27T18:01:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "939ccb2af470ec479b08509e29bd77f1a4b26692",
"body": null,
"is_bot": false,
"headline": "Fix #291",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-03-27T16:49:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6201458f3b685ddc93d1729893e292ded7c9c609",
"body": null,
"is_bot": false,
"headline": "Fix #286",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-01-27T03:00:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e305b423b06ef8442d540cc486dd158a71b000c",
"body": null,
"is_bot": false,
"headline": "Added example/choice.cc",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-01-17T15:53:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "195746dedd623a94d43dabec31175335b1efdc62",
"body": null,
"is_bot": false,
"headline": "Update playground",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2024-01-02T13:48:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65ccaaa7c3c08d0475eb6f54b8e2b150fa04b966",
"body": "* spelling: bracket\r\n\r\nSigned-off-by: Josh Soref \u003c2119212+jsoref@users.noreply.github.com>\r\n\r\n* spelling: build\r\n\r\nSigned-off-by: Josh Soref \u003c2119212+jsoref@users.noreply.github.com>\r\n\r\n* spelling: commandline\r\n\r\nSigned-off-by: Josh Soref \u003c2119212+jsoref@users.noreply.github.com>\r\n\r\n* spelling: debu\n[…]\nnoreply.github.com>\r\n\r\n* spelling: whitespace\r\n\r\nSigned-off-by: Josh Soref \u003c2119212+jsoref@users.noreply.github.com>\r\n\r\n---------\r\n\r\nSigned-off-by: Josh Soref \u003c2119212+jsoref@users.noreply.github.com>",
"is_bot": false,
"headline": "Spelling (#287)",
"author_name": "Josh Soref",
"author_login": "jsoref",
"committed_at": "2024-01-02T13:44:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bd0e43e5508cbfeec64955c49d5aa3a848b3fa0b",
"body": null,
"is_bot": false,
"headline": "Fix #285 (Warnings due to -Woverloaded-virtual)",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2023-11-20T21:10:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c1089bda6d4ae6df34efef1160b84c22e3d2856",
"body": null,
"is_bot": false,
"headline": "Fix #275",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2023-07-15T02:04:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abac8288f36d3e1d885383611d26c3e9639e745e",
"body": null,
"is_bot": false,
"headline": "Changed exeutable name `test-main` to `peglib-test-main`",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2023-07-12T01:11:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6ceab255467d07d29346a6a59f5af9066c0c3b1",
"body": "…/CTML/blob/master/CMakeLists.txt`.",
"is_bot": false,
"headline": "Implement #278 in another way based on `https://github.com/tinfoilboy…",
"author_name": "yhirose",
"author_login": "yhirose",
"committed_at": "2023-07-12T00:25:36Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 57,
"commits_last_year": 66,
"latest_release_at": "2026-07-29T00:12:26Z",
"latest_release_tag": "v1.15.1",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 11,
"days_since_latest_release": 1,
"mean_days_between_releases": 15.5
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 128,
"stars": 1048,
"watchers": 28,
"fork_history": {
"days": [
{
"date": "2015-10-13",
"count": 1
},
{
"date": "2016-04-13",
"count": 1
},
{
"date": "2016-05-27",
"count": 1
},
{
"date": "2016-09-12",
"count": 1
},
{
"date": "2016-10-29",
"count": 1
},
{
"date": "2017-07-21",
"count": 1
},
{
"date": "2017-07-31",
"count": 1
},
{
"date": "2017-12-01",
"count": 1
},
{
"date": "2017-12-15",
"count": 1
},
{
"date": "2018-03-19",
"count": 1
},
{
"date": "2018-07-22",
"count": 1
},
{
"date": "2018-08-01",
"count": 1
},
{
"date": "2018-09-19",
"count": 1
},
{
"date": "2018-10-30",
"count": 1
},
{
"date": "2018-12-12",
"count": 1
},
{
"date": "2019-02-14",
"count": 1
},
{
"date": "2019-05-23",
"count": 1
},
{
"date": "2019-07-01",
"count": 1
},
{
"date": "2019-07-17",
"count": 1
},
{
"date": "2019-07-19",
"count": 1
},
{
"date": "2019-07-23",
"count": 1
},
{
"date": "2019-11-14",
"count": 2
},
{
"date": "2019-11-21",
"count": 1
},
{
"date": "2019-12-20",
"count": 1
},
{
"date": "2019-12-27",
"count": 1
},
{
"date": "2020-01-03",
"count": 1
},
{
"date": "2020-01-07",
"count": 1
},
{
"date": "2020-01-15",
"count": 1
},
{
"date": "2020-02-14",
"count": 1
},
{
"date": "2020-02-26",
"count": 1
},
{
"date": "2020-03-08",
"count": 1
},
{
"date": "2020-03-15",
"count": 1
},
{
"date": "2020-04-10",
"count": 1
},
{
"date": "2020-05-17",
"count": 1
},
{
"date": "2020-05-28",
"count": 1
},
{
"date": "2020-06-13",
"count": 1
},
{
"date": "2020-06-18",
"count": 2
},
{
"date": "2020-07-24",
"count": 1
},
{
"date": "2020-09-27",
"count": 1
},
{
"date": "2020-10-08",
"count": 1
},
{
"date": "2020-10-10",
"count": 1
},
{
"date": "2020-11-03",
"count": 1
},
{
"date": "2020-11-22",
"count": 1
},
{
"date": "2020-12-26",
"count": 1
},
{
"date": "2021-01-21",
"count": 1
},
{
"date": "2021-01-28",
"count": 1
},
{
"date": "2021-02-25",
"count": 1
},
{
"date": "2021-03-03",
"count": 1
},
{
"date": "2021-03-28",
"count": 1
},
{
"date": "2021-04-02",
"count": 1
},
{
"date": "2021-04-07",
"count": 1
},
{
"date": "2021-05-02",
"count": 1
},
{
"date": "2021-05-17",
"count": 1
},
{
"date": "2021-06-03",
"count": 1
},
{
"date": "2021-06-07",
"count": 1
},
{
"date": "2021-06-14",
"count": 1
},
{
"date": "2021-08-26",
"count": 1
},
{
"date": "2021-10-15",
"count": 1
},
{
"date": "2021-11-08",
"count": 1
},
{
"date": "2021-11-20",
"count": 1
},
{
"date": "2021-12-09",
"count": 1
},
{
"date": "2021-12-30",
"count": 1
},
{
"date": "2022-03-17",
"count": 1
},
{
"date": "2022-04-26",
"count": 1
},
{
"date": "2022-05-06",
"count": 1
},
{
"date": "2022-06-05",
"count": 1
},
{
"date": "2022-07-06",
"count": 1
},
{
"date": "2022-07-27",
"count": 1
},
{
"date": "2022-08-31",
"count": 1
},
{
"date": "2022-09-26",
"count": 1
},
{
"date": "2022-10-10",
"count": 1
},
{
"date": "2022-11-08",
"count": 1
},
{
"date": "2022-11-11",
"count": 1
},
{
"date": "2022-11-15",
"count": 2
},
{
"date": "2022-11-27",
"count": 1
},
{
"date": "2022-12-02",
"count": 1
},
{
"date": "2022-12-05",
"count": 1
},
{
"date": "2023-01-10",
"count": 1
},
{
"date": "2023-01-15",
"count": 1
},
{
"date": "2023-02-16",
"count": 1
},
{
"date": "2023-03-11",
"count": 1
},
{
"date": "2023-04-08",
"count": 1
},
{
"date": "2023-04-09",
"count": 1
},
{
"date": "2023-04-10",
"count": 1
},
{
"date": "2023-04-12",
"count": 1
},
{
"date": "2023-05-08",
"count": 1
},
{
"date": "2023-06-06",
"count": 1
},
{
"date": "2023-06-11",
"count": 1
},
{
"date": "2023-06-13",
"count": 1
},
{
"date": "2023-08-25",
"count": 1
},
{
"date": "2023-11-16",
"count": 1
},
{
"date": "2024-01-02",
"count": 1
},
{
"date": "2024-01-18",
"count": 1
},
{
"date": "2024-03-29",
"count": 1
},
{
"date": "2024-04-25",
"count": 1
},
{
"date": "2024-05-15",
"count": 1
},
{
"date": "2024-05-22",
"count": 1
},
{
"date": "2024-06-13",
"count": 1
},
{
"date": "2024-06-23",
"count": 1
},
{
"date": "2024-07-02",
"count": 1
},
{
"date": "2024-07-12",
"count": 1
},
{
"date": "2024-08-29",
"count": 1
},
{
"date": "2024-11-16",
"count": 1
},
{
"date": "2025-01-03",
"count": 1
},
{
"date": "2025-01-09",
"count": 1
},
{
"date": "2025-01-16",
"count": 1
},
{
"date": "2025-04-09",
"count": 1
},
{
"date": "2025-05-22",
"count": 1
},
{
"date": "2025-07-25",
"count": 1
},
{
"date": "2025-08-11",
"count": 1
},
{
"date": "2025-08-20",
"count": 1
},
{
"date": "2025-09-24",
"count": 1
},
{
"date": "2025-11-01",
"count": 1
},
{
"date": "2025-11-09",
"count": 1
},
{
"date": "2025-11-23",
"count": 1
},
{
"date": "2025-11-30",
"count": 1
},
{
"date": "2025-12-01",
"count": 1
},
{
"date": "2026-02-26",
"count": 1
},
{
"date": "2026-05-19",
"count": 1
},
{
"date": "2026-05-25",
"count": 1
},
{
"date": "2026-07-17",
"count": 1
}
],
"complete": true,
"collected": 124,
"total_forks": 128
},
"star_history": null,
"open_issues_and_prs": 1
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"example",
"samples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"justfile",
"pl0/Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"harness/rust/Cargo.toml",
"rust-peglib/Cargo.toml",
"rust-peglib/orc-jit/Cargo.toml",
"rust-peglib/pl0/Cargo.toml"
],
"largest_source_bytes": 223507,
"source_files_sampled": 54,
"oversized_source_files": 3,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"rust-peglib/Cargo.toml"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 15,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "peglib",
"manifest": "harness/rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "regex",
"manifest": "harness/rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "serde_json",
"manifest": "harness/rust/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "peglib",
"manifest": "rust-peglib/pl0/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "orc-jit",
"manifest": "rust-peglib/pl0/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "regex",
"direct": true,
"version": "1.12.3",
"ecosystem": "crates"
},
{
"name": "serde_json",
"direct": true,
"version": "1.0.149",
"ecosystem": "crates"
},
{
"name": "aho-corasick",
"direct": false,
"version": "1.1.4",
"ecosystem": "crates"
},
{
"name": "itoa",
"direct": false,
"version": "1.0.18",
"ecosystem": "crates"
},
{
"name": "memchr",
"direct": false,
"version": "2.8.0",
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": "1.0.106",
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": "1.0.45",
"ecosystem": "crates"
},
{
"name": "regex-automata",
"direct": false,
"version": "0.4.14",
"ecosystem": "crates"
},
{
"name": "regex-syntax",
"direct": false,
"version": "0.8.10",
"ecosystem": "crates"
},
{
"name": "serde",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "serde_core",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "serde_derive",
"direct": false,
"version": "1.0.228",
"ecosystem": "crates"
},
{
"name": "syn",
"direct": false,
"version": "2.0.117",
"ecosystem": "crates"
},
{
"name": "unicode-ident",
"direct": false,
"version": "1.0.24",
"ecosystem": "crates"
},
{
"name": "zmij",
"direct": false,
"version": "1.0.21",
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 15,
"direct_count": 2,
"indirect_count": 13
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 55,
"open_issues": 1,
"closed_ratio": 0.996,
"closed_issues": 264,
"closed_unmerged_prs": 21
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "yhirose",
"commits": 748,
"avatar_url": "https://avatars.githubusercontent.com/u/357397?v=4"
},
{
"type": "User",
"login": "hvellyr",
"commits": 22,
"avatar_url": "https://avatars.githubusercontent.com/u/837398?v=4"
},
{
"type": "User",
"login": "yhirose-jw",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/199155299?v=4"
},
{
"type": "User",
"login": "g40",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/812250?v=4"
},
{
"type": "User",
"login": "mingodad",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/462618?v=4"
},
{
"type": "User",
"login": "apache-hb",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/35050275?v=4"
},
{
"type": "User",
"login": "mqnc",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/12005608?v=4"
},
{
"type": "User",
"login": "mura-orz",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/35004798?v=4"
},
{
"type": "User",
"login": "NotAPenguin0",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/26485755?v=4"
},
{
"type": "User",
"login": "halirutan",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/511683?v=4"
}
],
"contributors_sampled": 23,
"top_contributor_share": 0.919
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"abidiff.yml",
"cmake.yml"
],
"has_docs_dir": true,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"security_signals": {
"lockfiles": [
"Cargo.lock"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 9,
"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": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "30 commit(s) and 7 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": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": 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": "6f5b3a8e3aaa352c5fd7d57716cb8c9e279cd6a7",
"ran_at": "2026-07-30T08:09:01Z",
"aggregate_score": 3.8,
"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-29T04:12:48Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-04-20T01:49:19Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 296,
"created_at": "2024-04-22T14:49:07Z",
"last_comment_at": "2024-05-01T14:18:54Z",
"last_comment_author": "mingodad"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/yhirose/cpp-peglib",
"host": "github.com",
"name": "cpp-peglib",
"owner": "yhirose"
},
"metrics": {
"overall": {
"key": "overall",
"band": "excellent",
"name": "Overall health",
"note": "The weighted overall 68 is calibrated to 80 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 68,
"calibrated": 80,
"calibration": "2026-08-02"
}
}
],
"value": 80,
"inputs": {
"security": 50,
"vitality": 82,
"community": 63,
"governance": 54,
"calibration": "2026-08-02",
"engineering": 91,
"ai_readiness": 65,
"weighted_overall_raw": 68
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "excellent",
"name": "Vitality",
"value": 82,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"commits_last_year": 66,
"human_commit_share": 1,
"days_since_last_push": 1,
"active_weeks_last_year": 11
},
"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": "11/52 weeks with commits",
"points": 7.6,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 11
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "66 commits in the last year",
"points": 16.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 66
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "exceptional",
"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": 57,
"latest_release_tag": "v1.15.1",
"releases_from_tags": false,
"days_since_latest_release": 1,
"mean_days_between_releases": 15.5
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "57 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 57
}
}
],
"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 ~15.5 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 15.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": "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": 6,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 6 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 6
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 63,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "good",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 74,
"inputs": {
"forks": 128,
"stars": 1048,
"watchers": 28,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1,048 stars",
"points": 49,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 1048
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "128 forks",
"points": 17.5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 128
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "28 watchers",
"points": 8,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 28
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"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": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 54,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 23,
"top_contributor_share": 0.919
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 92% of commits",
"points": 1.8,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 92
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "23 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 23
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 73,
"inputs": {
"merged_prs": 55,
"open_issues": 1,
"closed_issues": 264,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.996,
"closed_unmerged_prs": 21,
"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": "100% of issues closed",
"points": 41.8,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "55/76 decided PRs merged",
"points": 21.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 55,
"decided": 76
}
}
],
"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/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"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": 71,
"inputs": {
"followers": 1226,
"owner_type": "User",
"is_verified": null,
"owner_login": "yhirose",
"public_repos": 58,
"account_age_days": 5835
},
"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": "1,226 followers of yhirose",
"points": 22.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 1226,
"login": "yhirose"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "58 public repos, account ~15 yr old",
"points": 24.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 58
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "excellent",
"name": "Engineering Quality",
"value": 91,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 92,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 16,
"status": "met",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 9.6,
"status": "met",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "excellent",
"name": "Documentation",
"note": null,
"notes": [],
"value": 90,
"inputs": {
"topics": [
"cpp",
"peg",
"parsing-expression-grammars",
"parsing",
"c-plus-plus",
"header-only",
"parser-generator",
"cpp17"
],
"has_wiki": false,
"homepage": "https://yhirose.github.io/cpp-peglib/",
"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": "https://yhirose.github.io/cpp-peglib/",
"points": 15,
"status": "met",
"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": "8 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 8
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 50,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 38,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 3.8
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6.8,
"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": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "30 commit(s) and 7 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": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "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": "dependency_advisories",
"band": "exceptional",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 15 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 15
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 15,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 15,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "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": 9
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 65,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 38,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.71,
"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": "71 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 37.9,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 71,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "excellent",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"Cargo.lock"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"justfile",
"pl0/Makefile"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.05,
"toolchain_manifests": [
"harness/rust/Cargo.toml",
"rust-peglib/Cargo.toml",
"rust-peglib/orc-jit/Cargo.toml",
"rust-peglib/pl0/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "justfile, pl0/Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "justfile, pl0/Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 11,
"status": "met",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "C++ (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C++"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "5 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 5,
"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": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 97,
"inputs": {
"primary_language": "C++",
"largest_source_bytes": 223507,
"source_files_sampled": 54,
"oversized_source_files": 3
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C++ (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C++"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "3/54 source files over 60KB",
"points": 51.9,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 54,
"oversized": 3
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"example",
"samples"
],
"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": "example, samples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "example, samples"
}
}
],
"max_points": 40
}
]
}
],
"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)."
}
],
"classification": {
"top": [],
"labels": [],
"scores": {
"library": 2
},
"primary": null,
"evidence": [
{
"tier": "description",
"label": "library",
"source": "description:library",
"weight": 2
}
],
"artifacts": [],
"confidence": "none",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": false
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'peglib' from its registry",
"Could not fetch crates package 'spec-harness' from its registry",
"Could not fetch crates package 'pl0' from its registry",
"Could not fetch crates package 'orc-jit' from its registry"
],
"report_type": "repository",
"generated_at": "2026-07-30T08:09:15.529857Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/y/yhirose/cpp-peglib.svg",
"full_name": "yhirose/cpp-peglib",
"license_state": "standard",
"license_spdx": "MIT"
},
"repoMeta": null,
"notFound": false,
"related": [
{
"id": 32973,
"full_name": "Neargye/magic_enum",
"url": "https://github.com/Neargye/magic_enum",
"description": "Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code",
"ecosystem": null,
"ecosystems": [],
"primary_language": "C++",
"languages": [
"C++"
],
"topics": [
"cplusplus",
"cplusplus-17",
"c-plus-plus",
"c-plus-plus-17",
"cpp",
"cpp17",
"enum-to-string",
"string-to-enum",
"serialization",
"reflection",
"metaprogramming",
"header-only",
"single-file",
"no-dependencies",
"enum"
],
"license_spdx": "MIT",
"license_state": "standard",
"stars": 6145,
"forks": 561,
"watchers": 65,
"monthly_downloads": null,
"latest_score": 75,
"latest_band": "good",
"latest_scanned_at": "2026-07-21T14:53:34.438632Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "organic",
"abandonment_state": "unverified",
"red_flags": [],
"icon_url": "",
"icon_source_type": null,
"badge_url": ""
},
{
"id": 50263,
"full_name": "Project-OSRM/osrm-backend",
"url": "https://github.com/Project-OSRM/osrm-backend",
"description": "Open Source Routing Machine - C++ backend",
"ecosystem": "npm",
"ecosystems": [
"npm",
"pypi"
],
"primary_language": "C++",
"languages": [
"C++",
"Gherkin"
],
"topics": [
"osrm",
"cpp",
"c-plus-plus",
"routing",
"routing-engine",
"map-matching",
"traveling-salesman",
"openstreetmap",
"osm",
"isochrones",
"cpp17"
],
"license_spdx": "BSD-2-Clause",
"license_state": "standard",
"stars": 7933,
"forks": 3958,
"watchers": 223,
"monthly_downloads": 10424,
"latest_score": 96,
"latest_band": "exceptional",
"latest_scanned_at": "2026-08-01T10:52:11.179947Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "unverified",
"abandonment_state": "maintained",
"red_flags": [],
"icon_url": "",
"icon_source_type": null,
"badge_url": ""
},
{
"id": 16919,
"full_name": "dennisosrm/project-osrm",
"url": "https://github.com/dennisosrm/project-osrm",
"description": "Open Source Routing Machine - C++ backend",
"ecosystem": "npm",
"ecosystems": [
"npm",
"pypi"
],
"primary_language": "C++",
"languages": [
"C++",
"Gherkin"
],
"topics": [
"osrm",
"cpp",
"c-plus-plus",
"routing",
"routing-engine",
"map-matching",
"traveling-salesman",
"openstreetmap",
"osm",
"isochrones",
"cpp17"
],
"license_spdx": "BSD-2-Clause",
"license_state": "standard",
"stars": 7900,
"forks": 3955,
"watchers": 222,
"monthly_downloads": null,
"latest_score": 95,
"latest_band": "exceptional",
"latest_scanned_at": "2026-07-17T15:58:25.131507Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "unverified",
"abandonment_state": "unverified",
"red_flags": [],
"icon_url": "",
"icon_source_type": null,
"badge_url": ""
},
{
"id": 23089,
"full_name": "antlr/antlr4",
"url": "https://github.com/antlr/antlr4",
"description": "ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files.",
"ecosystem": "maven",
"ecosystems": [
"maven"
],
"primary_language": "Java",
"languages": [
"Java",
"C++",
"C#",
"Python",
"Swift"
],
"topics": [
"parsing",
"parser-generator",
"antlr",
"antlr4",
"java",
"grammar",
"python",
"parse",
"language-recognition",
"javascript",
"csharp",
"swift",
"cpp",
"golang",
"php",
"dart"
],
"license_spdx": "BSD-3-Clause",
"license_state": "standard",
"stars": 18965,
"forks": 3463,
"watchers": 367,
"monthly_downloads": null,
"latest_score": 73,
"latest_band": "good",
"latest_scanned_at": "2026-08-05T04:55:39.161086Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "organic",
"abandonment_state": "maintained",
"red_flags": [],
"icon_url": "/icon/v1/antlr/antlr4?v=ff4e8650-1",
"icon_source_type": "homepage",
"badge_url": ""
},
{
"id": 54928,
"full_name": "fktn-k/fkYAML",
"url": "https://github.com/fktn-k/fkYAML",
"description": "A C++ header-only YAML library",
"ecosystem": "pypi",
"ecosystems": [
"pypi"
],
"primary_language": "C++",
"languages": [
"C++"
],
"topics": [
"cmake",
"cpp",
"cpp11",
"cpp14",
"cpp17",
"cpp20",
"header-only",
"header-only-library",
"yaml",
"yaml-parser",
"fkyaml",
"cpp23",
"single-header"
],
"license_spdx": "MIT",
"license_state": "standard",
"stars": 151,
"forks": 20,
"watchers": 6,
"monthly_downloads": null,
"latest_score": 71,
"latest_band": "good",
"latest_scanned_at": "2026-08-06T02:40:51.863768Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "unverified",
"abandonment_state": "maintained",
"red_flags": [],
"icon_url": "/icon/v1/fktn-k/fkYAML?v=023854c4-1",
"icon_source_type": "homepage",
"badge_url": ""
},
{
"id": 37680,
"full_name": "pest-parser/pest",
"url": "https://github.com/pest-parser/pest",
"description": "The Elegant Parser",
"ecosystem": "crates",
"ecosystems": [
"crates"
],
"primary_language": "Rust",
"languages": [
"Rust"
],
"topics": [
"peg",
"rust",
"parsing",
"pest",
"vm",
"meta",
"optimizer",
"parser",
"grammar",
"debugger",
"generator"
],
"license_spdx": "Apache-2.0",
"license_state": "standard",
"stars": 5373,
"forks": 299,
"watchers": 41,
"monthly_downloads": 74075622,
"latest_score": 87,
"latest_band": "excellent",
"latest_scanned_at": "2026-08-04T21:19:28.810353Z",
"has_high_risk_jurisdiction_exposure": false,
"has_malicious_dependency": false,
"growth_authenticity": "unverified",
"abandonment_state": "maintained",
"red_flags": [],
"icon_url": "/icon/v1/pest-parser/pest?v=48b62605-1",
"icon_source_type": "homepage",
"badge_url": ""
}
]
}
}
Public recordSoftware health report schema 0.27.0 · metrics 2.5.0 · 2026-07-30 08:09 UTC
A single file C++ header-only PEG (Parsing Expression Grammars) library
Add score badge to README Compare to…
C++ · Rust MIT ★ 1,048 stars ⑂ 128 forks since Feb 2015 View on GitHub ↗ yhirose/cpp-peglib holds a health index of 80 out of 100, placing it in the Excellent band. It scores highest on Engineering Quality (91/100) and lowest on Security (50/100). It was last updated 1 day ago. A single contributor accounts for most of its recent work.
Software health index Metrics are grouped into weighted categories on one standardized 1–100 scale. Overall starts as their weighted mean, calibrated against the distribution of the public record so bands carry percentile meaning; when public evidence triggers the High-Risk Jurisdiction Policy, the rating is adjusted and receives an At Risk ceiling of 34.
80
Exceptional 93-100 The record's top tier (≈ top 5%); essentially all checked criteria met
Excellent 80-92 Strong across the board; minor gaps
Good 65-79 Healthy; gaps are limited and manageable
Moderate 50-64 Acceptable with notable gaps; review recommended
Weak 35-49 Material weaknesses across several areas
At Risk 20-34 Significant weaknesses; adoption warrants caution
Critical 1-19 Severe problems (abandoned, single-maintainer, no hygiene)
Vitality Community & Adoption Sustainability & Governance Engineering Quality Security AI Readiness Score profile Each axis is a category. The shape matters more than the average — a healthy subject fills the whole shape, while a spike-and-crater profile means strength in one dimension is masking risk in another.
The weighted overall 68 is calibrated to 80 on the published index scale (record calibration 2026-08-02).
Ownership 1,226 followers 58 public repos since Aug 2010
This repository is owned by a personal account . A single-owner project carries more continuity risk than an organization-backed one.
Metrics by category Is the project alive — is code being written and are releases shipping?
82 Excellent · 21% of overall
How it's scored 36/36 Push recency — last push 1 days ago 7.6/36 Commit cadence — 11/52 weeks with commits 16.4/18 Commit volume — 66 commits in the last year 10/10 OpenSSF Scorecard: Maintained — 30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10
Inputs used
How it's scored 27/27 Ships releases — 57 releases published 36/36 Release recency — latest release 1 days ago 27/27 Release cadence — a release every ~15.5 days 0/10 OpenSSF Scorecard: Signed-Releases — no data
Inputs used Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.
Does the project have users, downloads, attention, and a welcoming setup for contributors?
63 Moderate · 17% of overall
How it's scored 49/60 Stars — 1,048 stars 17.5/25 Forks — 128 forks 8/15 Watchers — 28 watchers
Inputs used
How it's scored 22.5/22.5 README 22.5/22.5 License — recognized license (MIT) 0/18 CONTRIBUTING guide 0/13.5 Code of conduct 0/7.2 Issue template 0/6.3 PR template
Inputs used Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?
54 Moderate · 23% of overall
How it's scored 9/54 Bus factor — 1 contributor(s) cover half of all commits 1.8/22.5 Commit distribution — top contributor authored 92% of commits 13.5/13.5 Contributor breadth — 23 contributors 0/10 OpenSSF Scorecard: Contributors — project has 0 contributing companies or organizations -- score normalized to 0
Inputs used
How it's scored 41.8/42 Issue resolution — 100% of issues closed 21.7/30 PR acceptance — 55/76 decided PRs merged 0/13 Newcomer PR acceptance — no first-time contributor's PR decided in 30d 0/15 OpenSSF Scorecard: Code-Review — Found 0/30 approved changesets -- score normalized to 0
Inputs used Excluded from scoring (no data or not applicable): newcomer_pr_acceptance. Remaining weights renormalized.
How it's scored 10/30 Ownership backing — personal (user) account 0/20 Verified domain — not applicable to user accounts 22.2/25 Owner reach — 1,226 followers of yhirose 24.9/25 Track record — 58 public repos, account ~15 yr old
Inputs used Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.
Are baseline engineering and documentation practices in place?
91 Excellent · 19% of overall
How it's scored 24/24 CI workflows — 2 workflow(s) 24/24 Tests present 16/16 Linter config 9.6/9.6 Pre-commit hooks 0/6.4 .editorconfig 0/20 OpenSSF Scorecard: CI-Tests — no data
Inputs used Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.
How it's scored 30/30 README 25/25 Documentation directory 15/15 Documentation / homepage site — https://yhirose.github.io/cpp-peglib/ 10/10 Repository description 10/10 Topics — 8 topics 0/10 Wiki
Inputs used Are visible security and supply-chain practices strong, without unresolved high-risk jurisdiction exposure?
50 Moderate · 16% of overall
How it's scored 6.8/7.5 Binary-Artifacts — binaries present in source code 0/7.5 Branch-Protection — branch protection not enabled on development/release branches 0/2.5 CI-Tests — no data 0/2.5 CII-Best-Practices — no effort to earn an OpenSSF best practices badge detected 0/7.5 Code-Review — Found 0/30 approved changesets -- score normalized to 0 0/2.5 Contributors — project has 0 contributing companies or organizations -- score normalized to 0 10/10 Dangerous-Workflow — no dangerous workflow patterns detected 0/7.5 Dependency-Update-Tool — no update tool detected 0/5 Fuzzing — project is not fuzzed 2.5/2.5 License — license file detected 7.5/7.5 Maintained — 30 commit(s) and 7 issue activity found in the last 90 days -- score normalized to 10 0/5 Packaging — no data 0/5 Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0 0/5 SAST — no SAST tool detected 0/5 Security-Policy — security policy file not detected 0/7.5 Signed-Releases — no data 0/7.5 Token-Permissions — detected GitHub workflow tokens with excessive permissions 7.5/7.5 Vulnerabilities — 0 existing vulnerabilities detected
Inputs used Excluded from scoring (no data or not applicable): ci_tests, packaging, signed_releases. Remaining weights renormalized.
How it's scored 35/35 Direct dependencies free of known advisories — no direct dependency carries a known advisory 0/25 Indirect dependencies free of known advisories — transitive set not separable from development and test dependencies in this scope 0/40 No advisories left outstanding — no advisory carries a publication date
Inputs used Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 15 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.
How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight (4%): agent tooling is a real maintenance signal, but a repository with none can still reach 100/100.
65 Good · 4% of overall
How it's scored 0/45 Agent instructions — no CLAUDE.md / AGENTS.md / editor rules 0/15 Machine-readable docs (llms.txt) 37.9/40 Legible commit history — 71 of 100 human commits state their intent (structured subject or explanatory body)
Inputs used
How it's scored 18/18 One-command bootstrap — justfile, pl0/Makefile 22/22 Automated tests 11/11 Lint / format config 11/11 Static type checking — C++ (statically typed) 10/10 Reproducible environment — lockfile 10/10 Demonstrated agent practice — 5 of the last 100 commits agent-authored or agent-credited 0/8 Automated maintenance — no automated dependency updates observed 0/10 OpenSSF Scorecard: Pinned-Dependencies — dependency not pinned by hash detected -- score normalized to 0
Inputs used
How it's scored 45/45 Type-checkable code — C++ (statically typed) 51.9/55 Manageable file sizes — 3/54 source files over 60KB
Inputs used
How it's scored 0/40 API schema (OpenAPI/GraphQL/proto) 0/20 MCP server 40/40 Runnable examples — example, samples
Inputs used
Key facts 1,048 GitHub stars
23 contributors
66 commits, last 12 months
1 days since last push
57 releases
1 bus factor
1 open issues
crates.io package ecosystems
Data collection warnings Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token Could not fetch crates package 'peglib' from its registry Could not fetch crates package 'spec-harness' from its registry Could not fetch crates package 'pl0' from its registry Could not fetch crates package 'orc-jit' from its registry
More detail Star and fork history 0 ★ / 128 ⇿ When each star and fork was added, collected from GitHub and bucketed by day. Cumulative growth sits directly above the daily additions it is made of, so the two read against each other: steady organic accretion looks nothing like an abrupt, short-lived burst. Where that difference is measurable, it is reported as growth authenticity.
Forks Forks/day Releases
All 3 years Year 3 months Month
0 25 50 75 100 125 124 4 2015-10 2021-02 2026-07 Major 1 Minor 15 Patch 40
Each point covers 10 days.
OpenSSF Scorecard 3.8 / 10 3.8 aggregate
Independent, tool-agnostic security assessment from the open-source OpenSSF Scorecard . Each check rewards a security practice , not a specific vendor's tool. Checks Scorecard could not determine are marked n/a and excluded from the security score (never counted as zero). Scorecard v5.5.0 · 2026-07-30 08:09 UTC
Direct dependencies 5 Registry Package Version constraint Manifest crates.io peglib —harness/rust/Cargo.toml crates.io regex 1harness/rust/Cargo.toml crates.io serde_json 1harness/rust/Cargo.toml crates.io peglib —rust-peglib/pl0/Cargo.toml crates.io orc-jit —rust-peglib/pl0/Cargo.toml
All dependencies 15 Full resolved dependency set from the GitHub dependency graph: 2 direct and 13 indirect (transitive) packages. The transitive closure is complete when the repository commits a lockfile.
Registry Package Version Relation crates.io regex 1.12.3direct crates.io serde_json 1.0.149direct crates.io aho-corasick 1.1.4indirect crates.io itoa 1.0.18indirect crates.io memchr 2.8.0indirect crates.io proc-macro2 1.0.106indirect crates.io quote 1.0.45indirect crates.io regex-automata 0.4.14indirect crates.io regex-syntax 0.8.10indirect crates.io serde 1.0.228indirect crates.io serde_core 1.0.228indirect crates.io serde_derive 1.0.228indirect crates.io syn 2.0.117indirect crates.io unicode-ident 1.0.24indirect crates.io zmij 1.0.21indirect
Dependency advisories 0 This repository publishes no package the index resolves, so its own dependency graph was assessed — 15 packages, which also include development and test pins that never ship: 0 carry known advisories, of which 0 are direct.
No known advisories affect the assessed dependencies.
An advisory means the version recorded in the dependency graph falls inside an advisory’s affected range. Reachability is not analysed, and the graph includes development and test pins — a finding may concern tooling rather than shipped software.
Raw JSON report machine-readable