Skip to content

PointSav Documentation

The engineering library for the PointSav platform — operating systems and services for regulated businesses that own their data, their AI, and their record-keeping outright. Where the monorepo holds the code, this wiki holds the reasoning: architecture, services, security, and the governance commitments that bind future development.

Navigate the console TUI

← All revisions

6ac6f135 · PointSav Digital Systems ·

fix(how-to): Working in the console group rewritten against real source (Group 3, Phase 1 continued)

View the full record as of this revision →

@@ -1,77 +1,67 @@
---
schema: foundry-doc-v1
title: "How to navigate the console TUI"
title: "Navigate the console TUI"
slug: navigate-console-tui
short_description: "Navigates the os-console terminal interface by keyboard — switching between F-key slots, reading the status bar for identity and SLM tier, and tracking which slot is active."
short_description: "Navigates os-console by keyboard — the F-key strip at the top, the status bar's real fields at the bottom, and switching slots without losing state."
category: how-to
content_type: how-to
type: how-to
quality: complete
status: active
last_edited: 2026-06-14
audience: "Engineers (hands on keyboard); customer operators"
last_edited: 2026-08-06
editor: pointsav-engineering
paired_with: navigate-console-tui.es.md
research_trail:
  sources: [pointsav-monorepo app-console-keys (chassis layout, status bar widget, F-key strip widget)]
  verification_method: "independently source-verified against pointsav-monorepo on 2026-08-06 by reading the Rust source directly, with file:line citations recorded per claim; corrected the guide's own prior layout error (status bar and F-key strip positions were reversed) and its status bar field claims, both against the actual chassis render function"
---

`os-console` is a full-screen terminal application that organises platform functions into numbered F-key slots. Navigating the console means switching between slots, reading the status bar, and understanding what the active slot is showing you. No mouse is required — the keyboard model is complete.

For the architecture behind this model, see [[app-console-keys]] and [[os-console-platform]].

## Prerequisites

- A paired device (see [[pair-a-new-device]])
- `os-console` installed and launched
- An active session (see [[open-first-totebox-session]])

## Layout
## Purpose

Learn the console's real screen layout and status bar fields well enough to navigate confidently — a few minutes, and it stays accurate for every cartridge you'll use later.

## Procedure

1. Launch `os-console` and observe the three fixed regions, top to bottom: a one-row F-key strip, the active cartridge's content filling the rest of the screen, and a one-row status bar at the very bottom.

The console occupies the full terminal window with three persistent regions:
2. Read the F-key strip. It shows a label for every F-key slot, with the currently active one highlighted and unloaded slots dimmed.

| Region | Location | Contents |
|---|---|---|
| Status bar | Top of screen | Identity label, authorization state, active slot name, SLM tier, session duration |
| Slot area | Main body | Output from whichever slot is currently active |
| Navigation strip | Bottom of screen | F-key labels showing which slots are loaded |
3. Read the status bar. Left to right: your identity as `username@tenant`; the Machine-Based Authorization link state (`MBA LINK ACTIVE`, `MBA LINK INACTIVE: <reason>`, or `MBA LINK PENDING`); the active slot's full label (e.g. `F9: SLM`, not a bare number); and elapsed session time. A `[N pending]` badge appears only when you have pending pairing requests.

The navigation strip displays the slot names bound to each F-key. Unloaded slots appear dimmed.
   > **Note:** there is no SLM-tier indicator in the status bar. Inference tier and circuit state are shown inside the F9 dashboard itself, not in the persistent status bar.

## Switching slots with F-keys
4. Press any F-key to switch to that slot. The content area updates immediately, and the F-key strip's highlight and the status bar's active-slot field both confirm which slot is live.

Press any labelled F-key to activate that slot. The slot area updates immediately. The active slot name in the status bar confirms which slot is live.
5. Switch away from a slot and back. Cartridges hold their own state — a document you were editing or a dashboard you were viewing is exactly as you left it.

Loaded slots hold their state when you switch away — an email inbox you scrolled to a particular message stays at that position when you return to F3.
6. Check each cartridge's own hint line for its specific key bindings. They aren't universal — F9's dashboard responds to **R** (refresh) and **?** (help), for example, but a different cartridge's bindings are its own and shown in its own interface, not in a shared reference table.

## Reading the status bar
## Expected outcome

The status bar updates continuously. Left to right:
You can read every field in the status bar correctly, switch between loaded F-key slots without losing a cartridge's state, and know to check each cartridge's own hint line for bindings specific to it.

