> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> Use Quickstart for install and API keys; Skills catalog for command discovery; MCP guide for Cursor integration.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# Sessions

> Persist and resume Arka conversation sessions from the CLI.

Arka stores channel conversations locally so a follow-up can keep its context.
The default CLI session is `cli/default`; webhook and messaging integrations
use their channel and chat id as the session key.

```bash theme={null}
arka session status
arka session list
arka session resume cli default
arka session context cli default
arka session reset cli default
```

The same actions accept natural language:

```bash theme={null}
arka "list my sessions"
arka "resume my session"
```

Session files live under `~/.config/arka/message-sessions/` (or the directory
selected by `ARKA_CONFIG_DIR`). Use `MESSAGE_SESSIONS=0` to disable persistence.


## Related topics

- [Channel sessions and sub-agent delegation](/guides/hermes-features.md)
- [Session memory, heartbeat, and skill gates](/guides/openclaw-features.md)
- [How to code with Arka](/guides/code-with-arka.md)
- [Chat, web search, and factual Q&A skills](/guides/chat.md)
- [Long-term memory with Supermemory sync](/guides/memory.md)
