{"id":47115449,"url":"https://github.com/pulseengine/moonbit_checksum_updater","last_synced_at":"2026-03-12T18:58:27.266Z","repository":{"id":334630974,"uuid":"1132561229","full_name":"pulseengine/moonbit_checksum_updater","owner":"pulseengine","description":"MoonBit Checksum Updater - Native MoonBit implementation for checksum management","archived":false,"fork":false,"pushed_at":"2026-01-26T05:31:19.000Z","size":45,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-26T16:16:39.926Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/pulseengine/moonbit_checksum_updater","language":"MoonBit","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pulseengine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-12T06:15:08.000Z","updated_at":"2026-01-12T06:16:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pulseengine/moonbit_checksum_updater","commit_stats":null,"previous_names":["pulseengine/moonbit_checksum_updater"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/pulseengine/moonbit_checksum_updater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Fmoonbit_checksum_updater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Fmoonbit_checksum_updater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Fmoonbit_checksum_updater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Fmoonbit_checksum_updater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pulseengine","download_url":"https://codeload.github.com/pulseengine/moonbit_checksum_updater/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Fmoonbit_checksum_updater/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30439122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-03-12T18:58:26.579Z","updated_at":"2026-03-12T18:58:27.261Z","avatar_url":"https://github.com/pulseengine.png","language":"MoonBit","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# moonbit_checksum_updater\n\n\u003csup\u003eNative MoonBit checksum management with GitHub API integration\u003c/sup\u003e\n\n\u0026nbsp;\n\n![MoonBit](https://img.shields.io/badge/MoonBit-4B32C3?style=flat-square\u0026labelColor=1a1b27)\n![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue?style=flat-square\u0026labelColor=1a1b27)\n\n\u003c/div\u003e\n\n\u0026nbsp;\n\nA native MoonBit implementation of checksum management for WebAssembly toolchains. Fetches releases from GitHub, computes SHA256 checksums, validates integrity, and maintains a comprehensive JSON registry.\n\n\u003e [!NOTE]\n\u003e Part of the PulseEngine toolchain. Supports hermetic builds in [rules_moonbit](https://github.com/pulseengine/rules_moonbit).\n\n## Features\n\n- **Native MoonBit implementation** of checksum management\n- **GitHub API integration** for fetching latest releases\n- **SHA256 computation** with native MoonBit crypto\n- **Async/Await support** with parallel processing\n- **Validation system** with strict modes and auto-fix capabilities\n- **Multiple output formats** (text, JSON, markdown)\n\n## Quick Start\n\n```bash\n# Update all tool checksums\nchecksum_updater update --all\n\n# Update specific tools\nchecksum_updater update --tools wasm-tools,wit-bindgen\n\n# Validate checksums\nchecksum_updater validate --all\n\n# Validate with auto-fix\nchecksum_updater validate --all --fix\n\n# List available tools\nchecksum_updater list --detailed\n```\n\n## Architecture\n\n```mermaid\ngraph TD\n    A[Main CLI] --\u003e B[UpdateEngine]\n    A --\u003e C[Validator]\n    B --\u003e D[ChecksumManager]\n    C --\u003e D\n    D --\u003e E[JsonUtils]\n    D --\u003e F[HttpClient]\n    E --\u003e G[JSON Files]\n    F --\u003e H[GitHub API]\n```\n\n### Components\n\n- **ChecksumManager** — Core checksum management, JSON I/O, platform pattern matching\n- **UpdateEngine** — Orchestrates multi-tool updates with parallel processing\n- **Validator** — Format validation, issue detection, automatic fixes\n- **JsonUtils** — JSON serialization, version merging and updates\n- **HttpClient** — GitHub API interactions, rate limit handling\n\n## Supported Tools\n\n- **WebAssembly Tools**: wasm-tools, wit-bindgen, wasmtime, wasi-sdk\n- **MoonBit Tools**: moonbit compiler\n- **Rocq Tools**: rocq compiler\n- **Other Tools**: tinygo, nodejs, jco\n\n## Platform Support\n\n- `darwin_amd64` (macOS Intel)\n- `darwin_arm64` (macOS Apple Silicon)\n- `linux_amd64` (Linux x86_64)\n- `linux_arm64` (Linux ARM64)\n- `windows_amd64` (Windows x86_64)\n\n## Building\n\n```bash\n# Build\nbazel build //:checksum_updater\n\n# Run tests\nbazel test //:test_runner\n\n# Run the CLI\nbazel run //:checksum_updater -- update --all\n```\n\n## License\n\nApache-2.0\n\n---\n\n\u003cdiv align=\"center\"\u003e\n\n\u003csub\u003ePart of \u003ca href=\"https://github.com/pulseengine\"\u003ePulseEngine\u003c/a\u003e \u0026mdash; formally verified WebAssembly toolchain for safety-critical systems\u003c/sub\u003e\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulseengine%2Fmoonbit_checksum_updater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpulseengine%2Fmoonbit_checksum_updater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulseengine%2Fmoonbit_checksum_updater/lists"}