Managing Shared Content

rn session delete

Delete a shared session and all its versions from the server.

rn session delete <session-id-or-nanoid>

You can provide a local session UUID, the short nanoid from the URL, or a partial prefix. If the identifier is ambiguous (matches multiple sessions), you'll see the matches and be asked to be more specific.

rn session open

Open a shared session in your default browser.

rn session open <session-id-or-nanoid>

For private sessions, the CLI automatically generates a short-lived signed URL (valid for 1 hour) so you can view the content in your browser without needing to authenticate.

rn plan delete

Delete a shared plan and all its versions from the server.

rn plan delete <name-or-nanoid>

You can provide the plan name (with or without .md) or the nanoid.

rn plan open

Open a shared plan in your default browser.

rn plan open <name-or-nanoid>

For private plans, the CLI automatically generates a short-lived signed URL (valid for 1 hour) so you can view the content in your browser without needing to authenticate.

Identifier resolution

When you provide an identifier to delete or open, the CLI resolves it in this priority order:

  1. Exact nanoid match
  2. Exact session ID / plan name match
  3. Exact slug match (sessions only)
  4. Session ID prefix match (sessions only)

If multiple items match a slug or prefix, the server returns a 409 with the list of matches so you can refine your query.