• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

codenotary / immudb
85%
master: 85%

Build:
Build:
LAST BUILD BRANCH: claude-plugin
DEFAULT BRANCH: master
Repo Added 30 May 2020 08:52AM UTC
Files 312
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH claude-plugin
branch: claude-plugin
CHANGE BRANCH
x
Reset
  • claude-plugin
  • changelog/1.11.1
  • chore/build-updates
  • chore/deps-trivy-x-bumps
  • chore/test-followups
  • ci-regex-fix
  • docker-init-db
  • docs/rust-sdk-guidance
  • fargate
  • feat/auditlog
  • feat/coalesce
  • feat/s3performance
  • feature/between-and
  • feature/constant-selection-query
  • feature/discard-precommitted-txs
  • feature/extract-from-timestamp
  • feature/individual-col-primary-key
  • feature/left-join
  • feature/pgsql-catalog
  • fix/2082-scan-latest
  • fix/cas-notarize
  • fix/display-actual-config-path-on-startup
  • fix/empty-tree-flush
  • fix/empty-tree-flush-file
  • fix/index_metrix
  • fix/issue-2100-sql-panics
  • fix/multiapp-readat-keynotfound-race
  • fix/pgsql-empty-parse-panic
  • fix/swagger-test-go122-mux
  • gh_action_update
  • issue-2028
  • master
  • moshix-patch-8
  • parallelvcn
  • patch-1
  • refs/tags/v1.1.0
  • refs/tags/v1.10.0
  • refs/tags/v1.11.0
  • refs/tags/v1.11.0-RC2
  • refs/tags/v1.11.1
  • refs/tags/v1.2.0
  • refs/tags/v1.2.0-RC1
  • refs/tags/v1.2.1
  • refs/tags/v1.2.2
  • refs/tags/v1.2.3
  • refs/tags/v1.2.3-RC1
  • refs/tags/v1.2.4
  • refs/tags/v1.2.4-RC1
  • refs/tags/v1.3.0
  • refs/tags/v1.3.0-RC1
  • refs/tags/v1.3.1
  • refs/tags/v1.3.2
  • refs/tags/v1.3.2-RC1
  • refs/tags/v1.4.0
  • refs/tags/v1.4.0-RC1
  • refs/tags/v1.4.0-RC2
  • refs/tags/v1.4.1
  • refs/tags/v1.4.1-RC1
  • refs/tags/v1.5.0
  • refs/tags/v1.5.0-RC1
  • refs/tags/v1.9.0-RC1
  • refs/tags/v1.9.0-RC2
  • refs/tags/v1.9.3
  • refs/tags/v1.9.4
  • refs/tags/v1.9.5
  • refs/tags/v1.9.6
  • refs/tags/v1.9.7
  • refs/tags/v1.9DOM
  • refs/tags/v1.9DOM.0
  • refs/tags/v1.9DOM.1
  • refs/tags/v1.9DOM.1-RC1
  • refs/tags/v1.9DOM.2
  • refs/tags/v1.9DOM.2-RC1
  • refs/tags/v2.0.0-RC1
  • release/v1.10.0
  • release/v1.2.4
  • release/v1.2.4-RC1
  • release/v1.3.0
  • release/v1.3.0-RC1
  • release/v1.3.1
  • release/v1.3.2
  • release/v1.3.2-RC1
  • release/v1.4.0
  • release/v1.4.0-RC1
  • release/v1.4.0-RC2
  • release/v1.4.1
  • release/v1.4.1-RC1
  • release/v1.5.0
  • release/v1.5.0-RC1
  • release/v1.9.0-RC1
  • release/v1.9.0-RC2
  • release/v1.9.3
  • release/v1.9.4
  • release/v1.9.5
  • release/v1.9.6
  • release/v1.9.7
  • release/v1.9DOM
  • release/v1.9DOM.0
  • release/v1.9DOM.1
  • release/v1.9DOM.1-RC1
  • release/v1.9DOM.2
  • release/v1.9DOM.2-RC1
  • release/v2.0.0-RC1
  • update-copyright-notice
  • v2-prerelease

21 Jul 2026 06:04PM UTC coverage: 84.854% (-0.1%) from 84.973%
29855643936

Pull #2112

gh-ci

