Skip to main content

Documentation Index

Fetch the complete documentation index at: https://openworklabs.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

OpenWork’s cross-chat memory currently comes from saved session history. It is not a separate long-term memory database, and it does not automatically inject every old chat into every new prompt. When an agent is running inside the OpenWork app, it can use OpenWork’s semantic UI actions to look up past chats:
  • session.list_sessions lists recent sessions across the workspaces the app knows about.
  • session.open opens a matching session by ID.
  • session.read_transcript reads recent messages from the currently open session.
  • session.latest_message reads the newest message in the currently open session.
That means you can ask things like:
  • What did I say in the Blue Yonder session?
  • Find the session about Ramki and remind me what we decided.
  • Open the onboarding bug chat and summarize the next steps.
  • What did I ask you to do in session ses_abc123?

What happens

  1. The agent lists sessions and matches by session ID, title, workspace, or topic words you provided.
  2. If there is one clear match, the agent opens that session.
  3. The agent reads the transcript and answers from the returned messages.
  4. If there are multiple likely matches, the agent asks which session you meant.
Because this uses the OpenWork UI, the agent may briefly navigate away from your current session to inspect another one. You can ask it to return to the current session afterward.

Current limits

  • Session lookup is based on the sessions OpenWork has loaded for the current app and workspace context.
  • Transcript reads return a bounded set of recent messages from the opened session. If an older part of a long chat is not returned, the agent should say that instead of guessing.
  • This is not semantic search over every message yet. Clear titles, session IDs, workspace names, or topic clues help the agent find the right chat.
  • The agent can only read sessions available to the current OpenWork app and user.

How to ask

Give the agent whatever clue you have: a session ID, title, person name, project name, workspace, or rough topic. For example: Use the OpenWork app UI to find the Blue Yonder chat and tell me what I said about customer references.