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

# Cognitive Memory

> Store, recall, and manage contextual knowledge using semantic search

Cognitive memory enables your organization to store and recall contextual knowledge using AI-powered semantic search. Store runbooks, configurations, best practices, and any organizational knowledge in datasets, then retrieve relevant information using natural language queries.

<Info>
  For an overview of cognitive memory architecture and how agents use it, see the [Cognitive Memory](/core-concepts/cognitive-memory/overview) core concepts guide.
</Info>

## Quick Start

```bash theme={null}
# Create a dataset for your knowledge
kubiya memory dataset create \
  --name "production-runbooks" \
  --scope org \
  --description "Production operational runbooks"
```

**Output:**

```
✓ Dataset created successfully
  ID: 12229faa-89e2-5a54-a451-4971b2f04b37
  Name: production-runbooks
  Scope: org
```

```bash theme={null}
# Store a memory
kubiya memory store \
  --title "AWS Production Setup" \
  --content "Region: us-east-1, VPC: vpc-0a1b2c3d4e5f, Subnets: subnet-abc, subnet-def" \
  --dataset-id 12229faa-89e2-5a54-a451-4971b2f04b37 \
  --tags aws,production,infrastructure
```

**Output:**

```
✓ Memory stored successfully
  Memory ID: mem_org123_user456_1734567890
  Status: processing
```

```bash theme={null}
# Recall memories using semantic search
kubiya memory recall "AWS configuration" --tags production
```

**Output:**

```
🔍 Memory Recall Results (2 matches)

1. AWS Production Setup (score: 0.95)
   Memory ID: mem_org123_user456_1734567890
   Tags: aws, production, infrastructure
   Created: 2024-12-15

   Region: us-east-1, VPC: vpc-0a1b2c3d4e5f...

2. AWS Network Configuration (score: 0.87)
   ...
```

## Datasets

Datasets are containers for organizing memories with different access scopes. Each memory must be stored in a dataset.

### Dataset Scopes

* **`user`**: Private to your user account
* **`org`**: Shared across your entire organization
* **`role`**: Accessible to specific roles (requires `--allowed-roles`)

### Create Dataset

```bash theme={null}
# Organization-wide dataset
kubiya memory dataset create \
  --name "team-knowledge" \
  --scope org \
  --description "Shared team knowledge base"

# User-private dataset
kubiya memory dataset create \
  --name "personal-notes" \
  --scope user

# Role-based dataset
kubiya memory dataset create \
  --name "ops-runbooks" \
  --scope role \
  --allowed-roles devops,sre
```

### List Datasets

```bash theme={null}
kubiya memory dataset list
```

**Output:**

```
📁 Datasets (3)

NAME                 ID                             SCOPE    CREATED
team-knowledge       abc123-def456...               org      2024-12-10
personal-notes       xyz789-uvw012...               user     2024-12-12
ops-runbooks         mno345-pqr678...               role     2024-12-13
```

```bash theme={null}
# JSON output
kubiya memory dataset list --output json
```

### Get Dataset Details

```bash theme={null}
kubiya memory dataset get abc123-def456-789
```

**Output:**

```
📁 Dataset Details

  ID: abc123-def456-789
  Name: team-knowledge
  Scope: org
  Description: Shared team knowledge base
  Created: 2024-12-10 15:30:00
```

### Get Dataset Data

View all data entries in a dataset:

```bash theme={null}
kubiya memory dataset get-data abc123-def456-789
```

### Purge Dataset Data

Clear all data from a dataset while preserving the dataset container, permissions, and metadata:

```bash theme={null}
# Purge all data from a dataset
kubiya memory dataset purge abc123-def456-789
```

**Output:**

```
🗑️  Purging dataset data
  Dataset: abc123-def456-789

✓ Purge initiated successfully
  Dataset ID: abc123-def456-789
  Items to purge: 1,247
  Job ID: job_abc123def456
  Status: processing

  💡 Track progress: kubiya memory status job_abc123def456
```

This is useful when you want to refresh dataset content without recreating the dataset or losing permissions.

<Info>
  **Purge vs Delete**: Use `purge` to clear data while keeping the dataset structure. Use `delete` to remove the entire dataset including permissions and metadata.
</Info>

