Cloud
Connect where your Mind runs.
Manage hosted Minds or connect to a local Akasha instance. Keep the same terminal workflow as you move from development to deployment.
Search an agent’s memory, save a backup, or switch between Minds without leaving your terminal. cogs is the Minds command-line tool for everyday operations and repeatable scripts.
Command line
❯cogs instances use studio
❯cogs memory search "release plan"
The team chose weekly releases after the launch review.
Use the returned record in your next step. The sample record keeps the decision and its context together.
Example terminal session with a sample connection and stored decision.
Use a command for a quick task, combine commands in a script, or open the interactive control room when you want to explore.
Cloud
Manage hosted Minds or connect to a local Akasha instance. Keep the same terminal workflow as you move from development to deployment.
Instances
Save named connections for your Minds and choose the one you need. Move between a development instance and production with `cogs instances use`.
Backup
Create a backup before a significant change. Keep it on disk, in S3, or on a remote filesystem, then restore from its backup ID when needed.
Volumes
List, create, and attach S3 or filesystem volumes from the command line. Give each volume a clear purpose, such as data or backups.
Recall
Look up a customer note or ask what changed in a project. Search stored memories directly, without opening your application.
Inspection
Open control-room to inspect your connection, graph, memory, and configured models. Keep the selected instance visible as you move between views.
$ cogs login
$ cogs instances add
# Choose the saved instance named prod
$ cogs instances use prod
$ cogs memory search "Q3 revenue"
$ cogs memory retrieval-hybrid "Why did Q3 revenue dip?" --limit 5
# Backup to disk, or ship it to S3
$ cogs storage create-backup ./backups --remote-s3-bucket minds-backups --remote-s3-prefix prod
$ cogs storage list-backups ./backups
$ cogs storage restore-backup ./backups <backup-id>
# Open the interactive terminal interface
$ cogs control-roomInstall cogs, connect an instance, and run your first memory search.