> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remember Slack Users Across Threads

> Resolve a Slack member to an email-backed user ID when available, then use a MemoryManager to retain stable preferences across otherwise separate threads.

```python user_memory.py theme={null}
"""
Remember Slack Users Across Threads
===================================

Resolve a Slack member to an email-backed user ID when available, then use a
MemoryManager to retain stable preferences across otherwise separate threads.

Prerequisites: SLACK_TOKEN, SLACK_SIGNING_SECRET, OPENAI_API_KEY
Run: .venvs/demo/bin/python cookbook/05_agent_os/17_slack/user_memory.py
Try in Slack: Share a preference in one thread, then ask about it in a new thread
Slack scopes: app_mentions:read, assistant:write, chat:write, im:history, users:read, users:read.email
"""

from agno.agent import Agent
from agno.db.sqlite import SqliteDb
from agno.memory import MemoryManager
from agno.models.openai import OpenAIResponses
from agno.os import AgentOS
from agno.os.interfaces.slack import Slack

# ---------------------------------------------------------------------------
# Create Memory-enabled Slack AgentOS
# ---------------------------------------------------------------------------

db = SqliteDb(
    id="slack-memory-db",
    db_file="tmp/slack_memory.db",
)

memory_manager = MemoryManager(
    id="slack-user-memory-manager",
    model=OpenAIResponses(id="gpt-5.5"),
    db=db,
    memory_capture_instructions=(
        "Capture the user's name, role, communication preferences, current "
        "projects, and durable likes or dislikes."
    ),
)

personal_assistant = Agent(
    id="slack-personal-assistant",
    name="Slack Personal Assistant",
    model=OpenAIResponses(id="gpt-5.5"),
    db=db,
    memory_manager=memory_manager,
    update_memory_on_run=True,
    instructions=[
        "Use saved user memories when they are relevant.",
        "Do not invent personal details that are not in the conversation or memory.",
        "Keep responses concise for Slack.",
    ],
    add_history_to_context=True,
    num_history_runs=3,
    markdown=True,
)

agent_os = AgentOS(
    id="slack-memory-os",
    description="AgentOS with email-resolved Slack user memory.",
    agents=[personal_assistant],
    interfaces=[
        Slack(
            agent=personal_assistant,
            resolve_user_identity=True,
        )
    ],
)
app = agent_os.get_app()

# ---------------------------------------------------------------------------
# Run Memory-enabled Slack AgentOS
# ---------------------------------------------------------------------------

if __name__ == "__main__":
    agent_os.serve(app=app)
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U "agno[os,slack]" openai
    ```
  </Step>

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      export SLACK_SIGNING_SECRET="your_slack_signing_secret_here"
      export SLACK_TOKEN="your_slack_token_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      $Env:SLACK_SIGNING_SECRET="your_slack_signing_secret_here"
      $Env:SLACK_TOKEN="your_slack_token_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `user_memory.py`, then run:

    ```bash theme={null}
    python user_memory.py
    ```
  </Step>
</Steps>

Full source: [cookbook/05\_agent\_os/17\_slack/user\_memory.py](https://github.com/agno-agi/agno/blob/v3.0.4/cookbook/05_agent_os/17_slack/user_memory.py)