### Delete Dataset

<Warning>
  Deleting a dataset removes all associated memories. This action cannot be undone.
</Warning>

```bash theme={null}
kubiya memory dataset delete abc123-def456-789
```

### Upload Files to Dataset

Upload local files or entire directories to a dataset:

```bash theme={null}
# Upload a single file
kubiya memory dataset upload abc123-def456-789 ./document.md \
  --title "Project Documentation"

# Upload with tags
kubiya memory dataset upload abc123-def456-789 ./guide.md \
  --title "Setup Guide" \
  --tags production,setup,documentation

# Upload entire directory
kubiya memory dataset upload abc123-def456-789 ./docs/ \
  --title "Documentation"

# Upload with metadata
kubiya memory dataset upload abc123-def456-789 ./config.json \
  --title "Configuration" \
  --metadata-json '{"env":"prod","version":"1.0"}'
```

**Output:**

```
📤 Uploading knowledge to dataset
  Dataset: abc123-def456-789
  Path: ./docs/

  ✓ Uploaded: setup.md (Memory ID: mem_org_user_1734567890)
  ✓ Uploaded: guide.md (Memory ID: mem_org_user_1734567891)
  ✓ Uploaded: config.md (Memory ID: mem_org_user_1734567892)

✓ Successfully uploaded 3 file(s)
  Dataset ID: abc123-def456-789
```

**Supported Flags:**

* `--title` - Title for the uploaded content
* `--tags` - Comma-separated tags for categorization
* `--metadata-json` - Additional metadata as JSON string
* `--output` - Output format (json, yaml)

**Automatic Features:**

* Skips hidden files (starting with `.`)
* Skips binary files (executables, images, archives)
* Recursively processes directories
* Adds file metadata (filename, path, size)

### Code Ingestion

Ingest code repositories for semantic code search and analysis:

```bash theme={null}
# Ingest code from a local repository
kubiya memory dataset code ingest abc123-def456-789 /path/to/repo

# Ingest with custom file patterns
kubiya memory dataset code ingest abc123-def456-789 ./src \
  --patterns "**/*.py,**/*.js,**/*.ts" \
  --exclude-patterns "**/node_modules/**,**/__pycache__/**"

# Ingest with custom batch size
kubiya memory dataset code ingest abc123-def456-789 ./project \
  --batch-size 50
```

**Output:**

```
🚀 Starting code ingestion
  Dataset: abc123-def456-789
  Path: /path/to/repo

✓ Session started: session_abc123
✓ Found 127 files

  Batch 1: Processed 50/50 files
  Batch 2: Processed 50/50 files
  Batch 3: Processed 27/27 files

✓ Uploaded 127 files in 3 batches

✓ Code ingestion completed
  Job ID: job_xyz789
  Status: completed
  Files Processed: 127/127

  💡 Check status: kubiya memory dataset code status abc123-def456-789 job_xyz789
```

**Default File Patterns:**

* Included: `**/*.py`, `**/*.js`, `**/*.ts`, `**/*.tsx`, `**/*.jsx`, `**/*.go`, `**/*.java`, `**/*.rs`, `**/*.c`, `**/*.cpp`, `**/*.h`
* Excluded: `**/__pycache__/**`, `**/node_modules/**`, `**/dist/**`, `**/build/**`, `**/.git/**`, `**/venv/**`, `**/target/**`

**Code Analysis Features:**

* Language detection by file extension
* Dependency extraction (imports, requires)
* Export detection (functions, classes)
* Lines of code calculation
* File deduplication via SHA256 hash

**Flags:**

* `--patterns` - File patterns to include (comma-separated)
* `--exclude-patterns` - Patterns to exclude (comma-separated)
* `--batch-size` - Files per batch (1-100, default: 50)
* `--output` - Output format (json, yaml)

### Check Code Ingestion Status

Track the progress of code ingestion jobs:

```bash theme={null}
kubiya memory dataset code status abc123-def456-789 job_xyz789
```

**Output:**

```
📊 Code Ingestion Job Status

  Job ID: job_xyz789
  Status: completed

  Started: 2024-12-17 14:30:00
  Completed: 2024-12-17 14:32:15

  Files Processed: 127/127
  Files by Language:
    - python: 68
    - javascript: 42
    - typescript: 17
```

