CLI tool for RecallBricks - The Memory Layer for AI
npm install @recallbricks/cliCommand-line interface for RecallBricks - The Memory Layer for AI.
bash
npm install -g recallbricks-cli
`Quick Start
`bash
Configure your API key
rb config your_api_key_hereSave a memory
rb save "Important context about my project"List memories
rb listSearch memories
rb search "project"Show statistics
rb statsDelete a memory
rb delete
`Commands
$3
Configure your RecallBricks API key.
`bash
rb config rb_your_api_key
`$3
Save a new memory.
`bash
rb save "User prefers dark mode"With options
rb save "Important note" --source cli --project myapp --tags "important,note"
`Options:
-
-s, --source - Memory source (default: "cli")
- -p, --project - Project ID (default: "default")
- -t, --tags - Comma-separated tags$3
List all memories.
`bash
rb listLimit results
rb list --limit 5
`Options:
-
-l, --limit - Limit number of results (default: 10)$3
Search memories by text.
`bash
rb search "dark mode"Limit results
rb search "project" --limit 5
`Options:
-
-l, --limit - Limit number of results (default: 10)$3
Delete a memory by ID.
`bash
rb delete 123e4567-e89b-12d3-a456-426614174000
`$3
Show statistics and rate limit info.
`bash
rb stats
`Examples
`bash
Daily workflow
rb save "Completed authentication feature"
rb save "Next: implement user dashboard"
rb search "authentication"
rb statsProject context
rb save "Using React + TypeScript" --project webapp --tags "tech-stack"
rb save "Database: PostgreSQL" --project webapp --tags "tech-stack"
rb list --limit 20Quick notes
rb save "Bug: login form validation issue"
rb save "Fixed: added email validation"
rb search "bug"
`Configuration
Config is stored at
~/.recallbricks/config.jsonGetting Your API Key
1. Sign up at recallbricks.com
2. Go to your dashboard
3. Copy your API key
4. Run
rb config - ��� Email: support@recallbricks.com
- ��� Discord: Join our community
- ��� Docs: docs.recallbricks.com
MIT