# List Conversations

> List all active conversations for this mind. Use when you need to see what conversations exist, check their models, or find a conversation ID.

- Skill: `imbue-ai/list-conversations` (Agent Skill)
- Install (CLI): `npx skillmds@latest add imbue-ai/list-conversations`
- Raw SKILL.md: https://api.skillmd.com/api/skills/imbue-ai/list-conversations/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: imbue-ai (https://skillmd.com/u/imbue-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/imbue-ai/list-conversations

---


# Listing Conversations

This skill lists all active conversations managed by this mind.

## When to use

- You need to find the ID of a specific conversation to reference or resume
- You want to see an overview of all active conversations
- You need to check which model a conversation is using

## How to list conversations

Run the chat script with `--list`:

```bash
$MNGR_AGENT_STATE_DIR/commands/chat.sh --list
```

This reads the `mind_conversations` table from the llm database and displays each conversation with:
- Conversation ID
- Name
- Creation timestamp
- Model being used

## Working with the results

- Use a conversation ID with `chat.sh --resume <id>` to continue an existing conversation
- Use `chat.sh --new --name "<name>"` to create or resume a conversation by name
- Conversations are append-only; there is no explicit "close" operation