## Memory Operations

### Store Memory

Store contextual knowledge with semantic embeddings for later retrieval.

```bash theme={null}
# Basic memory storage
kubiya memory store \
  --title "Database Connection String" \
  --content "Production PostgreSQL: postgres://prod-db.example.com:5432/mydb" \
  --dataset-id abc123-def456-789 \
  --tags database,production,postgresql
```

```bash theme={null}
# Store from file
kubiya memory store \
  --title "Kubernetes Deployment Guide" \
  --content-file ./docs/k8s-deployment.md \
  --dataset-id abc123-def456-789 \
  --tags kubernetes,deployment,production
```

```bash theme={null}
# Store with structured metadata
kubiya memory store \
  --title "API Configuration" \
  --content "API endpoint: https://api.example.com" \
  --dataset-id abc123-def456-789 \
  --tags api,configuration \
  --metadata-json '{"env":"production","version":"2.0","owner":"platform-team"}'
```

**Supported Flags:**

* `--title` (required) - Descriptive title for the memory
* `--content` - Direct content input (or use `--content-file`)
* `--content-file` - Read content from a file
* `--dataset-id` (required) - Target dataset identifier
* `--tags` - Comma-separated tags for categorization
* `--metadata-json` - Additional structured metadata as JSON
* `--output` - Output format (`text`, `json`, `yaml`)

### Recall Memories

Search stored memories using natural language queries with semantic understanding.

```bash theme={null}
# Simple recall
kubiya memory recall "database configuration"
```

```bash theme={null}
# Recall with filters and precision control
kubiya memory recall "kubernetes deployment" \
  --tags production,kubernetes \
  --top-k 5 \
  --min-score 0.7
```

```bash theme={null}
# Recall with specific search type
kubiya memory recall "kubernetes architecture" --search-type GRAPH_COMPLETION
kubiya memory recall "recent changes" --search-type TEMPORAL
kubiya memory recall "user feedback" --search-type FEEDBACK
```

```bash theme={null}
# JSON output for automation
kubiya memory recall "incident response" \
  --tags critical \
  --output json
```

**Search Types:**

* `GRAPH_COMPLETION` (default) - Standard semantic search with graph context
* `TEMPORAL` - Time-aware search emphasizing recent information
* `FEEDBACK` - Search incorporating user feedback and interactions
* `RAG_COMPLETION` - Retrieval-augmented generation for comprehensive answers
* `CHUNKS` - Search at the chunk level for precise results

**Query Tips:**

* Use natural language descriptions
* Be specific: "production database failover" vs "database"
* Combine with tags for precision
* Adjust `--min-score` to filter by relevance (0.0-1.0)
* Use `--top-k` to limit results (default: 10)
* Choose appropriate search type based on your needs

### List Memories

View all stored memories:

```bash theme={null}
# List all memories
kubiya memory list
```

**Output:**

```
🧠 Memories (5)

TITLE                          MEMORY ID                    TAGS                    CREATED
Database Connection String     mem_org123_user456_...       database,production     2024-12-15
Kubernetes Deployment Guide    mem_org123_user456_...       kubernetes,deployment   2024-12-14
API Configuration              mem_org123_user456_...       api,configuration       2024-12-13
```

```bash theme={null}
# JSON output
kubiya memory list --output json

# YAML output
kubiya memory list --output yaml
```

### Check Job Status

Some memory operations are asynchronous. Check their status:

```bash theme={null}
kubiya memory status job_abc123def456
```

**Output:**

```
⚙️  Memory Job Status

  Job ID: job_abc123def456
  Status: completed
  Progress: 100.0%
  Completed: 2024-12-15 14:30:00
```

## Output Formats

All memory commands support multiple output formats for different use cases:

| Format           | Description                               | Use Case                   |
| ---------------- | ----------------------------------------- | -------------------------- |
| `text` (default) | Human-readable with colors and formatting | Interactive CLI usage      |
| `json`           | Machine-readable JSON                     | Automation, scripts, CI/CD |
| `yaml`           | YAML format                               | Configuration management   |
| `table`          | Tabular format                            | List commands (automatic)  |

