docs(teleporter): fix chat resume command typo in TELEPORTATION.md

This commit is contained in:
Sehoon Shon
2026-02-24 17:18:37 -05:00
parent b0b6ebf574
commit 126342c969
3 changed files with 27 additions and 19 deletions
@@ -27,6 +27,12 @@ dedicated teleporter bundle:
- **Process**: The binary `.pb` file is read into a Buffer and passed to the
teleporter's `trajectoryToJson` function, which outputs a standard JavaScript
object.
- **Generation**: To ensure the CLI stays in sync with Jetski's protobuf schema
(`cortex.proto`), this bundle isn't written entirely by hand. It is
auto-generated by compiling the latest schema via `esbuild`. You can rebuild
it anytime by running `npm run build:teleporter` from the CLI root. _(See
[How to Regenerate the Bundle](#how-to-regenerate-the-bundle) for exact
steps)._
## 3. Workspace Identification
@@ -135,8 +141,7 @@ is skipped. This includes:
Once converted:
1. The record is injected into the CLI's `ChatRecordingService`.
2. Users can continue the conversation seamlessly via the `/chat resume`
command.
2. Users can continue the conversation seamlessly via the `/resume` command.
## Maintenance & Updates
@@ -200,9 +205,9 @@ addressed:
### 3. User Experience (UX)
- **Clear UI Indicators:** In the CLI's `/chat resume` menu, Jetski sessions
should be visually distinct from native CLI sessions (e.g., using a 🛸 icon
and a "Jetski" tag next to the session name).
- **Clear UI Indicators:** In the CLI's `/resume` menu, Jetski sessions should
be visually distinct from native CLI sessions (e.g., using a 🛸 icon and a
"Jetski" tag next to the session name).
- **Missing Context Warnings:** Because we intentionally drop 75+ step types
(browser actions, IDE UI clicks, etc.), the CLI conversation history might
look like it has "gaps." The UI should render a small placeholder like:
@@ -226,10 +231,10 @@ addressed:
### 5. Performance
- **Lazy Loading / Streaming:** When populating the list of sessions for
`/chat resume`, the CLI shouldnt decrypt and parse the _entire_ history of
every file. It should only read the `metadata` headers to render the UI
picker, and only parse the full multi-megabyte `ConversationRecord` when a
specific session is selected.
`/resume`, the CLI shouldnt decrypt and parse the _entire_ history of every
file. It should only read the `metadata` headers to render the UI picker, and
only parse the full multi-megabyte `ConversationRecord` when a specific
session is selected.
- **Memory Limits:** Set an upper limit on how many historical tool turns the
CLI loads into memory when teleporting to avoid OOM (Out of Memory) crashes in
Node.js.