feat(hololake): define native stage one modules
This commit is contained in:
parent
458ead4e43
commit
1da52a61a1
43 changed files with 1332 additions and 111 deletions
|
|
@ -17,6 +17,8 @@ The loader must first show live Guanghu time, the current generation, the latest
|
|||
|
||||
Current invariant: `HLP-GEN-LANGUAGE-WORLD-NATIVE-0001` is the only current HoloLake generation. Language is the human operation entry; the persona restores and composes verified capability engines; HoloLake is an infinite composable real-time canvas projection. `HLP-GEN-TOOL-ERA-0001`, REPO-014 1.2.2/1.3.0, and `HLP-LANG-MOD-001..017` are history or bounded donors, not the current product sequence.
|
||||
|
||||
Stage one is currently rederived as `HLP-STAGE1-NATIVE-REGISTRY-001` with `HLP-NATIVE-MOD-001..018`. Its non-negotiable roots are signed public-world Git, user-local private Git, the typed module socket/pool, the semantic-visual bridge, the infinite canvas, persona/Agent execution, a minimal human review shell, generated-content compliance, a regulator review projection, and an offline lawful-request simulator. HoloLake does not host concurrent user persona sessions.
|
||||
|
||||
Read numbered shelf details only when the task needs them:
|
||||
|
||||
- evolution or dates: `smart-bookshelf/001-system-evolution/EVOLUTION.json`
|
||||
|
|
@ -27,5 +29,6 @@ Read numbered shelf details only when the task needs them:
|
|||
- hashes and proof: use the office computer `hashes` command
|
||||
- rejected old routes: `smart-bookshelf/007-legacy-routes/ROOT.hdlp`
|
||||
- current cursor: `smart-bookshelf/008-current-work/CURRENT.json`
|
||||
- current stage-one thought chain, dual-Git, compliance, autonomy, gates, and module registry: `smart-bookshelf/009-stage1-language-world-native/`
|
||||
|
||||
Never load the whole shelf by default. Past events explain formation but cannot override the current generation. Office documents do not prove machine-room runtime. Any implementation write still requires the current ZC001 task, host write admission, tests, target readback, and receipt.
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ def load(intent: str) -> dict:
|
|||
"generation": status["generation"],
|
||||
"latest_evolution_node": status["latest_evolution_node"],
|
||||
"current_work": status["current_work"],
|
||||
"stage1": status["stage1"],
|
||||
"multipath_console": multipath,
|
||||
"repo012_head": status["repo012_head"],
|
||||
"next": status["next"],
|
||||
|
|
@ -63,6 +64,7 @@ def markdown(value: dict) -> str:
|
|||
current = value["current_work"]
|
||||
latest = value["latest_evolution_node"]
|
||||
multipath = value["multipath_console"]
|
||||
stage1 = value["stage1"]
|
||||
offices = ", ".join(value["office_board"]["offices"])
|
||||
return "\n".join([
|
||||
"# HoloLake开发脑已装载",
|
||||
|
|
@ -73,6 +75,7 @@ def markdown(value: dict) -> str:
|
|||
f"- 当前代际:`{generation['id']}` · {generation['name']}",
|
||||
f"- 最近演化:`{latest['date']}` · `{latest['node_id']}` · {latest['change']}",
|
||||
f"- 当前状态:`{current['state']}`",
|
||||
f"- 第一阶段:`{stage1['registry_id']}` · 模块 {stage1['module_count']} 个 · 下一模块 `{stage1['next_module']}`",
|
||||
f"- 多路径主控台:`{multipath['console_id']}` · 已加入 {multipath['joined_hosts']}/{multipath['total_hosts']} · 有效事件 {multipath['event_count']}",
|
||||
f"- 当前产品模块:`{current['current_product_module']}` / 新代际编号:`{current['current_generation_module_numbering']}`",
|
||||
f"- 旧17模块:`VERIFIED_DONOR_FROZEN`",
|
||||
|
|
|
|||
Loading…
Reference in a new issue