code wiki / _hdl_build / nx_andelinwest.nx

nx_andelinwest.nx

buildroot/runtime/_hdl_build/nx_andelinwest.nx

5425 B72 linesdepth 3pulls 4 transitivereach 0 importersview sourcekind tooltopic andelinwest
docsdependenciesstructsconstsfunctions

about

nx_andelinwest.nx -- the TEAM plans + drives the andelinwest.com v1 build (operator: the NISHI TEAM plans/builds/does everything; Claude partners + evaluates, intervening only at the LLM-gaps). The roadmap is DATA; the PLAN (frontier, next batch, progress) is computed by the team's OWN roadmap + layered-backlog logic (nx_layered_backlog / nx_roadmap), not asserted by Claude. Each item carries an OWNER: TEAM (sovereign, bits-up) or CLAUDE (an LLM-gap the team flags for partnership -- the legal PROSE). Building goes L8 (sovereign serve) up to L0 (launched v1). This module's OUTPUT is the roadmap/progress that the nishifamily.com/roadmap/andelinwest page renders. license_tier: ORIGINAL Grounded in knowledge/research/2026-06-04-website-ux-andelinwest.md (cited UX/CX thresholds).

dependencies 3 imports · 0 importers

nx_layered_backlog.nx nx_roadmap.nx nx_syscalls.nx nx_andelinwest.nx

imports: nx_layered_backlog.nxnx_roadmap.nxnx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main aw_puts sys_write sys_mmap bl_frontier bl_parallel_batch bl_frontier ↻ bl_buildable bl_lower_complete bl_layer_done rm_progress rm_count_done rm_next aw_num sys_mmap ↻ sys_write ↻ sys_exit

structs

none

consts

14const AW_TEAM: i64 = 1 // sovereign, built by the team bits-up
15const AW_CLAUDE: i64 = 2 // an LLM-gap -- the team flags it; Claude partners (legal prose copy)

functions

17func aw_puts(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 }
called by 1: main calls 1: sys_write
18func aw_num(v: i64) -> i64 { let bb: *u8 = sys_mmap(28); var m: i64=v; if m<0 {m=0-m; sys_write(1,"-" as *u8,1)}; let t: *u8 = sys_mmap(28); var k: i64=0; if m==0 {t[0]=48;k=1}; while m>0 {t[k]=48+(m%10); m=m/10; k=k+1}; var i: i64=0; while i<k {bb[i]=t[k-1-i]; i=i+1}; sys_write(1, bb, k); return 0 }
called by 1: main calls 2: sys_mmapsys_write
20func main() -> i64