```bash theme={null}
# Text output (default)
kubiya memory dataset list

# JSON for scripting
kubiya memory dataset list --output json | jq '.[] | .name'

# YAML for configs
kubiya memory recall "config" --output yaml > memory.yaml
```

## Best Practices

### Dataset Organization

**Scope Strategy:**

* Use **`org`** scope for shared team knowledge (runbooks, documentation)
* Use **`user`** scope for personal notes and drafts
* Use **`role`** scope for sensitive information (credentials, SRE procedures)

**Naming Conventions:**

```bash theme={null}
# Good: Descriptive, specific names
production-runbooks
api-documentation
incident-response-procedures

# Avoid: Generic, unclear names
data
stuff
notes
```

**Tagging Taxonomy:**

Establish consistent tags across your organization:

```bash theme={null}
# Environment tags
production, staging, development

# Component tags
database, api, frontend, infrastructure

# Team tags
backend-team, devops-team, data-team

# Priority tags
critical, important, nice-to-have
```

### Memory Storage

**Craft Effective Titles:**

```bash theme={null}
# Good: Specific and searchable
"PostgreSQL Production Failover Procedure"
"API Rate Limiting Configuration"
"Kubernetes Node Scaling Policy"

# Avoid: Vague or generic
"Database Stuff"
"Config"
"Notes"
```

**Provide Rich Context:**

```bash theme={null}
# Good: Detailed, actionable content
kubiya memory store \
  --title "Database Backup Procedure" \
  --content "1. Stop application writes
2. Run pg_dump with --no-owner flag
3. Upload to S3 bucket: s3://backups/prod/
4. Verify backup integrity with pg_restore --list
5. Resume application writes" \
  --dataset-id <id> \
  --tags database,backup,postgresql,production

# Avoid: Minimal context
kubiya memory store \
  --title "Backup" \
  --content "Use pg_dump" \
  --dataset-id <id>
```

**Use Multiple Tags:**

```bash theme={null}
# Multiple tags improve discoverability
--tags database,postgresql,production,backup,critical
```

**Structure Metadata:**

```bash theme={null}
# Add searchable structured data
--metadata-json '{
  "environment": "production",
  "owner": "platform-team",
  "last_updated": "2024-12-15",
  "version": "2.0",
  "severity": "critical"
}'
```

### Semantic Search

**Query Clarity:**

```bash theme={null}
# Good: Descriptive natural language
kubiya memory recall "how to perform database failover in production"
kubiya memory recall "steps for kubernetes node replacement"

# Less effective: Keyword stuffing
kubiya memory recall "database failover production steps procedure"
```

**Combine Filters:**

```bash theme={null}
# Precision through filters
kubiya memory recall "deployment issues" \
  --tags production,kubernetes \
  --min-score 0.8 \
  --top-k 3
```

**Iterate on Queries:**

1. Start broad: `"deployment"`
2. Add specificity: `"kubernetes deployment"`
3. Add filters: `--tags production`
4. Adjust threshold: `--min-score 0.7`

## Use Cases

### Runbook Storage

Store operational procedures and incident response playbooks:

```bash theme={null}
# Create runbook dataset
kubiya memory dataset create \
  --name "incident-runbooks" \
  --scope org \
  --description "Incident response and operational procedures"

# Store runbook from file
kubiya memory store \
  --title "Database Failover Procedure" \
  --content-file ./runbooks/db-failover.md \
  --dataset-id <runbook-dataset-id> \
  --tags incident-response,database,critical,postgresql \
  --metadata-json '{"severity":"high","owner":"dba-team"}'

# Recall during incident
kubiya memory recall "database is down how to failover" \
  --tags critical,database \
  --top-k 3
```

### Configuration Management

Centralize configuration documentation:

```bash theme={null}
# Store infrastructure configs
kubiya memory store \
  --title "Production AWS Configuration" \
  --content "Region: us-east-1
VPC: vpc-0a1b2c3d4e5f
Subnets: subnet-123 (private), subnet-456 (public)
NAT Gateway: nat-789
Load Balancer: alb-prod-001" \
  --dataset-id <config-dataset-id> \
  --tags aws,production,infrastructure,networking \
  --metadata-json '{"environment":"production","region":"us-east-1"}'

# Retrieve when needed
kubiya memory recall "AWS VPC configuration" --tags production
```

