Open item N of the last result (table row, node entry, pipeline, etc.) and render its detail card.
/open <N>
## Overview `/open` drills into item N of the most recent scrollback card. Every card that renders a list, table, or tree marks its rows with a `[N]` gutter; `/open N` resolves that reference by looking up the drill-in action stored with the row and submitting it as if the user typed it directly. The alias `/o N` is identical, and a bare number at the start of the input (e.g. `3`) is also accepted as an open reference. ## Behavior - Resolves against the most recent non-system card in scrollback. The reference is looked up into the card's `actions` list (a flat, ordered list of drill-in commands). - Typical drill-ins: a row in `/nodes` opens `/use-node <name>`; a row in `/schemas` opens `/describe <schema>`; a row in `/describe sales.orders` opens another `/describe` on a related table. - On resolve, the user's typed reference (`3`) is discarded from the input buffer and the resolved slash command is submitted as the echo. Scrollback shows the real verb, which keeps history meaningful. - Input forms: `/open N`, `/o N`, `:open N`, `:o N`, and a standalone digit line (e.g. just typing `3`). ## Compatibility - Index is 1-based and matches the `[N]` gutter exactly.
/open 3
/o 3
3