- **Identity** — the paired device identity and its permission tier
- **Auth state** — `LINKED` when machine-based authorization is active; `LINK INACTIVE` when unavailable
- **Active slot** — the name of the currently displayed cartridge (e.g., `INPUT`, `EMAIL`, `SLM`)
- **SLM tier** — the Doorman circuit state: `A` (DataGraph live), `B` (SLM only), or `C` (local fallback) (Correction, 2026-08-02, verified against canonical `origin/main`: the real status bar, `app-console-keys/src/widgets/status_bar.rs`, has no SLM-tier field at all — it shows `username@tenant │ MBA LINK state │ active-slot │ elapsed time [pending pairs]`. Real Tier A/B/C semantics (confirmed in `app-console-slm/src/health.rs` and the Doorman systemd unit description) are Tier A = local on-prem model, Tier B = Yo-Yo GPU burst, Tier C = external API fallback — DataGraph availability (`entity_count`) is a separate, unrelated field, not a tier. Same systemic defect found across several `how-to/` articles this sweep. Flagged, not resolved.)
- **Session duration** — elapsed time since the session was opened
## Verification

## Key bindings that work in every slot
Switch to at least two different loaded slots and confirm both the F-key strip's highlighted label and the status bar's active-slot field update to match each time.

| Key | Action |
|---|---|
| F1–F12 | Switch to that slot |
| ? | Show contextual help for the active slot |
| q or Esc | Exit the active slot back to the home view (slot-dependent) |
| Ctrl-C | Quit `os-console` |
## Rollback

Slot-specific bindings are shown in the navigation strip of the active slot.
Navigation has no state to roll back — switching slots or exiting the console changes nothing persistent by itself. If a cartridge's own action does write something (submitting input at F12, for example), that cartridge's own guide covers its own rollback.

## Key takeaways
## Next steps

- Navigation is entirely keyboard-driven — F-key number = slot number
- Slots hold their state; switching away and back is non-destructive
- The status bar is the ground truth for authorization state and SLM availability
- F12 is the Input Machine; it is always present and cannot be reassigned
- [[use-f-key-model]] — what each default cartridge actually does, corrected against real source
- [[explore-the-console]] — a guided first tour combining layout, F9, and F12

## See also

- [[app-console-keys]] — the chassis and Cartridge trait that all slots implement
- [[os-console-platform]] — the full F-key taxonomy and which cartridge occupies each slot
- [[use-f-key-model]] — how to work with the F-key cartridge model
- [[machine-based-auth]] — what the `LINKED`/`LINK INACTIVE` auth state means
- [[app-console-keys]] — the chassis, the Cartridge trait, and the status bar's implementation
- [[machine-based-auth]] — what the MBA link states mean
- [[pair-a-new-device]] — register a device before opening the console
Important Information

Corporate structure. PointSav Digital Systems ("PointSav") is currently a trade name of Woodfine Capital Projects Inc. ("Woodfine"), planned to become a wholly-owned Woodfine subsidiary upon incorporation. PointSav does not itself offer, sell, or solicit any security. Any securities offering associated with Woodfine's real-property direct-hold solutions is made exclusively by Woodfine, and only by means of the applicable Private Placement Memorandum.

No investment advice. This wiki's content is provided for engineering, operational, research, and development purposes. Nothing on this wiki constitutes investment advice or a solicitation to invest in any Woodfine partnership or direct-hold solution.

Intellectual property. The PointSav name, trade name, wordmark, and marks, together with all current and future PointSav- and Totebox-branded products, services, and offerings — and the software, source code, documentation, design system, and all related materials — are proprietary to Woodfine and its affiliates, except for components identified as open source. No rights are granted except as expressly set out in a written license or agreement. The full trademark notice appears in the footer of every page on this site.

Open source components. Portions of the platform are made available under permissive open-source licenses identified in the accompanying repository. Use of those components is governed by their respective license terms.

No warranty; informational use. Content on this wiki is provided for general informational purposes only and does not constitute a representation, warranty, or commitment with respect to product functionality, availability, pricing, or roadmap. Some articles describe planned or intended features, capabilities, and milestones — language such as "planned," "intended," "targeted," "may," and "expected" marks this forward-looking content, which is subject to change and does not constitute a commitment regarding future performance.

Confidentiality. Where an article describes an operational or deployment detail that is not intended for public disclosure, that article is not published on this wiki. Content here is general-purpose engineering documentation, not customer-specific configuration.

Jurisdiction. Woodfine Capital Projects Inc. is organized in British Columbia, Canada. References to the Sovereign Data Foundation on this wiki describe a planned or intended initiative only, not a current equity holder or active governance body.

Changes to this notice. PointSav may update this notice from time to time; the version posted on this page governs.

Not a filing system. This wiki is not a securities filing system, an electronic disclosure repository, or a substitute for SEDAR+ or any other regulatory filing system. Formal securities filings are made through the applicable regulatory filing system, not through this wiki.

Full disclaimer. This notice supplements, and does not replace, the full Disclaimers article. In the event of any conflict, the full Disclaimers article governs.

Read the full disclaimer →