### Knowledge Sharing

Build a team knowledge base:

```bash theme={null}
# Document best practices
kubiya memory store \
  --title "Deployment Best Practices" \
  --content "1. Always run tests in CI before deploying
2. Use blue-green deployments for zero downtime
3. Tag all releases with semantic versioning
4. Monitor error rates for 10 minutes post-deploy
5. Keep deployment size small and frequent" \
  --dataset-id <team-knowledge-id> \
  --tags best-practices,deployment,ci-cd

# Document troubleshooting steps
kubiya memory store \
  --title "Debugging High API Latency" \
  --content-file ./docs/api-latency-debug.md \
  --dataset-id <team-knowledge-id> \
  --tags troubleshooting,api,performance
```

### Onboarding Documentation

Create searchable onboarding materials:

```bash theme={null}
# Store onboarding guides
kubiya memory store \
  --title "Setting Up Development Environment" \
  --content-file ./docs/dev-setup.md \
  --dataset-id <onboarding-dataset-id> \
  --tags onboarding,development,getting-started

# New team members can search
kubiya memory recall "how to setup development environment"
```

## Integration with Agents

Cognitive memory enhances agent capabilities by providing contextual knowledge. Agents can automatically access organization-wide datasets to recall relevant information when executing tasks and store learnings for future use.

<Info>
  Learn more about how agents use cognitive memory in the [Agent Integration](/core-concepts/cognitive-memory/agent-integration) guide.
</Info>

**Example Agent Usage:**

```bash theme={null}
# Agents automatically use stored knowledge when executing tasks
kubiya exec "deploy the api to production" --agent production-agent

# The agent automatically recalls relevant memories:
# - Deployment best practices
# - Production configuration
# - Rollback procedures
```

## Command Reference

### `memory store`

Store new contextual memory with semantic embeddings.

**Syntax:**

```bash theme={null}
kubiya memory store [flags]
```

**Required Flags:**

* `--title` - Memory title (descriptive and searchable)
* `--dataset-id` - Target dataset identifier
* `--content` OR `--content-file` - Memory content

**Optional Flags:**

* `--tags` - Comma-separated tags for categorization
* `--metadata-json` - Additional structured metadata as JSON
* `--output` - Output format: `text`, `json`, `yaml`

***

### `memory recall`

Search memories using semantic understanding.

**Syntax:**

```bash theme={null}
kubiya memory recall <query> [flags]
kubiya memory recall --query <query> [flags]
```

**Arguments:**

* `query` - Natural language search query (positional or `--query` flag)

**Optional Flags:**

* `--tags` - Filter results by tags (comma-separated)
* `--top-k` - Number of results to return (default: 10)
* `--min-score` - Minimum similarity score: 0.0-1.0 (default: 0.0)
* `--search-type` - Search type: `GRAPH_COMPLETION`, `TEMPORAL`, `FEEDBACK`, `RAG_COMPLETION`, `CHUNKS`
* `--output` - Output format: `text`, `json`, `yaml`

***

### `memory list`

List all stored memories.

**Syntax:**

```bash theme={null}
kubiya memory list [flags]
```

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`, `table`

***

### `memory status`

Check the status of an asynchronous memory processing job.

**Syntax:**

```bash theme={null}
kubiya memory status <job-id> [flags]
```

**Arguments:**

* `job-id` - Job identifier (returned from async operations)

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`

***

### `memory dataset create`

Create a new dataset for organizing memories.

**Syntax:**

```bash theme={null}
kubiya memory dataset create [flags]
```

**Required Flags:**

* `--name` - Dataset name (descriptive and unique)
* `--scope` - Access scope: `user`, `org`, or `role`

**Optional Flags:**

* `--description` - Dataset description
* `--allowed-roles` - Comma-separated roles (required if scope is `role`)
* `--output` - Output format: `text`, `json`, `yaml`

**Examples:**

```bash theme={null}
# Organization dataset
kubiya memory dataset create --name "team-docs" --scope org

# Role-based dataset
kubiya memory dataset create \
  --name "sre-runbooks" \
  --scope role \
  --allowed-roles sre,devops
```

***

### `memory dataset list`

List all accessible datasets.

