JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 26793,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 607966,
"CSS": 5539,
"HTML": 1803,
"Makefile": 378,
"Dockerfile": 348,
"JavaScript": 4937,
"TypeScript": 908,
"Tree-sitter Query": 4967
},
"pushed_at": "2026-07-17T17:26:20Z",
"created_at": "2026-03-17T16:36:05Z",
"owner_type": "User",
"updated_at": "2026-07-17T17:26:28Z",
"description": "Rust-inspired syntax sugar for Go, built on grammargen. Inspired by dingo.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "m31labs.dev",
"name": "Oscar Villavicencio",
"type": "User",
"login": "odvcencio",
"company": null,
"location": "Los Angeles, CA",
"followers": 37,
"avatar_url": "https://avatars.githubusercontent.com/u/9220505?v=4",
"created_at": "2014-10-14T20:06:47Z",
"is_verified": null,
"public_repos": 36,
"account_age_days": 4307
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2026-07-17T08:13:11Z"
},
{
"tag": "v0.5.0",
"kind": "minor",
"published_at": "2026-06-25T04:29:12Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2026-05-26T02:55:47Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2026-04-06T15:40:22Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-04-06T06:19:19Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2026-04-02T20:36:39Z"
}
],
"recent_commits": [
{
"oid": "4c7cb47cd39bde3302520b93052a8af219e405eb",
"body": "- Replace `github.com/odvcencio/ferrous-wheel` import with the new `m31labs.dev/ferrous-wheel` module path",
"is_bot": false,
"headline": "update: Update ferrous-wheel import path",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:13:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc43c16f267ba029cf7a2e8b048e8c83f0510721",
"body": "- Add v0.6.0 changelog entry covering parser fixes, fuzz testing, and CI updates.\n- Update README to reflect 19 built-in lint rules and document logging/color DSL features.",
"is_bot": false,
"headline": "document(docs): Update README and changelog for v0.6.0 release",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:12:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "516cefd7cb82ab5ca291c79f353292d2d3c13306",
"body": "- Add `fuzz-smoke` job to CI to run `FuzzTranspileProducesParsableGo` for 60s\n- Populate fuzz tests with regression seeds for range expressions and v0.6.0 stabilization bugs\n- Cover invalid UTF-8, unescaped newlines, empty parameters, and duplicate package clauses\n- Prevent future regressions in parsing and ensure generated Go remains strictly valid",
"is_bot": false,
"headline": "add(ci): Add fuzz smoke job and regression seeds to CI",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:12:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ada7c5b956190e67cd1fddd8727a98136734cd2",
"body": "- Test standalone and subscript range expressions return transpile errors\n- Prevent false errors for ranges used inside list comprehensions\n- Ensure blank range variables transpile to syntactically valid Go\n- Verify generated code parses successfully using Go's parser and token packages",
"is_bot": false,
"headline": "test: test range expression edge cases in transpiler",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:12:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d084e84f84ae82b9d1089453a692028868cf7acc",
"body": "- Rewrite \"validateNoUnparsedText\" to recursively check gaps between all AST children, preventing silent parse errors where grammar rules hide source text (e.g., hidden operators, impl blocks).\n- Add validations for illegal control characters, missing package clauses, reserved words, invalid int lit\n[…]\nr-in loops and list comprehensions to C-style counting loops.\n- Synthesize a counter variable name when the blank identifier is used as a loop variable in counting loops.\n- Remove unused bytes import.",
"is_bot": false,
"headline": "improve: improve validation checks and range expression handling",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:11:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fc2c34b8e5118f56597703a63a0c63c0b656265d",
"body": "- Detect `let` bindings where the initializer spans multiple lines.\n- Newlines are insignificant in the grammar, causing following statements to be silently merged into the binding's value.\n- Raise lint error to highlight correctness bugs rather than style violations.\n- Add helper `letSwallowFindEquals` to locate the `=` token which lacks a field tag in the AST.\n- Register rule in `init()` and update imports.",
"is_bot": false,
"headline": "add(lint): add lint rule for let-swallowing newlines",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:11:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8849106dcebf99ca25e35e9e6c36b45176535265",
"body": "- Introduce structured error reporting for tree-sitter ERROR and MISSING nodes, capped at five locations per diagnostic to avoid verbose output.\n- Add post-parse validations for illegal control bytes, invalid UTF-8, misplaced package clauses, multiline interpreted strings, and reserved keywords.\n- E\n[…]\nsing an explicit allowlist to prevent silently emitting invalid Go code.\n- Report uncovered source gaps left by tree-sitter's error recovery, including precise locations and formatted source excerpts.",
"is_bot": false,
"headline": "add(parser): Add detailed parse diagnostics and validation rules",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:11:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "84f7b1455b076fab69408f7492367545991246fc",
"body": "- Disalow bare decimal point floats (e.g. `1.`) to resolve ambiguity with range operators like `0..10`; follows Rust and Kotlin grammars.\n- Restrict valid extras to `[ \\t\\r\\n]` to align with Go's whitespace rules and prevent invalid characters like form feed from entering generated code.\n- Extract floating-point restriction logic into a dedicated helper function.\n\nBREAKING CHANGE: fix grammar for range syntax and valid whitespace",
"is_bot": false,
"headline": "fix(grammar): fix grammar for range syntax and valid whitespace",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-07-17T08:10:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7fc50dd74fb5ff207c6fe3ec1e4a95f8106a49e0",
"body": "…ckage\n\nBump gotreesitter to v0.20.5 (grammargen no longer pulls the grammars\nregistry) and move the grammars.RegisterExtension call out of the root package\ninto a new opt-in m31labs.dev/ferrous-wheel/register subpackage. The\nferrous-wheel core (transpile, format, grammar DSL) no longer links the\n~200-grammar registry (~22MB). Consumers that want .fw discoverable in the\nregistry blank-import .../ferrous-wheel/register.",
"is_bot": false,
"headline": "perf(grammar): grammar-free core; move registry registration to subpa…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-06-25T04:29:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bd1b5f4f1da3b8fb88a587f496e600803393984",
"body": "- Add MIT License agreement to project repository\n- Specifies usage and distribution terms for the software",
"is_bot": false,
"headline": "add: Add MIT License",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-06-23T17:27:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68c6c411aaa3989e6ca3a796683513757461f218",
"body": "- Update gotreesitter dependency from v0.13.4 to v0.19.1\n- Refresh go.sum to resolve new transitive dependencies",
"is_bot": false,
"headline": "bump: Bump gotreesitter to v0.19.1",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-06-02T05:25:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3b06bd6c69819e0b17a1a86896bc71599f56bec",
"body": "- Update go.mod module declaration to m31labs.dev/ferrous-wheel\n- Update all Go imports across commands, tests, and playground\n- Update dependency checksums and bump gotreesitter version\n- Add .gitignore rules for documentation and planning directories\n- Add backend and ferrous-wheel executable binaries",
"is_bot": false,
"headline": "update(module): Migrate module path to m31labs.dev",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-05-26T02:55:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e94ca916a339b360a1767183cb899ce153fbb900",
"body": "- Add agent skill guidance to the README so Ferrous Wheel sessions point to the repo-specific workflow\n- Make the required skill easier to find for future agents working in this codebase",
"is_bot": false,
"headline": "document(README): Document agent skill guidance",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-05-07T06:58:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4f07dd25729a788c5a89ffca4f258ce24d0432b",
"body": "- Delete scripts/deploy.fw: a stale project-specific orchestration\n helper that no longer belongs in this repo.\n- Change the playground-backend Makefile target to a local image\n tag instead of an external registry reference.\n- Drop an unrelated-repo mention from a test comment; the\n reproducer stands on its own.",
"is_bot": false,
"headline": "chore: remove legacy orchestration and genericize playground build",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-16T18:46:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b695749a21065f8d89f53b26b7ef70ac8b9a7ae9",
"body": "- Add nil-safe guard in collector.text() to handle optional CST fields\n- Fix SIGSEGV when transpiling untyped top-level const or var declarations\n- Previously childByField(spec, \"type\") returned nil for untyped declarations, causing panic in gotreesitter when dereferencing nil node\n- Add regression test covering single/block const and var declarations\n- Bump gotreesitter v0.10.1 → v0.13.4 for latest fixes",
"is_bot": false,
"headline": "fix(typeenv): prevent panic on untyped const/var declarations",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-14T08:20:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f9ced3ecbf9d6b54695cbea07208937d958830d",
"body": "- Add findParentGoMod helper to locate enclosing go.mod from source path\n- Modify writeTempProject to stage temp builds under .ferrous-wheel-build/ when inside a Go module\n- Inherit parent module's go.mod and replace directives instead of creating isolated module\n- Allow .fw scripts to import third-party packages already declared in host project\n- Update tests to verify both isolated and module-inheritance staging paths",
"is_bot": false,
"headline": "add(cli): inherit parent Go module deps in .fw scripts",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-14T06:39:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c027b3ed8df77d5cd36087ad97d420f352fba7c",
"body": "- Realign fwTranspiler struct fields to use consistent indentation\n- Format lint rule method receivers for proper spacing alignment\n- Split nestedTimeSameNameRule.Description() across multiple lines for readability\n- No functional changes, purely code formatting improvements",
"is_bot": false,
"headline": "format: align fwTranspiler struct fields and lint rule methods",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T21:57:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c51f8bbdb433d0458cfd7fe77c1f884bec029fc",
"body": "- Replace Str(\"with\") and Str(\"time\") with Sym(\"identifier\") for log block commands to prevent keyword extraction\n- Add explanatory comments about identifier validation in the transpiler\n- Maintain syntax compatibility while allowing \"with\" and \"time\" to be used as identifiers elsewhere",
"is_bot": false,
"headline": "improve(grammar): use identifier for log block commands",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T21:31:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e111948b3af53b7c6d04de2f996bb330f863d838",
"body": "- Change log_statement to use identifier instead of string literals for level\n- Allow \"info\", \"error\", \"time\", etc. to be used as normal Go identifiers without being parsed as log keywords\n- Add tests verifying time.Now(), error return types, and info variables are not misidentified",
"is_bot": false,
"headline": "fix(grammar): use identifier for log levels to prevent keyword conflicts",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:58:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce658afff07300e9790ce83ac0169ffc88eed66f",
"body": "- Add comprehensive test covering nested time blocks with labels and log attributes\n- Verify slog integration (Info/Debug calls), color helpers, and depth tracking\n- Confirm with-block scoping produces .With() attribute injection\n- Test interaction with retry constructs, f-string interpolation, and let-to-:= transpilation\n- Validate log.config! is consumed during transpilation and excluded from output",
"is_bot": false,
"headline": "add(transpile): end-to-end test for logging transpilation",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:50:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82822112aecae6d0716442d3a564470c1d66da06",
"body": "- Add eight new logging-focused lint rules to improve structured logging practices\n- bare-error: warn on error logs without context attributes (debugging aids)\n- bare-fatal: warn on fatal logs without context attributes\n- debug-no-attrs: flag debug/trace logs that lack structured attributes\n- time-e\n[…]\nin-hot-loop: info-level flag for logs inside loops (performance)\n- Add helper functions: logStatementLevel, countLogAttrs, countLogDescendants\n- Include comprehensive test coverage for all 8 new rules",
"is_bot": false,
"headline": "add(lint): logging lint rules for context, timing and loops",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:45:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f09b48f2f69740628aa5da34eb82cc92d0e908f0",
"body": "- Add custom slog handler implementation with trace level support\n- Include colored level labels with automatic terminal detection\n- Support FW_LOG environment variable for runtime level override\n- Add relative timestamps showing elapsed time since program start\n- Generate helper code via buildLogHelper() respecting log.config!() settings\n- Avoid duplicate color helper when log helper already provides one\n- Add required strings and sync imports for logging support",
"is_bot": false,
"headline": "add(logging): runtime logging infrastructure with colored output",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:41:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e66ff67347f6d31d78b56e5e99641b226ba1f1d",
"body": "- Add emitLogConfig to handle `log.config!` nodes in the transpiler\n- Parse config options for level, format, and time settings\n- Store parsed values in transpiler fields for later use during code generation\n- Config is consumed at init-time, producing no inline output\n- Include tests for multiple configuration scenarios",
"is_bot": false,
"headline": "add(logging): support log.config! directive",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:36:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f1667bbdbebcf9c47e78ae09936684534d13375",
"body": "- Add `log_time_block` node handler that transpiles `time \"name\" { ... }` syntax\n- Emit entry log with ⏱ prefix and block name, incremented depth tracking\n- Generate time.Now() variable and emit duration on exit using time.Since()\n- Support nested time blocks with unique counter-based variable naming\n- Inject fwlogTimeHelperDef with _fwlogTreePrefix and _fwlogTreeClose helpers for tree visualization\n- Add tests for basic time block, attributes, nested blocks, and helper emission",
"is_bot": false,
"headline": "add(transpile): time block logging with duration tracking",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:33:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5ee379419805999905145e2da82a271f78118b6",
"body": "- Add emitLogWithBlock to handle 'with' blocks that scope log attributes\n- Generate trace-level enter/exit logs with duration measurement\n- Push scoped logger via slog.Default().With() and restore previous on exit\n- Register required imports for time, context, and slog helpers\n- Add tests for basic with block, trace spans, and nested scenarios",
"is_bot": false,
"headline": "add(logging): support with blocks for scoped logger attrs",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:31:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81de55cafc4a7ae524262e7db9e54b494b156314",
"body": "- Add emitColorCall to handle color.style(value) syntax in log statements\n- Map color styles (red, green, bold, italic, etc.) to ANSI escape codes\n- Generate _fwcolor() helper that respects NO_COLOR/FW_NO_COLOR env vars and detects TTY\n- Support nested color calls for combined styling\n- Add tests for color transpilation including nested styles and helper emission",
"is_bot": false,
"headline": "add(transpile): color call transpilation for styled output",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:28:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf22d6018b2eb200679209cdb7a9fed2fbf30c85",
"body": "- Add log statement transpilation to Go's log/slog\n- Support trace/debug/info/warn/error/fatal levels with appropriate slog calls\n- Handle log attributes as key-value pairs or bare identifiers (auto-expanded)\n- Auto-inject log/slog and context imports when logging is used\n- Fatal logs emit slog.Error followed by os.Exit(1)\n- Add comprehensive tests covering all levels and attribute styles",
"is_bot": false,
"headline": "add(transpile): logging statement support with slog backend",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:25:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45fb19a68ff7f6e13187bd9d63f363d38ed3e1ba",
"body": "- Add `log.config!` top-level directive for configuring log level, time format, and output format\n- Add `color.*` expression helpers supporting colors (red, green, cyan, etc.) and styles (bold, italic, underline)\n- Wire new rules into expression and top-level declaration grammars with proper conflict handling\n- Add tests for log.config! parsing, partial options, and nested color expressions",
"is_bot": false,
"headline": "add(parser): log.config! directive and color.* expressions",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:19:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "386fa4377e7a95dc20b22eb77c641550b52a8522",
"body": "- Add `log_with_block` grammar rule for scoped context: `with key: value { body }` or `with bare_ident { body }`\n- Add `log_time_block` grammar rule for named timing: `time \"name\" { body }` with optional attributes\n- Wire both new rules into `_statement` grammar for parsing\n- Add LR(1) conflict declarations for the new statement types\n- Add comprehensive tests covering basic parsing, bare identifiers, attributes, and nesting",
"is_bot": false,
"headline": "add(grammar): with and time logging blocks",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:14:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92ae265fc63a4f3700e7cdf6dddba53d088c72ec",
"body": "- Extend log_statement message field to accept fstring type in addition to string literals\n- Update outdated comment about f-strings already being string literal variants\n- Add test coverage for all log levels (trace, debug, info, warn, error, fatal)\n- Simplify test error messages for consistency",
"is_bot": false,
"headline": "update(grammar): allow f-strings as log message arguments",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:11:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "505550e1d15274087cecda944de20482e3c3ffb2",
"body": "- Add log_statement grammar rule supporting trace, debug, info, warn, error, fatal levels\n- Support structured logging with key:value pairs and bare identifier attributes\n- Use string_literal for messages to avoid comma operator ambiguity\n- Wire log_statement into statement grammar with conflict resolution\n- Add comprehensive parse tests for all log levels and attribute styles",
"is_bot": false,
"headline": "add(grammar): support level-based logging statements",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T20:06:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3be0a896aa579700e97197a11ffec044acbcbf6b",
"body": "- Add spaces around `+` operator in fibonacci benchmark for readability\n- Align method receivers and function signatures in lint rule structs\n- Fix comment alignment on severity constants",
"is_bot": false,
"headline": "format: apply consistent Go code formatting",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-09T07:48:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbf72ef679f89e3facb959e38795dfd50507191b",
"body": "- Add f-string identifier detection to analyze identifiers inside interpolation expressions\n- Extract identifiers from f-string expressions like f\"hello {name}\"\n- Filter Go keywords and builtin functions from identifier counting\n- Add deployment script for Docker build, push and Kubernetes rollout\n- Support build contexts for multi-repository Docker builds\n- Support pre-build commands before Docker image creation\n- Inject version info from git tags for example-service deployments",
"is_bot": false,
"headline": "add(lint,scripts): support f-string identifiers and add deployment tool",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T23:42:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e32305bcfc1fc3cc3eeb2dc9559cd1d24136aad7",
"body": null,
"is_bot": false,
"headline": "add: Makefile targets, gitignore, README tooling section",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:40:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f003331dd06af9d0a552da9919182e3f224490fd",
"body": null,
"is_bot": false,
"headline": "add(playground): backend execution service with sandbox",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:38:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8fe5f552183677fdee3fe8c7121c1b6855af766",
"body": null,
"is_bot": false,
"headline": "add(playground): frontend with live WASM transpilation",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:35:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfbffe24ee58d80d5cf713bd571eebf874e14098",
"body": null,
"is_bot": false,
"headline": "add(playground): WASM transpiler build",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:32:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05e435d0811da1cd7cdc4262be0b5e90b92843da",
"body": null,
"is_bot": false,
"headline": "add(bench): compile-time benchmarks and results README",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:31:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ce7c66d7bba770c21a6bada19db587cdf3f192f",
"body": "…, comprehension",
"is_bot": false,
"headline": "add(bench): runtime parity benchmarks — fibonacci, json, enum, fanout…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:27:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f8a5b76cecb05f06de5bac3f79427e3db435ea5",
"body": null,
"is_bot": false,
"headline": "add(editor): LSP client, snippets, and extension packaging",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:18:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1de8fe650e88e154b0d4fad26b189515d5a93b19",
"body": null,
"is_bot": false,
"headline": "add(editor): VS Code extension scaffold with TextMate grammar",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T15:15:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6acd7e1189962de74c95a0aeb37679d69f57ce4",
"body": "README: add fmt/lint commands to usage, let mut docs, if-expressions,\npostfix ?, updated design notes for type inference improvements.\nCHANGELOG: document all 6 new features for v0.2.0 release.",
"is_bot": false,
"headline": "docs: update README and add CHANGELOG for v0.2.0",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T06:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89160460940dcde0dd363649ec9932c8dd8d8781",
"body": null,
"is_bot": false,
"headline": "test: cross-feature integration tests for v0.2.0 feature suite",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T06:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6acfa8ab17b06969729140dd0d8584bfa4bdb2e0",
"body": "…e{} fallbacks",
"is_bot": false,
"headline": "fix(infer): migrate emit methods to UnifyWithContext, reduce interfac…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:49:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d60f0e133f33918007f3ee8af9ad5ec3715f9c19",
"body": "…text",
"is_bot": false,
"headline": "add(infer): bidirectional resolve with lambda inference from call con…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:44:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a77d42e18edf4ea52f29dcf73f64fdb2244a7dde",
"body": "…ectional inference",
"is_bot": false,
"headline": "add(types): TypeVar, InferenceContext, and UnifyWithContext for bidir…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:37:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed15ec12162b2b7570a1b60f116e04d10f18a174",
"body": null,
"is_bot": false,
"headline": "add(lint): remaining rules, lint CLI, pipeline integration",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:33:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be4a7466d0ad2e297aa1db912cc4fb4c2d4137ba",
"body": null,
"is_bot": false,
"headline": "add(lint): lint framework with unused-let, unused-mut, empty-match rules",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:26:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e5257c4fe769f52fe3bebf558657bc3e2c4a7d7",
"body": null,
"is_bot": false,
"headline": "add(cli): ferrous-wheel fmt command with -w and --check flags",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:19:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "869420ff530d5f81a57c39218f229469b86d57cd",
"body": null,
"is_bot": false,
"headline": "add(format): CST-preserving source formatter for .fw files",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:17:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ea78c03448911f24ef2ff2ff6d55fd581670504",
"body": "expr? now transpiles to val, err := expr; if err != nil { return ..., err }.\nReuses emitTryAssignment infrastructure. Works in let, :=, =, and standalone\ncontexts. Validates enclosing function returns error. Coexists with prefix try.",
"is_bot": false,
"headline": "add(transpile): postfix ? error propagation transpilation",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:11:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14fdbddee7ad93571039ea7f8c5f8ca90983632e",
"body": null,
"is_bot": false,
"headline": "add(grammar): postfix ? error propagation operator",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T03:04:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bef07efb9a184e32b2d4e357498d363122775a09",
"body": "…on position\n\nif/else in expression context (let RHS, return, call args) transpiles\nto an immediately-invoked function. Validates else branch required,\nno try/? in branches, branches end with expressions. Type unification\nacross branches follows the ternary/match IIFE pattern.",
"is_bot": false,
"headline": "add(transpile): if-expressions via IIFE when if_statement in expressi…",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T02:50:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02a77f690ed98845e120706d499e11c7b3318826",
"body": "Immutable let bindings now produce hard errors on reassignment.\nlet mut bindings allow reassignment. Go-native := stays unrestricted.\nCompiler-generated temporaries (_fw*) bypass mutability tracking.",
"is_bot": false,
"headline": "add(transpile): enforce let/let mut immutability at assignment sites",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T02:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d597be1290878bf2a352bfa890cbefd53e0b12d7",
"body": "- Add mutable field to Scope for tracking let (immutable) vs let mut bindings\n- Add setWithMut, isMutable, and isLetBinding methods with parent scope traversal\n- Update cloneScope to preserve mutability information\n- Add comprehensive tests for mutability, inheritance, and cloning",
"is_bot": false,
"headline": "add(typeenv): track variable mutability in Scope for let/let mut",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T02:29:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59f3a2c1b9ab45724735aea6b79b481054e6fc83",
"body": "- Add optional `mut` keyword to let_declaration grammar rule for single bindings\n- Add optional `mut` keyword to let_multi_declaration grammar rule for multi-assignments\n- Add tests for mutable let bindings and verify immutable let still works",
"is_bot": false,
"headline": "add(grammar): support mutable let bindings with mut keyword",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-04-06T02:24:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2892c73aca02dc9d1defa0de19ad3a3872373260",
"body": null,
"is_bot": false,
"headline": "fix(ci): disable race detector preemptively",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-04-02T21:33:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f970ce27a1e487cc9aab1f612a3c3ada7dd307d9",
"body": "- Promote golang.org/x/tools from indirect to direct dependency in go.mod\n- Update go.sum with new transitive dependencies",
"is_bot": false,
"headline": "add(deps): add golang.org/x/tools as direct dependency",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-04-02T20:36:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "17678a2b723b8f7a21cbc017d7c8f6fc7402af1e",
"body": "…d struct\n\n- Add warning system for non-fatal transpilation issues with line/column locations\n- Emit warnings to stderr in CLI and embed as // fw:warn: comments in generated code\n- Add cross-file LSP support with directory-level type environment sharing\n- Implement tree-sitter based hover and go-to-\n[…]\nrite guidance\n- Track symbol locations across files for cross-file go-to-definition\n- Avoid reflection fallback for typed null coalesce and safe navigation operators when type information is available",
"is_bot": false,
"headline": "add: add warnings, cross-file LSP, type scoping, writable mmap, packe…",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-04-02T20:22:10Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fa390284f39f1659c8e67233b847623b1d9afc40",
"body": "- Add GitHub Actions workflow triggered on push/PR to main\n- Test job runs tests with race detector using Go 1.25\n- Lint job checks gofmt, go mod tidy, and go vet\n- Build job compiles the ferrous-wheel binary",
"is_bot": false,
"headline": "add(ci): add continuous integration workflow",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-04-02T20:17:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06f43364771b9df18af21c3965c60f3ddba0f0ba",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a9a2d31c'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:26:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c0dc1a0a69607faa17447d47a85c68e0d945876",
"body": "- Add textDocument/completion handler for autocomplete of functions, structs, enums, and member access\n- Add textDocument/definition handler for go-to-definition on functions, variables, and types\n- Update grammar to support type parameters in enums and generic types in derive/impl blocks\n- Fix let_\n[…]\n cycle detection in type conversion to prevent infinite recursion\n- Add nil checks throughout type parsing to improve robustness\n- Update ternary transpilation to use typed IIFE instead of interface{}",
"is_bot": false,
"headline": "add(lsp): LSP completion and go-to-definition support",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:25:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8b519672c710652047658184b37a560fcc3aa729",
"body": "- Add textDocument/completion handler for autocomplete of functions, structs, enums, and member access\n- Add textDocument/definition handler for go-to-definition on functions, variables, and types\n- Update grammar to support type parameters in enums and generic types in derive/impl blocks\n- Fix let_\n[…]\n cycle detection in type conversion to prevent infinite recursion\n- Add nil checks throughout type parsing to improve robustness\n- Update ternary transpilation to use typed IIFE instead of interface{}",
"is_bot": false,
"headline": "add(lsp): LSP completion and go-to-definition support",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:25:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6823295f5450877c2375b068ca97ae6cbb160498",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-ac5a4ee4'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:08:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f275921f334062e7dfcf24f3fe8d307bfd6f9e92",
"body": "- Build type environment at transpilation start with best-effort import loading\n- Add typed code paths for ternary, match, null-coalesce, safe-nav, lambda, and list comprehension\n- Generate concrete Go types instead of interface{} when type resolution succeeds\n- Convert fanIn helper to generic function eliminating reflect dependency\n- Track import paths in TypeEnv for resolving external package types\n- Fall back to interface{} generation when type resolution fails",
"is_bot": false,
"headline": "add(transpiler): integrate type environment into code generation",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:07:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "610eb803b5cf9ed7fb0d0dea18036632be764553",
"body": "- Build type environment at transpilation start with best-effort import loading\n- Add typed code paths for ternary, match, null-coalesce, safe-nav, lambda, and list comprehension\n- Generate concrete Go types instead of interface{} when type resolution succeeds\n- Convert fanIn helper to generic function eliminating reflect dependency\n- Track import paths in TypeEnv for resolving external package types\n- Fall back to interface{} generation when type resolution fails",
"is_bot": false,
"headline": "add(transpiler): integrate type environment into code generation",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:07:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cdb521b8420ef386a27ec34f2dfab88f074eb23f",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-ad8fd03e'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:01:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e32ee91fa917711c732b7431f14e3192c4d7476",
"body": "# Conflicts:\n#\tgrammar.go",
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a7a06620'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:01:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59df89a5f7fd96e0a854ecb8fccac9e486003cf9",
"body": "- Add `emitLineDirective` function to generate Go //line directives mapping generated code to original .fw source locations\n- Introduce `TranspileOptions` struct with `SourceFile` field for configuring transpilation\n- Update CLI to pass source filename to transpiler, enabling accurate error stack traces in generated code\n- Add tests verifying line directives are emitted when source file provided and omitted when absent",
"is_bot": false,
"headline": "add: source map support via //line directives",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:00:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88100dac432d599f3ce945fd60c1f2bfc29e4efa",
"body": "- Add TranspileOptions struct with SourceFile field for configuring transpilation\n- Emit Go //line directives before function declarations, enums, and impl blocks\n- Wire up CLI to pass source filename, enabling debug stack traces to point to .fw files\n- Add tests for line directive generation with and without source file option",
"is_bot": false,
"headline": "add: source map //line directives",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:00:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da2070e8092bd21f4848d9740b0ae5bbafba3330",
"body": "- Add TranspileOptions struct with SourceFile field for configuring transpilation\n- Emit Go //line directives before function declarations, enums, and impl blocks\n- Wire up CLI to pass source filename, enabling debug stack traces to point to .fw files\n- Add tests for line directive generation with and without source file option",
"is_bot": false,
"headline": "add: source map //line directives",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T18:00:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "810ca892ed0c8afa3c9a5d7ef7d448f0b342d6e9",
"body": "- Add optional type annotation syntax to let declarations: `let x: int = 42`\n- Add type annotations to lambda parameters: `fn(x: int, y: int) ...`\n- Add optional return type annotation to lambdas: `fn(x: int) -> int { ... }`\n- Add typed binding support for multi-declarations: `let (a: int, b: string\n[…]\ndd GLR conflicts for typed vs untyped parameter alternatives\n- Remove inline NonKeywordStrings assignments (moved to dedicated configuration)\n- Convert AppendChoice calls to explicit loops for clarity",
"is_bot": false,
"headline": "add(grammar): type annotations for let bindings and lambdas",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:55:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c8b8c55bc92a42e3d77b95ead6456021890644d8",
"body": "- Add optional type annotation syntax to let declarations: `let x: int = 42`\n- Add type annotations to lambda parameters: `fn(x: int, y: int) ...`\n- Add optional return type annotation to lambdas: `fn(x: int) -> int { ... }`\n- Add typed binding support for multi-declarations: `let (a: int, b: string\n[…]\ndd GLR conflicts for typed vs untyped parameter alternatives\n- Remove inline NonKeywordStrings assignments (moved to dedicated configuration)\n- Convert AppendChoice calls to explicit loops for clarity",
"is_bot": false,
"headline": "add(grammar): type annotations for let bindings and lambdas",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:55:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6539ff59f74c484f53985f09d302415bf82b59e1",
"body": "- Add public accessor methods to TypeEnv for funcs, structs, enums, imports, and filename\n- Expose GetFWLanguage() to allow external access to cached tree-sitter language\n- Add comprehensive tests for stdlib import resolution (fmt, os, net/http)\n- Verify graceful error handling for nonexistent package imports",
"is_bot": false,
"headline": "add: expose TypeEnv accessors and import resolution tests",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:38:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78bdd12cb0806d6f204b96453a54eefab37eb50e",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a821bce3'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:01:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0fe6257ba07489ae12b7cb2f0b5de982b33d4cd0",
"body": "- Add complete LSP server implementation supporting JSON-RPC 2.0\n- Implement textDocument/hover for function and variable type lookup\n- Add textDocument/documentSymbol for code outline navigation\n- Support full document lifecycle with didOpen/didChange/didClose\n- Publish diagnostics via transpilation validation on document changes\n- Add `lsp` subcommand to CLI entry point\n- Export CollectTypes for external LSP server consumption\n- Include comprehensive test suite covering server lifecycle",
"is_bot": false,
"headline": "add(cli): Add LSP server support",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:01:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a641a6d1e0a03f83d4d9a5b7dd7331a1ad09458",
"body": "- Add complete LSP server implementation supporting JSON-RPC 2.0\n- Implement textDocument/hover for function and variable type lookup\n- Add textDocument/documentSymbol for code outline navigation\n- Support full document lifecycle with didOpen/didChange/didClose\n- Publish diagnostics via transpilation validation on document changes\n- Add `lsp` subcommand to CLI entry point\n- Export CollectTypes for external LSP server consumption\n- Include comprehensive test suite covering server lifecycle",
"is_bot": false,
"headline": "add(cli): Add LSP server support",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T17:01:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc0540d3aa630ea761d16810cd45c4d58720c2b1",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a3fed3bb'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:54:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb631529a92f660dc27afc2e946bd3a91d0ec6c3",
"body": "- Add TestCorpusTranspiles to validate all .fw files in testdata/corpus transpile successfully\n- Include 5 corpus files covering key language features: enums/match, guard/unless, for/range loops, retry/until, and pipe operator\n- Verify transpiled output is non-empty and avoids reflect import\n- Enable regression testing for language feature implementations",
"is_bot": false,
"headline": "add: corpus test suite for transpiler validation",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:54:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c06a46ba1e4f94366ddf9ec16594964df0495dff",
"body": "- Add TestCorpusTranspiles to validate all .fw files in testdata/corpus transpile successfully\n- Include 5 corpus files covering key language features: enums/match, guard/unless, for/range loops, retry/until, and pipe operator\n- Verify transpiled output is non-empty and avoids reflect import\n- Enable regression testing for language feature implementations",
"is_bot": false,
"headline": "add: corpus test suite for transpiler validation",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:54:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4aa9cf9baa0433bfb85543ed7c69207c3dc0fd3",
"body": "…sion\n\n- Integrate TypeEnv into fwTranspiler for type-aware code generation\n- Resolve and unify types in ternary, match, null coalesce expressions\n- Add typed lambda emission with resolved return and parameter types\n- Infer element types for list comprehension slice generation\n- Split fan-in into ge\n[…]\ne navigation with nil checks for concrete pointer types\n- Register loop vars and scope management for comprehension type resolution\n- Update tests to accept both interface{} and concrete typed outputs",
"is_bot": false,
"headline": "add(transpiler): integrate type environment for typed expression emis…",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:48:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "0d72a8624d243a3e1215c50032c994eaa789673e",
"body": "…upport\n\n- Add complete LSP server implementation in cmd/ferrous-wheel/lsp.go\n- Support hover, completion, go-to-definition, document symbols, and diagnostics\n- Implement document lifecycle with debounced re-analysis on changes\n- Export GetFWLanguage(), CollectTypes() for external use\n- Add public a\n[…]\ncts(), Enums(), Imports(), SetFilename()\n- Add comprehensive test suite covering initialize, hover, completion, definition, symbols, and lifecycle\n- Enable IDE/editor integration via JSON-RPC protocol",
"is_bot": false,
"headline": "add(cmd/lsp): add LSP server with hover, completion, and definition s…",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:47:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1e4e9dd058be5fb0a53bc4e1c20bae76464a0239",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a289c026'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:38:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2de832016d6d884048d9546ad36bc1ab109155a",
"body": "- Add Unify() for type unification supporting untyped constants, nil, and structural equality\n- Add Resolve() for expression type inference from AST nodes\n- Support diverse expressions: calls, selectors, lambdas, pipelines, match, list comprehensions\n- Implement Go package import loading via golang.\n[…]\nnvert between go/types and internal Type representations with named type preservation\n- Add field access resolution and type expression parsing\n- Include comprehensive tests for type unification rules",
"is_bot": false,
"headline": "add(type): expression resolution and Go import loading",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:37:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3c66165d3728acc38b2c3fa87014d024677fdda3",
"body": "- Add Unify() for type unification supporting untyped constants, nil, and structural equality\n- Add Resolve() for expression type inference from AST nodes\n- Support diverse expressions: calls, selectors, lambdas, pipelines, match, list comprehensions\n- Implement Go package import loading via golang.\n[…]\nnvert between go/types and internal Type representations with named type preservation\n- Add field access resolution and type expression parsing\n- Include comprehensive tests for type unification rules",
"is_bot": false,
"headline": "add(type): expression resolution and Go import loading",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T16:37:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ea1d737e380789c612951957b4c378f5e2df9f2",
"body": null,
"is_bot": false,
"headline": "Merge branch 'worktree-agent-a9c00f40'",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:16:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "671cdc8a35deac2e040f9850b599a9b30502c107",
"body": "- Add comprehensive type system infrastructure for the FerrousWheel compiler\n- Implement Type interface with representations for primitives, pointers, slices, maps, channels, functions, structs, enums, interfaces, generics, and type parameters\n- Create TypeEnv for managing file-level scopes with hie\n[…]\neEquals for structural type equality\n- Add ZeroExpr to generate Go zero-value expressions for comparable types\n- Include comprehensive test coverage for type environment operations and collection pass",
"is_bot": false,
"headline": "add: type system infrastructure with TypeEnv and collection pass",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:15:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1536f492602a6a2f1b277712d57fc5c6fc5c91c6",
"body": "- Add comprehensive type system infrastructure for the FerrousWheel compiler\n- Implement Type interface with representations for primitives, pointers, slices, maps, channels, functions, structs, enums, interfaces, generics, and type parameters\n- Create TypeEnv for managing file-level scopes with hie\n[…]\neEquals for structural type equality\n- Add ZeroExpr to generate Go zero-value expressions for comparable types\n- Include comprehensive test coverage for type environment operations and collection pass",
"is_bot": false,
"headline": "add: type system infrastructure with TypeEnv and collection pass",
"author_name": "Oscar Villavicencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:15:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7256028204a13e1f374d8a3790863b59c4aa4538",
"body": "- Add unified Type interface with implementations for all Go types: primitives, pointers, slices, maps, channels, functions, structs, interfaces, enums, generics, and named types\n- Include UntypedConstType for constant inference and UnresolvedType as error placeholder\n- Implement TypeEquals for stru\n[…]\nables, functions, structs, and enums\n- Add ImportScope structure for tracking exported types from imported packages\n- Include comprehensive tests for scope stacking, type registration, and error cases",
"is_bot": false,
"headline": "add: type system and environment infrastructure",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:11:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "be253d8b4e3a817f6f140faf4a7d2cb974b6723a",
"body": "- Add TranspileOptions struct with SourceFile field for configuring transpilation\n- Emit //line directives before function declarations, enums, and impl blocks to map Go errors back to original .fw source\n- Inject line directives only when source file is specified, skip for injected support code\n- Update CLI to use TranspileWithOptions with the original source filename\n- Add comprehensive tests for line directive generation in various constructs",
"is_bot": false,
"headline": "add(sourcemap): line directive support for source mapping",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:05:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc473b05e55e00d46fdf43143289d64b0af627f7",
"body": "- Add optional type annotations for let declarations: `let x: int = 42`\n- Support typed bindings in let multi-declarations: `let (a: int, b: string) = f()`\n- Add typed parameters and return types for lambdas: `fn(x: int) -> int { ... }`\n- Add grammar conflicts to handle typed parameter/binding ambiguities\n- Add comprehensive tests validating the new type annotation syntax",
"is_bot": false,
"headline": "add(grammar): type annotations for let bindings and lambdas",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:03:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa3ba48ba6c7479f01ecff8cf51de3cef5188420",
"body": "- Add Type interface as the foundation for FW and Go type representation\n- Implement all Go type kinds: Primitive, Pointer, Slice, Map, Chan, Func, Struct, Interface\n- Add FW-specific types: EnumType for sum types, GenericType with type parameters, TupleType for multi-return\n- Implement TypeEquals w\n[…]\nolution for untyped constants\n- Implement ZeroExpr for generating Go zero-value expressions with comparable struct checks\n- Add UnresolvedType as poison pill for type errors discovered at compile time",
"is_bot": false,
"headline": "add(types): unified type system with structural equality",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:01:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ffb00b28d743efd78347724076e0e56f48b81bd5",
"body": "- Add golang.org/x/mod, golang.org/x/sync, and golang.org/x/tools as indirect dependencies",
"is_bot": false,
"headline": "add: golang.org/x tools dependencies",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T09:00:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28f3f23edf2d9b8973b3a4538e4a4db5010644e2",
"body": "- Update Go toolchain version from 1.24.0 to 1.25.0",
"is_bot": false,
"headline": "bump(go): Go version to 1.25.0",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T08:59:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c273700fc6f8bcc8d9270573999be22679ae9945",
"body": "- Update gotreesitter dependency to v0.10.1\n- Remove local replace directive pointing to development path",
"is_bot": false,
"headline": "bump: gotreesitter v0.10.0 to v0.10.1",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T08:03:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a2b9dfe5b7bfcb239fdcac005df4cb2d351774a",
"body": "- Add documentation for generic support in enums, `derive`, and `impl` constructs with end-to-end type parameter preservation\n- Clarify `emit` command behavior: writes to stdout with generated-file header for easy inspection and piping\n- Document `build` command improvements: `-o` accepts nested pat\n[…]\n Result/Option examples to show type inference and document collision-free helper injection\n- Add behavior notes for arena (panic on invalid sizes), mmap (requires []byte target), and built-in helpers",
"is_bot": false,
"headline": "update: document generic enums, derive, impl and CLI usage",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T07:46:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2f02c22c8285c19516f1c05d1868b2d58e850d4c",
"body": "- Add grammar support for optional type parameters on enum declarations\n- Update grammar to accept generic types in derive and impl declarations\n- Implement type parameter extraction for enum constructor functions\n- Fix JSON derive for generic types using local alias instead of global\n- Replace stri\n[…]\npect user-defined Result/Option types to avoid conflicts\n- Prevent false positives from string literal content in detection\n- Add comprehensive tests for generic enum, derive, impl, and type inference",
"is_bot": false,
"headline": "add(generics): support generic enums, derive, and impl blocks",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T07:34:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9e0b6920154a18bfd9a9470630e903015aced776",
"body": "- Add comprehensive error handling and safety checks to arena allocators\n- Validate mmap_block target type must be []byte during transpilation\n- Handle empty files in mmap by checking size before mapping\n- Add overflow checks for arena allocations with descriptive panic messages\n- Extract writeStressProject helper for test file setup\n- Add runtime validation tests for arena overflow and mmap error cases",
"is_bot": false,
"headline": "improve(memory): add runtime safety checks for arena and mmap",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T07:02:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e237dc7ad273eb367a81791414cb7f0c3547a53b",
"body": "- Add emit command to print generated Go to stdout for inspection\n- Refactor build command to compile native binaries with -o output flag\n- Add CLI test coverage with runCLI helper and error case testing\n- Introduce fuzzing, stress tests, and danmuji-generated BDD tests\n- Add focused tests for gramm\n[…]\nission, concurrency, memory features, and imports\n- Update README with corrected usage examples and feature documentation\n- Restructure main.go with clearer command separation and temp project helpers",
"is_bot": false,
"headline": "add: emit command, comprehensive test suite, and updated docs",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-21T06:56:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "97b4a8aa775269338a3344e0b2476a9885cbfad8",
"body": "… guard else",
"is_bot": false,
"headline": "fix(grammar): accept expressions in mmap path, allow statements after…",
"author_name": "odvcencio",
"author_login": "odvcencio",
"committed_at": "2026-03-18T07:19:32Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 6,
"commits_last_year": 127,
"latest_release_at": "2026-07-17T08:13:11Z",
"latest_release_tag": "v0.6.0",
"releases_from_tags": true,
"days_since_last_push": 13,
"active_weeks_last_year": 11,
"days_since_latest_release": 13,
"mean_days_between_releases": 21.1
},
"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": [
{
"name": "m31labs.dev/ferrous-wheel",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": null,
"registry_url": "https://pkg.go.dev/m31labs.dev/ferrous-wheel",
"is_deprecated": false,
"latest_version": "v0.6.0",
"repository_url": null,
"versions_count": 6,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-17T08:13:11Z",
"latest_version_yanked": null,
"days_since_latest_publish": 13
}
]
},
"popularity": {
"forks": 1,
"stars": 7,
"watchers": 0,
"fork_history": {
"days": [
{
"date": "2026-06-08",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [
"editor/vscode/tsconfig.json"
],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 86253,
"source_files_sampled": 61,
"oversized_source_files": 1,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/odvcencio/gotreesitter",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.20.5"
},
{
"name": "golang.org/x/tools",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.43.0"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.1"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 0
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "odvcencio",
"commits": 127,
"avatar_url": "https://avatars.githubusercontent.com/u/9220505?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum",
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 8,
"reason": "binaries present in source code",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 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": 10,
"reason": "project is 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": "13 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "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": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "23 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "4c7cb47cd39bde3302520b93052a8af219e405eb",
"ran_at": "2026-07-30T21:22:04Z",
"aggregate_score": 4.3,
"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-17T17:28:30Z",
"oldest_open_prs": [],
"last_merged_pr_at": null,
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/odvcencio/ferrous-wheel",
"host": "github.com",
"name": "ferrous-wheel",
"owner": "odvcencio"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"security": 43,
"vitality": 74,
"community": 30,
"governance": 37,
"engineering": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"commits_last_year": 127,
"human_commit_share": 1,
"days_since_last_push": 13,
"active_weeks_last_year": 11
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 13 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 13
}
}
],
"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": "127 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 127
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "13 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"releases_count": 6,
"latest_release_tag": "v0.6.0",
"releases_from_tags": true,
"days_since_latest_release": 13,
"mean_days_between_releases": 21.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "6 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 6
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 13 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 13
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~21.1 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 21.1
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "unverified",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": "repository_too_young",
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": null,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "maintenance record not established from the collected data",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_unverified",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 30,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 13,
"inputs": {
"forks": 1,
"stars": 7,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "7 stars",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 7
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 37,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 1,
"top_contributor_share": 1
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution, PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution",
"pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 0
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "no decided pull requests or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_decided_prs_or_data",
"params": {}
}
],
"max_points": 38.25
},
{
"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": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 56,
"inputs": {
"followers": 37,
"owner_type": "User",
"is_verified": null,
"owner_login": "odvcencio",
"public_repos": 36,
"account_age_days": 4307
},
"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": "37 followers of odvcencio",
"points": 11.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 37,
"login": "odvcencio"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "36 public repos, account ~11 yr old",
"points": 23.4,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 36
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"m31labs.dev/ferrous-wheel"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 13
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 13 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 13
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "6 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 6
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 56,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"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": 60,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 43,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"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": 43,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.3
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "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 fuzzed",
"points": 5,
"status": "met",
"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": "13 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "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": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "23 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 2
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 57,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.92,
"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": "92 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 92,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum",
"package-lock.json"
],
"has_dockerfile": true,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [
"editor/vscode/tsconfig.json"
],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "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": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "editor/vscode/tsconfig.json",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "editor/vscode/tsconfig.json"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile, lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 86253,
"source_files_sampled": 61,
"oversized_source_files": 1
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "1/61 source files over 60KB",
"points": 54.1,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 61,
"oversized": 1
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "at_risk",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-30T21:22:11.511046Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/o/odvcencio/ferrous-wheel.svg",
"full_name": "odvcencio/ferrous-wheel",
"license_state": "standard",
"license_spdx": "MIT"
}