docs: define MinerU practices roadmap - #146
Merged
Merged
Conversation
Adding .gitkeep for PR creation (default mode). This file will be removed when the task is complete. Issue: #143
konard
marked this pull request as ready for review
July 27, 2026 05:22
# Conflicts: # rust/CHANGELOG.md # rust/src/main.rs
Collaborator
Author
Working session summaryImplemented and finalized PR #146.
Main document: README.md This summary was automatically extracted from the AI working session output. |
Collaborator
Author
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
📊 Context and tokens usage:
Total: (499.4K + 20.9M cached) input tokens, 56.6K output tokens, $28.419403 cost 🤖 Models used:
📎 Log file uploaded as Gist (7868KB)Now working session is ended, feel free to review and add any feedback on the solution draft. |
Collaborator
Author
🎉 Auto-mergedThis pull request has been automatically merged by hive-mind.
Auto-merged by hive-mind with --auto-merge flag |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
79d6d8dagainst the current Rust and JavaScript web-capture implementationsCaptureDocument v1architecture and a seven-phase delivery roadmapCargo.locksynchronized with Rust package version 0.3.33 after merging the latestmainRoot cause and scope
MinerU parses local documents with OCR/layout/model pipelines, while web-capture acquires rendered URLs. The foundational gap is therefore not a missing parser dependency; it is the absence of a shared typed document model between acquisition and serialization.
This PR is intentionally contract-first, matching the issue's
documentationandenhancementlabels. It does not copy MinerU code or artifacts, add an ML runtime, or expose an untested parser API. Follow-up implementation starts with shared Rust/JavaScript schema fixtures and golden tests before adding optional document or OCR backends.Evidence
BP-01throughBP-20entry includes a verification gate; the acceptance matrix makes the research scope finite.docs/case-studies/issue-143/data/.30238377295failed atrust/src/main.rs:211; the failure was reproduced locally with Rust 1.97.1. The equivalent compatibility fix landed onmainin fix(js): remove deprecated glob dependency #145 and is included here by merge.Validation
node scripts/check-js-rust-parity.mjsnpm run lint(0 errors; 30 pre-existing warnings)npm run format:checknpm run check:duplicationnpm test -- --runInBand --testPathIgnorePatterns=tests/e2e/docker.test.js(55 suites and 493 tests passed; 4 suites/42 Docker tests skipped)main(18 passed)cargo +1.97.1 fmt --all -- --checkcargo +1.97.1 clippy --all-targets --all-features -- -D warningscargo +1.97.1 test --all-features(267 executable tests and 2 doc tests passed)Fixes #143