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

# CLI Overview

> Overview of the Memanto command-line interface and available commands.

# CLI Overview

The Memanto CLI is the entry point for agent, memory, session, scheduling, configuration, and integration workflows.

## Canonical CLI Output Reference

Use command-specific CLI pages as the source of truth for expected output and option behavior.

* Core command outputs: [Core Commands](/cli/core/status)
* Agent command outputs: [Agent Commands](/cli/agents/create)
* Memory command outputs: [Memory Commands](/cli/data/remember)
* Session command outputs: [Session Commands](/cli/sessions/info)
* Schedule command outputs: [Schedule Commands](/cli/schedule/status)
* Config command outputs: [Config Commands](/cli/config/show)
* Connect command outputs: [Connect Commands](/cli/connect/connect)

## Installation

```bash theme={null}
pip install memanto
```

Verify:

```bash theme={null}
memanto --version
```

For first-run setup, see [Installation & Setup](/getting-started/installation).

## Command Pattern

```bash theme={null}
memanto [COMMAND] [SUBCOMMAND] [OPTIONS]
```

## Command Groups

| Group        | Purpose                              | Primary page                              |
| ------------ | ------------------------------------ | ----------------------------------------- |
| **Core**     | Basic operations                     | [Core Commands](/cli/core/status)         |
| **agent**    | Agent lifecycle and activation       | [Agent Commands](/cli/agents/create)      |
| **memory**   | Memory CRUD and analysis             | [Memory Commands](/cli/data/remember)     |
| **session**  | Session inspection and extension     | [Session Commands](/cli/sessions/info)    |
| **schedule** | Automated summaries and checks       | [Schedule Commands](/cli/schedule/status) |
| **config**   | Local/system configuration           | [Config Commands](/cli/config/show)       |
| **connect**  | IDE and assistant integrations       | [Connect Commands](/cli/connect/connect)  |
| **migrate**  | Import memories from other providers | [Migrate Command](/cli/migrate/migrate)   |

## Quick Start

```bash theme={null}
# 1. Configure API access
memanto

# 2. Create an agent (automatically activates)
memanto agent create my-agent

# 3. Store and recall memory
memanto remember "Project kickoff is Monday" --type event
memanto recall "When is project kickoff?"
```

For expanded workflows, use the command pages above and related guides in [Guides](/guides/memory-operations).

## Global Options

All commands support:

* `--help` - Show command help
* `--version` - Show Memanto version

Example:

```bash theme={null}
memanto remember --help
memanto --version
```

## Related Pages

* [Installation & Setup](/getting-started/installation)
* [Memory Operations Guide](/guides/memory-operations)
* [Moorcheh Setup & Integration](/guides/moorcheh-integration)
