code wiki / _hdl_build / nx_meet_trust.nx

nx_meet_trust.nx

buildroot/runtime/_hdl_build/nx_meet_trust.nx

4331 B88 linesdepth 3pulls 3 transitivereach 14 importersview sourcekind librarytopic meet
docsdependenciesstructsconstsfunctions

about

nx_meet_trust.nx -- R6 of the NISHI MEET PLATFORM: the ANTI-FAKE engine (LIBRARY, no main). The headline capability + the MEASURED exceed: rule-based detection of AI-generated / slop resumes and fake "ghost" job postings -- the screening that lets "quality meet quality." Sovereign (nx_cc->nxasm, no ML runtime, no JS): lowercase + weighted keyword signals (slop buzzword density vs concrete specifics: numbers, contacts, links, salary, real URLs). Returns 0..100 (higher = more authentic); below TRUST_THRESHOLD => flagged. Thresholds are named consts (rule 11). license_tier: ORIGINAL

dependencies 2 imports · 6 importers

nx_syscalls.nx nx_meet_lib.nx nx_meet_trust.nx nx_meet_curate.nx nx_meet_curate_gate.nx nx_meet_signals.nx nx_meet_signals_gate.nx nx_meet_trust_gate.nx nx_meet_trust_run.nx

imports: nx_syscalls.nxnx_meet_lib.nx

imported by: nx_meet_curate.nxnx_meet_curate_gate.nxnx_meet_signals.nxnx_meet_signals_gate.nxnx_meet_trust_gate.nxnx_meet_trust_run.nx

structs

none

consts

10const TRUST_THRESHOLD: i64 = 50

functions

13func trust_lc(src: *u8, n: i64, out: *u8) -> i64
25func trust_has(hay: *u8, n: i64, needle: *u8) -> i64
31func trust_has_digit(hay: *u8, n: i64) -> i64
38func trust_resume_score(text: *u8) -> i64
62func trust_is_fake_resume(text: *u8) -> i64 { if trust_resume_score(text) < TRUST_THRESHOLD { return 1 } return 0 }
65func trust_posting_score(text: *u8) -> i64
88func trust_is_ghost_posting(text: *u8) -> i64 { if trust_posting_score(text) < TRUST_THRESHOLD { return 1 } return 0 }