resume
Retrieve a human's browser session context—tabs, scroll positions, video timestamps, and reasoning—to resume a task exactly where they left off.
Instructions
Fetch a UNIHODL session as Resume Context — the human's open tabs, scroll positions, video timestamps, AI-tagged decision thread, partial conclusions, and intended next step. Read-only and idempotent: it never modifies the session. Use it when you have a session_id (from list_sessions or the user) and need the human's working context before continuing their task; to discover sessions instead, use list_sessions. Returns a prompt-ready text block by default, or the raw Resume Context object with format 'json'. Errors: a malformed session_id is rejected before any network call; an unknown, expired, or revoked session returns an error message stating the reason.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | UNIHODL session id in the form ses_<alphanumeric>, e.g. 'ses_8f3aZ91b'. Obtain one from list_sessions or from the user. Ids that do not match the pattern are rejected without a network call. | |
| format | No | 'prompt-ready' (default): a structured natural-language block ready to inject directly into model context. 'json': the raw Resume Context object for programmatic use (schema: https://www.unihodl.app/sdk/spec). | prompt-ready |