vchaindz
feat(contrib): add immudb-wasm — embed immudb in Node via WASM/WASI

Compile the immudb engine to a single portable wasip1 .wasm and run it
in-process under Node's node:wasi — an append-only, cryptographically
verifiable KV + SQL store with no server, no container, and no native
prebuilds. This lets immudb-backed tools ship as pure JS + one .wasm.

Engine change (the only core diff): add a wasip1 variant of
embedded/appendable/fileutils (syncDir no-op, fdatasync -> f.Sync), the
sole package blocking GOOS=wasip1 builds of embedded/store & embedded/sql.

contrib/immudb-wasm (nested module, replace => ../../):
- wasm/: //go:wasmexport reactor over a small JSON byte-ABI, built on
  embedded/store + embedded/sql directly (no protobuf/grpc). verified_get
  reproduces the client-side inclusion + dual proof using store-native
  primitives.
- node/: node:wasi host with a single /data preopen, a synchronous
  better-sqlite3-style API, a single-writer lockfile, TS types, and a
  node:test suite.
- Makefile/scripts build the reactor; README documents the durability
  (no WASI dir-sync), single-writer, and performance trade-offs.

Verified: GOOS=wasip1 builds embedded/store & embedded/sql; core
go build ./... unaffected; make test builds immudb.wasm and passes 7
Node tests (KV, binary, scan, verifiedGet=true, SQL, reopen persistence,
lock); npm pack ships 5 files with zero native build on install. The
built .wasm is a gitignored artifact.

Licensed BUSL-1.1 (packages the immudb engine).
Pull Request #2112: feat: embed immudb in-process — Go examples, immuledger plugin, and immudb-wasm (Node/WASM)

0 of 76 new or added lines in 1 file covered. (0.0%)

7 existing lines in 3 files now uncovered.

45228 of 53301 relevant lines covered (84.85%)

126265.54 hits per line

Relevant lines Covered
Build:
Build:
53301 RELEVANT LINES 45228 COVERED LINES
126265.54 HITS PER LINE
Source Files on claude-plugin
  • Tree
  • List 312
  • Changed 5
  • Source Changed 0
  • Coverage Changed 5
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
29855643936 claude-plugin feat(contrib): add immudb-wasm — embed immudb in Node via WASM/WASI Compile the immudb engine to a single portable wasip1 .wasm and run it in-process under Node's node:wasi — an append-only, cryptographically verifiable KV + SQL store with no ser... Pull #2112 21 Jul 2026 06:11PM UTC vchaindz gh-ci
84.85
29835634173 claude-plugin fix(immuledger): harden ledger from code review Address correctness, concurrency, and robustness findings: - paginate scans to exhaustion (scanAll) so lists/stats/search no longer silently drop records past a fixed 1000-key window - write rela... Pull #2112 21 Jul 2026 01:50PM UTC vchaindz gh-ci
84.85
29829823986 claude-plugin test(immuledger): add record-and-verify eval case Adds an agent-level eval under evals/ (prompt.md + graders/criteria.md) covering the headline flow: record a decision, then cryptographically verify it and report the result honestly. Documents ho... Pull #2112 21 Jul 2026 12:29PM UTC vchaindz gh-ci
84.87
29829522851 claude-plugin fix(immuledger): drop redundant hooks manifest field hooks/hooks.json is auto-loaded by the plugin runtime; also declaring it via manifest.hooks double-loads and fails with a duplicate-hooks error. Remove the field so the plugin loads cleanly. Pull #2112 21 Jul 2026 12:25PM UTC vchaindz gh-ci
84.86
29829409304 claude-plugin feat(contrib): add immuledger — tamper-evident decision ledger plugin immuledger is a Claude Code plugin that gives a project a durable, tamper-evident memory of what was decided and why, and lets the agent check current work against past decisio... Pull #2112 21 Jul 2026 12:23PM UTC vchaindz gh-ci
84.85
29823247233 claude-plugin docs(embedded): add in-process embedding examples and guide immudb is already usable as an in-process Go library (no server, no container), but the repo shipped no worked example or guide for it. - add embedded/store and embedded/sql Example tes... Pull #2112 21 Jul 2026 10:49AM UTC vchaindz gh-ci
84.87
See All Builds (4092)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc