code wiki / _hdl_build / nx_project_roadmap.nx
nx_project_roadmap.nx
buildroot/runtime/_hdl_build/nx_project_roadmap.nx
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
imports: nx_roadmap.nx
imported by: nx_project_roadmap_test.nx
structs
| none |
consts
| none |
functions
| 13 | func proj_progress(n: i64, gate_passed: *i64) -> i64 { return rm_progress(n, gate_passed) } |
| 14 | func proj_next(n: i64, layer: *i64, gate_passed: *i64) -> i64 { return rm_next(n, layer, gate_passed) } |
| 17 | func proj_at_sclass(sclass_verified_count: i64) -> i64 { if sclass_verified_count >= 1 { return 1 } return 0 } |
| 20 | func 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 } |
| 23 | func proj_agg_progress(np: i64, done: *i64, total: *i64) -> i64 |
| 30 | func proj_total_sclass(np: i64, sclass: *i64) -> i64 { return proj_agg_sum(np, sclass) } |
| 31 | func proj_total_experience(np: i64, experience: *i64) -> i64 { return proj_agg_sum(np, experience) } |
| 35 | func proj_fleet_focus(np: i64, progress: *i64) -> i64 called by 1: main |