-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Get from zero to a working box-memory workspace in about three minutes.
- A Box account (any tier — auto-detected)
- An agent host: Claude Code or Claude Cowork
- Box's official remote MCP at
mcp.box.comconnected (Settings → Connectors → Box on either Claude Code or Cowork)
mkdir -p ~/.claude/plugins/box-memory
curl -L -o /tmp/box-memory-plugin.zip \
https://github.com/mrdulasolutions/BOX/releases/latest/download/box-memory-plugin.zip
unzip -o /tmp/box-memory-plugin.zip -d ~/.claude/plugins/box-memory/Or upload box-memory-plugin.zip to Cowork via Settings → Plugins → Add plugin.
/box-mcp-check
This verifies you're on the official Box remote MCP at mcp.box.com and that the OAuth scopes root_readwrite, ai.readwrite, and docgen.readwrite are granted. If any are missing, it tells you exactly what to fix.
/box-init my-workspace
Creates the folder structure, writes _box-memory.json, seeds per-folder indexes, and on Business+ defines the boxMemory metadata template that Box AI Extract targets.
/box-write We decided to use JWT instead of sessions because of mobile.
The skill infers kind: decision, generates a ULID, builds frontmatter, writes the file to <workspace>/memories/, updates the index.
/box-recall jwt
Local index lookup — sub-second, no AI Units consumed.
First, enable AI features in your workspace config (defaults are off):
In your workspace's _box-memory.json set settings.ai_recall_enabled: true. Then:
/box-ai-recall what did we decide about authentication?
Wraps Box's /2.0/ai/ask endpoint. Returns the answer with citations. Costs AI Units.
/box-companion 12345 # the file ID of a PDF / DWG / image in Box
On Business+ with settings.ai_extract_enabled: true, this runs Box AI Extract Structured (OCR for PDFs / TIFF / PNG / JPEG). On Personal, it generates a sparse companion noting what the agent couldn't parse.
- Architecture — the design and why
- Skills Reference — what each skill does and when
- Box AI Integration — the AI features in depth
- Hubs Workspaces — scale to 20k files (Enterprise Plus)
- Authentication — auth for non-Claude agents
- Operational Notes — known Box-side quirks
box-memory · MIT · Repo · Latest release · Issues · Air-gapped variant
Getting started
Concepts
Features
Skills reference
- Skills Reference (all)
- box-init
- box-status
- box-tier-detect
- box-mcp-check
- box-write
- box-recall
- box-ai-recall
- box-companion
- box-ai-extract
- box-team
- box-ai-agent
- box-index-rebuild
Integrations
Operations
Project