code wiki / _hdl_build / nx_project_roadmap.nx

nx_project_roadmap.nx

buildroot/runtime/_hdl_build/nx_project_roadmap.nx

2597 B39 linesdepth 3pulls 3 transitivereach 1 importersview sourcekind librarytopic project
docsdependenciesstructsconstsfunctions

about

nx_project_roadmap.nx -- FLAG A PROJECT, the team generates + works its OWN L8->L0 roadmap (operator: close the black-box loop -- flag andelinwest.com, the team works through it by benchmarking; clone the team across many projects, each returns its experiences and we ingest them to grow project-based AND operationally). This is the REUSABLE functionality: the same machinery scoped to any project. Per project it computes progress (gate-driven), the next build (deepest TODO, bits-up), and whether the project has reached a BS-checked S-class exceed. Across projects it AGGREGATES (the shadow-clones return and ingest) so operational data compounds. RACI: PM emits per project, Builder works the next item, Examiner grades, Council flags LLM-gaps. license_tier: ORIGINAL.

dependencies 1 imports · 1 importers

nx_roadmap.nx nx_project_roadmap.nx nx_project_roadmap_test.nx

imports: nx_roadmap.nx

imported by: nx_project_roadmap_test.nx

structs

none

consts

none

functions

13func proj_progress(n: i64, gate_passed: *i64) -> i64 { return rm_progress(n, gate_passed) }
called by 1: main calls 1: rm_progress
14func proj_next(n: i64, layer: *i64, gate_passed: *i64) -> i64 { return rm_next(n, layer, gate_passed) }
called by 1: main calls 1: rm_next
17func proj_at_sclass(sclass_verified_count: i64) -> i64 { if sclass_verified_count >= 1 { return 1 } return 0 }
20func proj_agg_sum(np: i64, vals: *i64) -> i64 { var s: i64 = 0; var i: i64 = 0; while i < np { s = s + vals[i]; i = i + 1 } return s }
23func proj_agg_progress(np: i64, done: *i64, total: *i64) -> i64
called by 1: main calls 1: proj_agg_sum
30func proj_total_sclass(np: i64, sclass: *i64) -> i64 { return proj_agg_sum(np, sclass) }
called by 1: main calls 1: proj_agg_sum
31func proj_total_experience(np: i64, experience: *i64) -> i64 { return proj_agg_sum(np, experience) }
called by 1: main calls 1: proj_agg_sum
35func proj_fleet_focus(np: i64, progress: *i64) -> i64
called by 1: main