feat(ogar): add WoaBridge / SmbBridge / OdooBridge aliases (OGAR #93/#94)#588
feat(ogar): add WoaBridge / SmbBridge / OdooBridge aliases (OGAR #93/#94)#588AdaWorldAPI wants to merge 1 commit into
Conversation
) OGAR #93 (WoaPort + SmbPort) and #94 (OdooPort) landed new PortSpec impls in ogar-vocab::ports. Add the matching bridge type aliases to lance_graph_ogar::bridges so the WoA / SMB / Odoo consumers can migrate onto OGAR the same way medcare did (lance-graph #585 + medcare #168) — sibling of MedcareBridge / OpenProjectBridge / RedmineBridge. - New: woa_bridge.rs (WoaBridge = UnifiedBridge<WoaPort>), smb_bridge.rs (SmbBridge = UnifiedBridge<SmbPort>), odoo_bridge.rs (OdooBridge = UnifiedBridge<OdooPort>). Each re-exports its port + a *_CODEBOOK shim over the port's *_ALIASES const (matching the openproject/redmine precedent — not invented; all three ports expose *_ALIASES) + co-located unit tests. - mod.rs + lib.rs: declare + re-export the three aliases/ports. - ogar-vocab bumped 19a6886 -> 08a9c979 (OGAR main, post #93/#94) so WoaPort/SmbPort/OdooPort resolve. - Purely additive: no existing bridge, the UnifiedBridge harness, or lance-graph-ontology touched functionally. (Distinct from the legacy OGIT-side lance_graph_ontology::bridges::WoaBridge — different crate, no collision.) - Incidental: cargo fmt reflowed 4 pre-existing files in this crate (medcare_bridge/openproject_bridge/unified.rs + bridge_codebook_ convergence.rs) — import-order + chain-wrap only, content-identical. The crate is excluded from the main workspace so main CI never fmt-gated it; this makes it fmt-clean. Verified: cargo build/test --manifest-path crates/lance-graph-ogar green (45 lib + bridge integration suites, 0 failed); fmt --check clean. Verified port facts against the 08a9c97 checkout: WoaPort WorkOrder/woa: class_id("Stundenzettel") == 0x0103 SmbPort SMB/smb: class_id("Kunde") == 0x0204 OdooPort Odoo/odoo: class_id("account.analytic.line")== 0x0103 Generated by [Claude Code](https://claude.com/claude-code)
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Warning Review limit reached
More reviews will be available in 49 minutes and 23 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (9)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Closing as superseded by #587 (merged). A parallel session ( Verified Generated by Claude Code |
What
OGAR #93 (
WoaPort+SmbPort) and #94 (OdooPort) landed newPortSpecimpls inogar-vocab::ports. This adds the matching bridge type aliases tolance_graph_ogar::bridgesso the WoA / SMB / Odoo consumers can migrate onto OGAR the same way medcare did (lance-graph #585 + medcare #168, #169) — siblings ofMedcareBridge/OpenProjectBridge/RedmineBridge.woa_bridge.rs(WoaBridge = UnifiedBridge<WoaPort>),smb_bridge.rs(SmbBridge = UnifiedBridge<SmbPort>),odoo_bridge.rs(OdooBridge = UnifiedBridge<OdooPort>). Each re-exports its port + a*_CODEBOOKshim over the port's*_ALIASESconst (matching the openproject/redmine precedent — all three ports expose*_ALIASES, not invented) + co-located unit tests.mod.rs+lib.rs: declare + re-export the three aliases/ports.19a6886→08a9c979(OGARmain, post feat: lookup crate + 17D qualia from convergence patterns — 82 tests #93/docs: three-tier dispatch — avx512vnni > avxvnniint8 > F32x16, no scalar Updated SIMD dispatch documentation: Tier 3: avx512vnni — 64 MACs (Cascade Lake+, Zen 4+) Tier 2: avxvnniint8 — 32 MACs (Arrow Lake, Lunar Lake/NUC 14) Tier 1: F32x16 FMA — 16 MACs (universal floor, every x86-64) avx512vnni and avxvnniint8 are mutually exclusive. No scalar path. F32x16 is the minimum, not a fallback. https://claude.ai/code/session_01ChLvBfpJS8dQhHxRD4pYNp #94) so the three ports resolve.UnifiedBridgeharness, orlance-graph-ontologytouched functionally. (Distinct from the legacy OGIT-sidelance_graph_ontology::bridges::WoaBridge— different crate, no collision.)cargo fmtreflowed 4 pre-existing files in this crate (medcare_bridge/openproject_bridge/unified.rs+bridge_codebook_convergence.rs) — import-order + chain-wrap only, content-identical. This crate is excluded from the main workspace, so main CI never fmt-gated it; the reflow makes it fmt-clean.Verified port facts (against the
08a9c97checkout, not trusted from prompt)WoaPortWorkOrder/woaclass_id("Stundenzettel") == 0x0103(billable_work_entry)SmbPortSMB/smbclass_id("Kunde") == 0x0204(billing_party)OdooPortOdoo/odooclass_id("account.analytic.line") == 0x0103Tests
cargo build --manifest-path crates/lance-graph-ogar/Cargo.toml→ green.cargo test --manifest-path crates/lance-graph-ogar/Cargo.toml→ 45 lib (+9) + bridge integration suites, 0 failed.cargo fmt --check→ clean.Unblocks (separate follow-up PRs)
lance_graph_ontology::bridges::WoaBridge→lance_graph_ogar::bridges::WoaBridge.OgitBridge→SmbBridge.lance_graph_ogar::bridges::OdooBridge.🤖 Generated with Claude Code
https://claude.ai/code/session_01EYvNjD8M8LMNYbRy3gq2FP
Generated by Claude Code