code wiki / _hdl_build / nx_andelinwest.nx
nx_andelinwest.nx
buildroot/runtime/_hdl_build/nx_andelinwest.nx
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
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
structs
| none |
consts
| 14 | const AW_TEAM: i64 = 1 // sovereign, built by the team bits-up |
| 15 | const AW_CLAUDE: i64 = 2 // an LLM-gap -- the team flags it; Claude partners (legal prose copy) |
functions
| 17 | func 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 } |
| 18 | func 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 } |
| 20 | func main() -> i64 |