**Syntax:**

```bash theme={null}
kubiya memory dataset list [flags]
```

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`, `table`

***

### `memory dataset get`

Get detailed information about a specific dataset.

**Syntax:**

```bash theme={null}
kubiya memory dataset get <dataset-id> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`

***

### `memory dataset delete`

Delete a dataset and all its associated memories.

**Syntax:**

```bash theme={null}
kubiya memory dataset delete <dataset-id>
```

**Arguments:**

* `dataset-id` - Dataset identifier

<Warning>
  This action is irreversible. All memories in the dataset will be permanently deleted.
</Warning>

***

### `memory dataset purge`

Clear all data from a dataset while preserving the dataset container.

**Syntax:**

```bash theme={null}
kubiya memory dataset purge <dataset-id> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier

**Optional Flags:**

* `--output` - Output format: `text`, `json`

**Examples:**

```bash theme={null}
# Purge dataset data
kubiya memory dataset purge abc-123

# JSON output
kubiya memory dataset purge abc-123 --output json
```

***

### `memory dataset get-data`

Retrieve all data entries from a dataset.

**Syntax:**

```bash theme={null}
kubiya memory dataset get-data <dataset-id> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`

***

### `memory dataset upload`

Upload local files or directories to a dataset.

**Syntax:**

```bash theme={null}
kubiya memory dataset upload <dataset-id> <file-or-dir> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier
* `file-or-dir` - Path to file or directory to upload

**Optional Flags:**

* `--title` - Title for the uploaded content
* `--tags` - Comma-separated tags for categorization
* `--metadata-json` - Additional metadata as JSON string
* `--output` - Output format: `text`, `json`, `yaml`

**Examples:**

```bash theme={null}
# Upload single file
kubiya memory dataset upload abc-123 ./document.md --title "Documentation"

# Upload directory with tags
kubiya memory dataset upload abc-123 ./docs/ --title "Docs" --tags production,documentation

# Upload with metadata
kubiya memory dataset upload abc-123 ./config.json \
  --metadata-json '{"env":"production","version":"2.0"}'
```

***

### `memory dataset code ingest`

Ingest code repository into a dataset for semantic code search.

**Syntax:**

```bash theme={null}
kubiya memory dataset code ingest <dataset-id> <path> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier
* `path` - Path to code repository or directory

**Optional Flags:**

* `--patterns` - File patterns to include (comma-separated glob patterns)
* `--exclude-patterns` - File patterns to exclude (comma-separated glob patterns)
* `--batch-size` - Files per batch, 1-100 (default: 50)
* `--output` - Output format: `text`, `json`, `yaml`

**Examples:**

```bash theme={null}
# Ingest entire repository
kubiya memory dataset code ingest abc-123 /path/to/repo

# Ingest with custom patterns
kubiya memory dataset code ingest abc-123 ./src \
  --patterns "**/*.py,**/*.js" \
  --exclude-patterns "**/node_modules/**,**/__pycache__/**"

# Ingest with smaller batches
kubiya memory dataset code ingest abc-123 ./project --batch-size 25
```

***

### `memory dataset code status`

Check the status of a code ingestion job.

**Syntax:**

```bash theme={null}
kubiya memory dataset code status <dataset-id> <job-id> [flags]
```

**Arguments:**

* `dataset-id` - Dataset identifier
* `job-id` - Job identifier (returned from ingest command)

**Optional Flags:**

* `--output` - Output format: `text`, `json`, `yaml`

**Example:**

```bash theme={null}
kubiya memory dataset code status abc-123 job_xyz789
```

## Next Steps

<CardGroup cols={2}>
  <Card title="Context Graph" icon="diagram-project" href="/cli/context-graph">
    Explore the organizational knowledge graph and graph queries
  </Card>

  <Card title="Intelligent Search" icon="magnifying-glass" href="/cli/context-graph#intelligent-search">
    AI-powered natural language search for the context graph
  </Card>

  <Card title="Core Resources" icon="cube" href="/cli/core-resources">
    Manage agents, teams, and projects
  </Card>

  <Card title="On-Demand Execution" icon="bolt" href="/cli/on-demand-execution">
    Execute tasks with agents using stored context
  </Card>
</CardGroup>
