Saltar al contenido principal

Export

AI Supreme Council provides two levels of export: individual chat export (single conversation) and full data export (all bots, sessions, and settings). Both run entirely in your browser with no server involved.

Chat Export

Export the current conversation in one of three formats.

How to Export a Chat

  1. In the config panel (right sidebar), find the Export Chat section
  2. Select your desired format from the dropdown: JSON, Markdown, or Plain Text
  3. Click the Export Chat button
  4. The file is downloaded to your device

The downloaded file is named after the bot (e.g., Research Assistant.json, Research Assistant.md, Research Assistant.txt).

JSON Format

The most complete format. Includes structured metadata about the bot configuration and each message with roles and content. The JSON includes the platform version, full bot config (provider, model, system prompt, temperature, max tokens), the complete message array, and an export timestamp.

Best for: Archiving, re-importing into AI Supreme Council, programmatic processing.

Markdown Format

Human-readable format with a heading for the bot name, followed by each message labeled with its role in bold (User, Assistant, or System). Messages are separated by blank lines.

Best for: Documentation, sharing, reading in any text editor or markdown viewer.

Plain Text Format

Simple text dump with the bot name as a heading (underlined with equals signs), followed by each message prefixed with its role. No formatting beyond basic labels.

Best for: Copying into emails, pasting into other tools, maximum compatibility.

Full Data Export

Export everything in your AI Supreme Council instance -- all bots, conversations, settings, memories, and add-on manifests.

How to Export All Data

  1. Open Settings
  2. In the General tab, find Data Management
  3. Click Export All Data
  4. A file named ais-backup-YYYY-MM-DD.json is downloaded

If you have SQLite blob data (for large binary storage), a separate .db file is also downloaded.

What Is Included

DataIncluded
All bot configurationsYes
All chat historiesYes
Bot memoriesYes
ProfilesYes
RemindersYes
Add-on manifestsYes
Settings and preferencesYes
Mini-program dataYes

What Is Excluded

DataReason
API keysSecurity -- keys are never exported or included in backups
Theme preferenceStored in localStorage, auto-detected on import
OAuth tokensSecurity -- authentication credentials are never exported
aviso

API keys are intentionally excluded from all exports. This is a core security guarantee. When you import data on another device, you will need to re-enter your API keys.

Import

Importing a Backup

  1. Open Settings
  2. In the General tab, find Data Management
  3. Click Import Data
  4. Select a .json backup file or a .db SQLite file

After import:

  • All bots and conversations from the backup are restored
  • The bot list refreshes automatically
  • If the backup contains bots, the first one is automatically selected

Import Formats

File TypeWhat It Contains
.jsonFull backup from Export All Data (IndexedDB contents)
.dbSQLite database with blob data (binary attachments)
info

Importing a backup does not delete your existing data -- it merges the imported data with your current bots and conversations. If there are ID conflicts, the imported data may overwrite existing entries.

Storage Backend

The export and import system works with the platform's storage backend:

  • IndexedDB (primary) -- all structured data
  • SQLite WASM (optional) -- large binary blobs, enabled in Settings

You can see the current storage status in Settings > General > Storage Backend.

Practical Tips

  • Regular backups: Export your data periodically, especially before clearing browser data
  • Cross-device transfer: Export on one device, import on another to move your conversations
  • Version control: The JSON export is text-based and can be stored in version control
  • Selective sharing: Export a single chat in Markdown format to share a conversation without exposing your full data