Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
Standalone C library + GGUF conversion script that ports mindee's
docTR detection (db_resnet50)
and recognition (crnn_vgg16_bn) heads to a native CPU reference
runtime. The output replaces plugin-vision's transitional
RapidOcrCoordAdapter with a native hierarchical (block / line / word)
OCR provider once production parity rollout completes.
Today the C ABI declared in include/doctr/doctr.h is wired through
src/doctr_runtime.c to the pure-C detector and recognizer reference
forwards. The build emits libdoctr.a plus a doctr_abi_smoke binary
that asserts the ABI still links and reports expected error contracts.
The full port plan — upstream pin, GGUF conversion approach, fork
integration steps, replacement path for the TS adapter — lives in
AGENTS.md. Read that before changing anything in this
directory.
include/doctr/doctr.h Public C ABI (frozen — see AGENTS.md).
src/doctr_runtime.c Public ABI/session glue.
src/doctr_detector_ref.c Native CPU detector forward.
src/doctr_recognizer_ref.c Native CPU recognizer forward.
src/doctr_*.c GGUF reader, image helpers, kernels, CTC.
scripts/doctr_to_gguf.py docTR-to-GGUF converter.
test/doctr_abi_smoke.c Build-only smoke test for the public ABI.
CMakeLists.txt Builds libdoctr + native tests.
License
Apache 2.0 — matches mindee/doctr's license. The pinned upstream
commit recorded in scripts/doctr_to_gguf.py is the source of the
weights this library ships against.