-
Notifications
You must be signed in to change notification settings - Fork 0
shell_backlog_pack
Date: 2026-03-25 Status: Planning / handoff pack Scope: Dependency-ordered backlog for Shell as Graphshell's only host, app-level orchestration boundary, overview surface authority, and control-surface router.
Related docs:
- SHELL.md — Shell domain spec and authority boundaries
- 2026-04-03_shell_command_bar_execution_plan.md — active Workstream A closure lane for command-bar ownership, omnibar session/mailbox state, focused-target routing, and legacy command-route cleanup
- ../subsystem_ux_semantics/2026-04-05_command_surface_observability_and_at_plan.md — companion cross-subsystem closure lane for command-surface provenance diagnostics, UxTree/probe modeling, and Shell command-surface AT validation
- shell_composition_model_spec.md — top-level slot composition, command-bar seam, and host-thread panel rules
- shell_overview_surface_spec.md — concrete Shell overview UI and routing model
- ../aspect_command/command_surface_interaction_spec.md — canonical command-entry and dispatch contract consumed by Shell
- ../aspect_control/settings_and_control_surfaces_spec.md — control-surface routing and page-hosting contract consumed by Shell
- ../domain_interaction_acceptance_matrix.md — cross-domain review matrix
- ../../technical_architecture/domain_interaction_scenarios.md — canonical cross-domain scenario flows
- ../navigator/NAVIGATOR.md — Navigator projection/navigation peer domain
- ../workbench/WORKBENCH.md — Workbench arrangement/activation peer domain
- ../graph/GRAPH.md — Graph truth/analysis peer domain; canvas remains the rendered graph surface
- Hub issue: #306 (
Hub: five-domain architecture adoption — Shell host, graphlet model, cross-domain scenarios) - Primary implementation issue: #303 (
Implement Shell host and overview surface adoption) - Review/evidence issue: #305 (
Operationalize cross-domain scenario IDs and acceptance evidence)
-
SH01Shell Host Boundary. Depends: none. Done gate: one canonical doc defines Shell as the application's only host and names what it does not own. -
SH02Shell Command Routing Contract. Depends:SH01. Done gate: Shell command entry points are explicitly mapped to Graph, Navigator, Workbench, Viewer, or runtime/control destinations. -
SH03Shell Overview Module Contract. Depends:SH01. Done gate: overview modules, summary sources, and routing rules are defined without flattening ownership. -
SH04Shell Ambient Status / Attention Contract. Depends:SH01,SH03. Done gate: runtime warnings, trust state, and background task surfacing are distinct from domain truth and have explicit return-context rules. -
SH05Shell Diagnostics / Routing Evidence Pack. Depends:SH02,SH04. Done gate: failed handoff, blocked route, and interruption-return paths emit diagnosable evidence. -
SH06Shell Milestone Closure Receipt. Depends:SH01-SH05. Done gate: one closure doc states what Shell host behavior is canonical and what downstream lanes can safely assume.
This section translates the Wave 1 backlog into the concrete Shell workstreams most likely to produce visible architectural progress without blurring domain ownership.
Primary backlog IDs: SH02, SH05
Execution plan: 2026-04-03_shell_command_bar_execution_plan.md
Purpose:
- make Shell command entry points honest about what they own
- unify omnibar input, command palette dispatch, and focused-surface target resolution
- stop legacy or embedder paths from bypassing Graphshell command authority
Concrete slices:
- Define the
CommandBarsurface as Shell-owned input/dispatch UI that consumes Navigator breadcrumb/context projection without owning that projection. - Land explicit focused-surface targeting for command-bar controls so per-pane viewer actions are resolved from a first-class Shell input rather than whichever subsystem rendered last.
- Audit legacy context-menu / new-tab / open-in-new-view flows and reroute them through the Graphshell command authority or document them as explicit bridged exceptions.
- Ensure background suggestion/search providers feed the omnibar through a Shell-owned mailbox rather than detached toolbar threads.
- Close the companion observability and AT receipts required to prove command-surface routing and focus return rather than leaving those checks implicit in Shell-only wording.
Done shape:
- omnibar input, palette dispatch, and focused-target resolution have one canonical Shell seam
- blocked or legacy-bypassed command routes emit diagnosable evidence
- Workstream A can point at shared provenance, semantic, and AT receipts instead of treating them as undocumented follow-on work
Primary backlog IDs: SH01, SH04
Purpose:
- make the Shell visibly present as the host layer
- separate system-facing status/chrome from Navigator content navigation
Concrete slices:
- Harden the
CommandBar/StatusBarslot model fromshell_composition_model_spec.mdas the canonical top-level shell chrome. - Define what ambient status belongs in persistent Shell chrome: sync state, background jobs, trust/security warnings, worker/process indicators, and current interruption-return anchor.
- Keep content-navigation affordances out of Shell chrome unless they are truly system-oriented.
- Define attention severity/order so warnings, trust issues, and background activity do not render as one flat undifferentiated strip.
Done shape:
- persistent Shell chrome has explicit authority and content rules
- ambient status is legible as system/runtime truth, not graph or workbench truth
Current checkpoint as of 2026-04-04:
-
shell_status_baris now a real Shell slot rather than latent layout metadata. - sync, interruption-return context, and diagnostics attention are surfaced as ambient Shell chrome instead of being mixed into command-entry controls.
- ambient attention ordering now admits both analyzer alerts and direct runtime/channel risk signals such as navigation violations and compositor fallback pressure.
- settings-route ingress in
shell/desktop/ui/gui.rsnow routes through a dedicated Shell helper that preservesprefer_overlaywhile reusing canonical open-decision diagnostics. - workbench-host surface navigation and overview-plane surface navigation now converge on
WorkbenchIntentfor focus/open/transfer/toggle actions instead of each surface pushing its own direct reducer path. - remaining workbench-host frame-layout and navigator-specialty reducer hops now enqueue
WorkbenchIntentas well, leaving direct setter mutation as the primary unresolved host-action routing seam. - workbench-host layout/policy setters for pin state, draft constraint edits, host scope,
first-use policy, and session-only suppression now also enqueue
WorkbenchIntent, narrowing the remaining host-action exceptions to persistence/request helpers. - workbench-host rename/delete/save/restore/prune actions now also route through shared
WorkbenchIntent, soapply_workbench_host_action(...)no longer performs direct persistence or request dispatch itself. - workbench-host and toolbar pin/unpin controls now emit shared frame intents instead of calling persistence helpers directly from the view layer.
- toolbar Navigator view tabs now route graph-view focus through
WorkbenchIntentinstead of writing directly to the raw graph-intent buffer. - toolbar Overview toggle now routes through
WorkbenchIntent::ToggleOverviewPlane, matching the workbench host and overview plane surfaces. - omnibar provider suggestions already run through
ControlPanel::spawn_blocking_host_request(...)and a frame-bound mailbox with diagnostics, so the first Workstream D audit did not expose a new shell-visible detached-worker bug to fix. -
gui.rsnow centralizes its long-lived lifecycle/registry signal bridges behind a typedGuiFrameInbox, making frame-bound drain semantics explicit without collapsing those relays into a generic request/result mailbox.
Next bypass seam after the current checkpoint:
- Shell chrome routing surfaces are now substantially converged: workbench-host chrome, toolbar
frame controls, toolbar Navigator view tabs, and overview-plane surface actions all use the
shared
WorkbenchIntentpath for frame requests and surface routing. The next routing audit should only reopen if a newly added Shell surface bypasses that contract. - Overview-plane graph-view-slot edits in
shell/desktop/ui/overview_plane.rsremain explicitly Graph-owned layout mutations. Any future overview interaction that changes surface routing, focus, or pane activation should stay on theWorkbenchIntentpath instead. - Workstream D should now focus on proving the host-thread/mailbox boundary rather than chasing
already-routed chrome actions: the remaining Shell-facing async bridges are the frame-bound
signal relays in
shell/desktop/ui/gui.rs, which should either stay documented as intentional channel bridges or be folded into a shared mailbox abstraction if a stronger contract is needed. - Future Shell-facing async subscriptions should prefer the typed frame-inbox/signal-relay-set pattern when they are long-lived and frame-drained; request/result mailboxes should remain the default only for one-shot background jobs such as omnibar provider suggestion fetches.
Primary backlog IDs: SH03, SHS02
Purpose:
- give Shell a concrete cross-domain summary surface
- make reorientation routes explicit without flattening Graph, Navigator, Workbench, Viewer, and Shell/runtime into one blob
Concrete slices:
- Land the six-module overview structure from
shell_overview_surface_spec.mdin priority order: Active Context strip, Graph Context, Workbench Context, Viewer/Content, Runtime/Attention, Suggested Next Actions. - Define compact and standard modes first; keep diagnostic mode as an extension if the module data sources are not yet stable.
- Make every overview action route to the owning domain rather than mutating state directly in Shell.
- Add explicit
DI05acceptance evidence for overview-to-domain handoff behavior.
Current status:
- first standard-mode slice landed: the overview plane now builds Active Context, Graph Context,
Workbench Context, Viewer/Content, Runtime/Attention, and Suggested Next Actions from live
GraphBrowserAppstate plusWorkbenchChromeProjection::from_tree(...), while keeping graph-view slot create/rename/move/archive/restore controls in the graph-owned manager below the summary cards - per-card action affordances now route through explicit owning-domain Graph or Workbench paths,
with focused
DI05evidence tests covering graph-card, viewer-card, and runtime-card routing - compact mode now reuses the same live overview summary model inside the Navigator host via a compact context/runtime chip bar above the existing mini-grid and region list
- overview domain summaries now distinguish warm vs cold active-graphlet members, expose frontier-ready cold peers, and report semantic-tab linked vs detached workbench binding in both standard cards and compact chips
- viewer/content summaries now expose effective backend, override-vs-auto selection, placeholder fallback reasons, and runtime blocked/crashed state, with a viewer-owned diagnostics route when the active pane is degraded
- focused
DI05evidence now also covers an integrated overview reorientation scenario spanning graph, workbench, viewer fallback, runtime attention, and compact-chip surfacing - Workstream C can close here unless broader end-to-end overview UI rendering evidence is needed
Done shape:
- Shell overview exists as a real host-owned summary surface
- overview cards/chips reorient into the correct owning domain predictably and diagnosably
Primary backlog IDs: SH04, SH05, SHS03
Purpose:
- make the Shell host-thread boundary real in code instead of just architectural prose
- route user-visible background results through supervised runtime channels
Concrete slices:
- Audit Shell-facing UI code for ad hoc detached background work launched from toolbar, omnibar, or top-level chrome paths.
- Move those tasks under
ControlPanel/Register supervision where they represent real background work. - Define mailbox/result carriers for one-shot Shell-owned background requests, and use a typed frame inbox / signal relay set for long-lived subscription bridges that Shell drains only at frame boundaries.
- Emit diagnostics for failed handoff, stale mailbox delivery, and interruption-return routing.
Current status:
- first host-thread cleanup slice landed:
Gui::newno longer spawns raw signal subscription tasks for Shell-facing frame relays;GuiFrameInbox::spawn(...)now installs those relays underControlPanelsupervision with an explicit Shell signal-relay worker tier while preserving frame-bound drain semantics - one-shot Shell-owned provider fetches now return through a typed
HostRequestMailbox<T>carrier fromControlPanel, so the omnibar no longer stores or polls raw host-request receivers directly on the frame thread - no additional user-visible one-shot Shell-owned background requests currently bypass typed
mailbox/result carriers; remaining Workstream D follow-up should target interruption-return
evidence (
SHS03/DI06) rather than more mailbox conversion - diagnostics-pane routing now participates in the same tool-surface return capture/restore path as settings/history, giving Shell-owned evidence that an interruption surface can open and return to the prior graph/workbench anchor without losing domain context
Done shape:
- Shell-owned visible state is frame-thread authoritative
- background work no longer mutates shell-visible UI state directly
- interruption and return-context paths have evidence instead of hand-waving
Recommended practical execution order:
- Workstream A — Command / Omnibar Seam
- Workstream B — App Chrome And Ambient Status
- Workstream C — Overview Surface
- Workstream D — Host-Thread And Mailbox Cleanup
Reasoning:
- A establishes the Shell's most important user-facing authority boundary.
- B makes the host layer visible and removes chrome-scope confusion.
- C becomes much easier once command routing and chrome slots are stable.
- D should be applied against the concrete host seams from A/B rather than as an abstract cleanup.
-
SHS01DI03Graphlet-to-Workbench handoff. Depends:SH02,SH03. Done gate: Shell can routeopen in workbenchfrom graphlet context to Navigator + Workbench without creating arrangement truth itself. -
SHS02DI05Shell overview reorientation. Depends:SH03. Done gate: overview summary chips/cards route to the correct owning domain and preserve domain-specific ownership semantics. -
SHS03DI06Runtime/trust interruption return path. Depends:SH04,SH05. Done gate: interruption handling preserves graphlet/workbench return context and exposes diagnostic evidence.
- Home
-
design_docs
-
archive_docs
- checkpoint_2026-01-29
- checkpoint_2026-02-01
-
checkpoint_2026-02-09
- [Claude ANALYSIS 2.9.26](design_docs/archive_docs/checkpoint_2026-02-09/Claude ANALYSIS 2.9.26)
- [Gemini Graphshell Analysis 2.9.26](design_docs/archive_docs/checkpoint_2026-02-09/Gemini Graphshell Analysis 2.9.26)
- GRAPHSHELL_CHANGELOG
- checkpoint_2026-02-10
- checkpoint_2026-02-11
- checkpoint_2026-02-12
- checkpoint_2026-02-14_no_legacy_cleanup
-
checkpoint_2026-02-16
- 2026-02-11_camera_zoom_plan
- 2026-02-11_center_camera_plan
- 2026-02-11_graph_persistence_plan
- 2026-02-11_phase1_refinement_plan
- 2026-02-11_search_filtering_plan
- 2026-02-11_thumbnails_favicons_plan
- 2026-02-12_architecture_reconciliation
- 2026-02-12_egui_tiles_implementation_guide
- 2026-02-12_egui_tiles_implementation_plan
- 2026-02-12_persistence_ux_plan
- 2026-02-12_physics_selection_plan
- 2026-02-12_servoshell_inheritance_analysis
- 2026-02-13_committed_vs_planned_architecture
- 2026-02-13_graph_tile_architecture_research
- 2026-02-13_graph_tile_unification_plan
- 2026-02-14_graph_tile_parity_research
- 2026-02-14_servo_architecture_constraints
- 2026-02-15_navigation_control_plane_plan
- NAVIGATION_NEXT_STEPS_OPTIONS
- SERVO_INTEGRATION_BRIEF
- checkpoint_2026-02-17
- checkpoint_2026-02-19
- checkpoint_2026-02-20
-
checkpoint_2026-02-21
- .claude
- readmes
- checkpoint_2026-02-22
- checkpoint_2026-02-23
-
checkpoint_2026-02-24
- 2026-02-11_performance_optimization_plan
- 2026-02-16_architecture_and_navigation_plan
- 2026-02-18_edge_operations_and_cmd_palette_plan
- 2026-02-19_graph_ux_polish_plan
- 2026-02-19_layout_advanced_plan
- 2026-02-20_cross_platform_sync_and_extension_plan
- 2026-02-24_input_surface_polish_plan
- 2026-02-24_step5_5_workspace_access_control
- 2026-02-24_sync_logic_validation_plan
- 2026-02-24_workspace_routing_polish_plan
- GRAPHSHELL_P2P_COLLABORATION
-
checkpoint_2026-02-25
-
stubs
- 2026-02-21_control_panel_async_scaling
- 2026-02-25_planning_register_backlog_and_copilot_guides
- 2026-02-25_subsystem_accessibility
- 2026-02-25_subsystem_diagnostics
- 2026-02-25_subsystem_history_temporal_integrity
- 2026-02-25_subsystem_persistence_integrity
- 2026-02-25_subsystem_security_access_control
- IMPLEMENTATION_ROADMAP.pointer_stub
- 2026-02-24_immediate_priorities
- 2026-02-24_spatial_accessibility_plan
- 2026-02-25_accessibility_contracts_diagnostics_and_validation_strategy
- 2026-02-25_backlog_ticket_stubs
- 2026-02-25_copilot_implementation_guides
- 2026-02-25_planning_register_lane_sequence_receipt
- IMPLEMENTATION_ROADMAP
-
stubs
- checkpoint_2026-02-26
-
checkpoint_2026-02-27
-
graphshell_docs
- technical_architecture
- testing
- 2026-02-27_planning_register_historical_tail_archive_receipt
-
graphshell_docs
-
checkpoint_2026-03-01
- 2026-02-27_ux_baseline_done_definition
- 2026-02-28_current_milestone_ux_contract_checklist
- 2026-02-28_ux_issue_domain_map
- 2026-03-01_embedder_debt_host_ui_boundary_ownership_receipt
- 2026-03-01_issue_171_compositor_chaos_mode_receipt
- 2026-03-01_issue_175_content_open_routing_receipt
- 2026-03-01_issue_180_bridge_diagnostics_wishlist_receipt
- 2026-03-01_issue_180_bridge_probe_instrumentation_receipt
- 2026-03-01_issue_180_bridge_spike_export_harness_receipt
- 2026-03-01_issue_180_bridge_spike_run_01_receipt
- 2026-03-01_issue_180_bridge_spike_run_02_receipt
- 2026-03-01_issue_180_bridge_spike_run_03_receipt
- 2026-03-01_issue_180_bridge_spike_sample_schema_receipt
- 2026-03-01_issue_180_gl_to_wgpu_bridge_baseline_receipt
- 2026-03-01_issue_180_scissor_box_restoration_fix_receipt
- checkpoint_2026-03-05
- checkpoint_2026-03-07
-
checkpoint_2026-03-10
-
graphshell_docs
- implementation_strategy
- 2026-03-10_planning_register_audit_cleanup_receipt
-
graphshell_docs
-
checkpoint_2026-03-18
-
graphshell_docs
- implementation_strategy
- 2026-03-18_event_log_fact_store_query_architecture
- 2026-03-18_fact_query_type_sketch
- node_navigation_history_spec
-
graphshell_docs
-
checkpoint_2026-03-19
-
graphshell_docs
- implementation_strategy
-
graphshell_docs
- checkpoint_2026-03-21
-
checkpoint_2026-03-22
-
graphshell_docs
- implementation_strategy
-
graphshell_docs
-
checkpoint_2026-03-27
-
graphshell_docs
- technical_architecture
-
graphshell_docs
-
checkpoint_2026-03-28
-
graphshell_docs
- implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-01
-
graphshell_docs
-
implementation_strategy
-
graph
- 2026-02-20_node_badge_and_tagging_plan
- 2026-02-22_multi_graph_pane_plan
- 2026-02-23_graph_interaction_consistency_plan
- 2026-02-23_udc_semantic_tagging_plan
- 2026-02-25_progressive_lens_and_physics_binding_plan
- 2026-03-05_hybrid_graph_view_overview_atlas_plan
- 2026-03-31_node_badge_and_tagging_follow_on_plan
-
graph
-
implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-02
-
graphshell_docs
- implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-03
-
graphshell_docs
- implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-06
-
graphshell_docs
-
implementation_strategy
- subsystem_ux_semantics
-
implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-07
-
graphshell_docs
-
implementation_strategy
- subsystem_ux_semantics
-
implementation_strategy
-
graphshell_docs
-
checkpoint_2026-04-09
-
wr-wgpu-notes
- 2026-03-01_webrender_wgpu_renderer_implementation_plan
- 2026-04-03_p6_progress_report
- 2026-04-03_p8_progress_report
- 2026-04-04_p10_progress_report
- 2026-04-04_p9_progress_report
- 2026-04-05_p11_progress_report
- 2026-04-05_p12_progress_report
- 2026-04-07_p13_progress_report
- 2026-04-07_p14_progress_report
- 2026-04-08_live_full_reftest_confirmation
- draw_context_plan
- PROGRESS
- project_wgpu_backend
- servo_wgpu_integration
- shader_translation_journal
- texture_cache_cleanup_plan
- typed_pipeline_metadata_plan
- wasm-portability-checklist
- wgpu-backend-minimal-plan
- wr_wgpu_debug_plan
- wr_wgpu_diagnostics_archive
-
wr-wgpu-notes
-
graphshell_docs
- design
-
implementation_strategy
- aspect_command
- aspect_control
- aspect_distillery
- aspect_input
- aspect_projection
-
aspect_render
- 2026-03-03_servo_wgpu_upgrade_audit_report
- 2026-03-08_render_mod_decomposition_plan
- 2026-03-12_compositor_expansion_plan
- 2026-03-27_egui_retained_state_efficiency_and_physics_worker_evaluation_plan
- 2026-03-27_physics_spike_metrics
- 2026-04-12_rendering_pipeline_status_quo_plan
- ASPECT_RENDER
- frame_assembly_and_compositor_spec
- gl_to_wgpu_plan
- render_backend_contract_spec
- running_app_state_boundary_spec
-
graph
- 2026-02-24_physics_engine_extensibility_plan
- 2026-02-25_doi_fisheye_plan
- 2026-02-27_roadmap_lane_19_readiness_plan
- 2026-02-27_viewdimension_acceptance_contract
- 2026-03-05_hybrid_graph_view_overview_atlas_plan
- 2026-03-11_graph_enrichment_plan
- 2026-03-14_canvas_behavior_contract
- 2026-03-14_edge_operability_matrix
- 2026-03-14_edge_visual_encoding_spec
- 2026-03-14_graph_relation_families
- 2026-03-21_edge_family_and_provenance_expansion_plan
- 2026-03-21_edge_payload_type_sketch
- 2026-04-01_swatch_spec_extraction_plan
- 2026-04-02_parry2d_scene_enrichment_plan
- 2026-04-02_scene_mode_ux_plan
- 2026-04-03_damping_profile_follow_on_plan
- 2026-04-03_edge_routing_follow_on_plan
- 2026-04-03_layout_backend_state_ownership_plan
- 2026-04-03_layout_transition_and_history_plan
- 2026-04-03_layout_variant_follow_on_plan
- 2026-04-03_node_glyph_spec
- 2026-04-03_physics_preferences_surface_plan
- 2026-04-03_physics_region_plan
- 2026-04-03_semantic_clustering_follow_on_plan
- 2026-04-03_twod_twopointfive_isometric_plan
- 2026-04-03_wasm_layout_runtime_plan
- 2026-04-10_vello_scene_canvas_rapier_scene_mode_architecture_plan
- 2026-04-11_graph_canvas_crate_plan
- 2026-04-13_graph_canvas_phase0_plan
- agent_derived_edges_spec
- facet_pane_routing_spec
- faceted_filter_surface_spec
- force_layout_and_barnes_hut_spec
- frame_graph_representation_spec
- GRAPH
- graph_backlog_pack
- graph_node_edge_interaction_spec
- layout_algorithm_portfolio_spec
- layout_behaviors_and_physics_spec
- multi_view_pane_spec
- node_badge_and_tagging_spec
- petgraph_algorithm_utilization_spec
- semantic_tagging_and_knowledge_spec
- view_dimension_spec
- navigator
- shell
- social
- subsystem_accessibility
- subsystem_diagnostics
- subsystem_focus
-
subsystem_history
- 2026-03-08_unified_history_architecture_plan
- 2026-03-18_mixed_timeline_contract
- 2026-04-02_bookmarks_import_plan
- 2026-04-02_browser_history_import_plan
- 2026-04-09_owner_scoped_temporal_branching_follow_on
- 2026-04-11_browser_import_normalized_carrier_sketch
- edge_traversal_spec
- history_timeline_and_temporal_navigation_spec
- node_audit_log_spec
- SUBSYSTEM_HISTORY
- subsystem_mods
- subsystem_security
- subsystem_storage
-
subsystem_ux_semantics
- 2026-02-28_ux_contract_register
- 2026-03-01_automated_ux_testing_research
- 2026-03-01_ux_execution_control_plane
- 2026-03-04_model_boundary_control_matrix
- 2026-03-04_per_control_audit_grid
- 2026-03-08_unified_ux_semantics_architecture_plan
- 2026-03-13_chrome_scope_split_plan
- 2026-04-05_command_surface_observability_and_at_plan
- SUBSYSTEM_UX_SEMANTICS
- ux_event_dispatch_spec
- ux_scenario_and_harness_spec
- ux_tree_and_probe_spec
-
system
-
register
- 2026-03-08_registry_development_plan
- 2026-03-08_sector_b_input_dispatch_plan
- 2026-03-08_sector_c_identity_verse_plan
- 2026-03-08_sector_e_workbench_surface_plan
- 2026-03-08_sector_g_mod_agent_plan
- 2026-03-08_sector_h_signal_infrastructure_plan
- action_registry_contract_spec
- action_registry_spec
- agent_registry_spec
- canvas_registry_spec
- diagnostics_registry_spec
- identity_registry_spec
- index_registry_spec
- input_registry_spec
- knowledge_registry_spec
- layout_domain_registry_spec
- layout_registry_spec
- lens_compositor_spec
- mod_registry_spec
- physics_profile_registry_spec
- presentation_domain_registry_spec
- protocol_registry_spec
- SYSTEM_REGISTER
- theme_registry_spec
- viewer_registry_spec
- viewer_surface_registry_spec
- workbench_surface_registry_spec
- workflow_registry_spec
- 2026-02-21_lifecycle_intent_model
- 2026-03-03_graphshell_address_scheme_implementation_plan
- 2026-03-05_cp4_p2p_sync_plan
- 2026-03-05_network_architecture
- 2026-03-06_foundational_reset_implementation_plan
- 2026-03-06_reducer_only_mutation_enforcement_plan
- 2026-03-08_graph_app_decomposition_plan
- 2026-03-12_architectural_inconsistency_register
- 2026-03-12_workspace_decomposition_and_renaming_plan
- 2026-03-17_multi_identity_binding_rules
- 2026-03-17_runtime_task_budget
- control_panel_spec
- coop_session_spec
- register_layer_spec
- registry_runtime_spec
- signal_bus_spec
- system_architecture_spec
- VERSIONING_POLICY
-
register
-
viewer
- 2026-02-24_universal_content_model_plan
- 2026-02-25_interactive_html_export_plan
- 2026-02-26_composited_viewer_pass_contract
- 2026-02-26_visual_tombstones_plan
- 2026-03-02_filesystem_ingest_graph_mapping_plan
- 2026-03-02_unified_source_directory_mapping_plan
- 2026-03-05_node_viewport_preview_minimal_slice_plan
- 2026-03-08_servo_text_editor_architecture_plan
- 2026-03-28_wry_composited_texture_feasibility_spike
- 2026-04-03_clipping_viewer_follow_on_plan
- clipping_and_dom_extraction_spec
- node_lifecycle_and_runtime_reconcile_spec
- node_viewport_preview_spec
- universal_content_model_spec
- VIEWER
- viewer_presentation_and_fallback_spec
- visual_tombstones_spec
- webview_backpressure_spec
- webview_lifecycle_and_crash_recovery_spec
- wry_integration_spec
-
workbench
- 2026-03-03_pane_opening_mode_and_simplification_suppressed_plan
- 2026-03-26_frame_layout_hint_spec
- 2026-04-10_graph_tree_implementation_plan
- 2026-04-11_egui_tiles_retirement_strategy
- 2026-04-11_graph_tree_egui_tiles_decoupling_follow_on_plan
- frame_persistence_format_spec
- graph_first_frame_semantics_spec
- graphlet_projection_binding_spec
- navigator_backlog_pack
- navigator_graph_isomorphism_spec
- pane_chrome_and_promotion_spec
- pane_presentation_and_locking_spec
- tile_view_ops_spec
- WORKBENCH
- workbench_backlog_pack
- workbench_frame_tile_interaction_spec
- workbench_layout_policy_spec
- workbench_profile_and_workflow_composition_spec
- 2026-02-28_ux_contract_register
- 2026-03-01_complete_feature_inventory
- 2026-03-01_ux_migration_design_spec
- 2026-03-01_ux_migration_feature_spec_coverage_matrix
- 2026-03-01_ux_migration_lifecycle_audit_register
- 2026-03-01_webrender_readiness_gate_feature_guardrails
- 2026-03-02_scaffold_registry
- 2026-03-03_pre_wgpu_feature_validation_gate_checklist
- 2026-03-03_pre_wgpu_plot
- 2026-03-03_spec_conflict_resolution_register
- 2026-03-11_boa_scripting_engine_plan
- core-interaction-model-plan
- domain_interaction_acceptance_matrix
- plan-featureFirstNowRefactorFriendlyLater.prompt
- PLANNING_REGISTER
-
research
- 2026-02-18_graph_ux_research_report
- 2026-02-20_edge_traversal_model_research
- 2026-02-24_diagnostics_research
- 2026-02-24_interaction_and_semantic_design_schemes
- 2026-02-24_spatial_accessibility_research
- 2026-02-24_visual_tombstones_research
- 2026-02-26_architecture_terminology_alignment_gap_analysis
- 2026-02-26_original_vision_to_current_architecture_mapping
- 2026-02-27_all_docs_context_bootstrap
- 2026-02-27_egui_stack_assessment
- 2026-02-27_egui_wgpu_custom_canvas_migration_requirements
- 2026-02-27_freenet_takeaways_for_graphshell
- 2026-02-27_viewer_state_matrix
- 2026-02-28_graphshell_ux_research_agenda
- 2026-02-28_knowledge_capture_research_agenda
- 2026-02-28_navigation_semantics_mental_models_research
- 2026-02-28_performance_visual_scaling_research_agenda
- 2026-02-28_viewer_backend_research_agenda
- 2026-03-01_servo_script_engine_alternatives
- 2026-03-01_webrender_wgpu_renderer_research
- 2026-03-02_ux_integration_research
- 2026-03-04_standards_alignment_report
- 2026-03-24_tool_comparison_product_lessons
- 2026-03-27_ambient_graph_visual_effects
- 2026-03-29_graph_interaction_brainstorm
- 2026-03-30_middlenet_vision_synthesis
- 2026-04-02_intelligence_capability_tiers_and_blockers
- 2026-04-02_intelligence_taxonomy
- 2026-04-02_scene_mode_ux_sketch
- 2026-04-03_servo_slint_wgpu_hal_interop_research
- 2026-04-09_smolweb_browser_capability_gaps
- 2026-04-09_smolweb_discovery_and_aggregation_signal_model
- 2026-04-09_smolweb_graph_enrichment_and_accessibility_note
- 2026-04-10_servo_wpt_mountain_and_wr_wgpu_leverage
- 2026-04-10_ui_framework_alternatives_and_graph_tree_discovery
- 2026-04-11_linked_data_over_middlenet_relevance_note
- 2026-04-11_tabfs_tablab_graphshell_relevance_note
- scene_customization
- STANDALONE_EXTRACTION
-
technical_architecture
- 2026-02-18_universal_node_content_model
- 2026-02-27_presentation_provider_and_ai_orchestration
- 2026-03-01_dependency_inventory
- 2026-03-08_graphshell_core_extraction_plan
- 2026-03-12_specification_coverage_register
- 2026-03-29_middlenet_engine_spec
- 2026-03-29_portable_web_core_host_envelopes
- 2026-03-29_workspace_restructuring_plan
- 2026-03-30_protocol_modularity_and_host_capability_model
- 2026-04-09_browser_envelope_coop_and_degradation_policy
- 2026-04-09_graph_object_classification_model
- 2026-04-09_graphshell_verse_uri_scheme
- 2026-04-09_identity_convergence_and_person_node_model
- 2026-04-11_core_intent_inventory
- ARCHITECTURAL_OVERVIEW
- BUILD
- codebase_guide
- domain_interaction_scenarios
- graph_canvas_spec
- graph_tree_spec
- graphlet_model
- GRAPHSHELL_AS_BROWSER
- node_object_query_model
- QUICKSTART
- TERM_ARCHITECTURE_DESC
- unified_view_model
- testing
- matrix_docs
-
nostr_docs
- implementation_strategy
- technical_architecture
-
verse_docs
-
implementation_strategy
- 2026-02-26_intelligence_memory_architecture_stm_ltm_engrams_plan
- 2026-03-09_agent_wal_and_distillery_architecture_plan
- 2026-03-28_decentralized_storage_bank_spec
- 2026-04-06_sync_badge_verse_controls_plan
- community_governance_spec
- engram_spec
- flora_submission_checkpoint_spec
- lineage_dag_spec
- proof_of_access_ledger_spec
- self_hosted_model_spec
- self_hosted_verse_node_spec
- verseblob_content_addressing_spec
-
research
- 2026-02-22_aspirational_protocols_and_tools
- 2026-02-23_modern_yacy_gap_analysis
- 2026-02-23_storage_economy_and_indices
- 2026-02-24_local_intelligence_research
- 2026-02-24_wasm_mod_abi_research
- 2026-02-27_freenet_takeaways_for_verse
- 2026-02-28_verse_concrete_research_agenda
- 2026-03-28_libp2p_nostr_synergy_for_verse
- 2026-04-13_storage_system_comparison_for_verse
- SEARCH_FINDINGS_SUMMARY
- VERSE
- technical_architecture
-
implementation_strategy
-
verso_docs
-
implementation_strategy
- 2026-02-22_verse_implementation_strategy
- 2026-02-23_verse_tier1_sync_plan
- 2026-02-25_verse_presence_plan
- 2026-03-08_simple_document_engine_target_spec
- 2026-03-27_session_capsule_ledger_plan
- 2026-03-28_cable_coop_minichat_spec
- 2026-03-28_gemini_capsule_server_plan
- coop_session_spec
- PHASE5_STEP5.1_COMPLETE
- PHASE5_STEP5.2_COMPLETE
- PHASE5_STEP5.3_COMPLETE
- research
- technical_architecture
-
implementation_strategy
- 2026-03-14_documentation_compression_plan
- AI_USAGE
- DOC_POLICY
- DOC_README
- OPERATOR_GUIDE
- PROJECT_DESCRIPTION
- TERMINOLOGY
-
archive_docs