Space Drive
The shared /space directory available to all Agents in your Space — your team's persistent shared memory.
Space Drive is your Space's shared memory — a /space directory that every Agent in your Space can read and write. Think of it as a shared file cabinet for your whole team, accessible to all Agents simultaneously.
Space Drive vs Agent SSD Drive
Buda provides two types of storage for different purposes:
Agent SSD Drive (/agent) | Space Drive (/space) | |
|---|---|---|
| Scope | Private to one Agent | Shared across all Agents in the Space |
| Performance | High-performance SSD | Standard storage |
| Best for | Active tasks, code execution, temp files | Knowledge bases, shared assets, cross-Agent files |
| Persists across sessions? | Yes | Yes |
| Visible to other Agents? | No | Yes |
Storage Limits by Plan
| Plan | Space Drive |
|---|---|
| Free | 1 GB |
| Plus | 50 GB |
| Pro | 200 GB |
| Enterprise | Unlimited |
What to Store in Space Drive
Space Drive is ideal for content that multiple Agents need to access:
- Company knowledge base — SOPs, policies, reference documents
- Shared assets — templates, brand files, datasets
- Cross-Agent handoffs — files one Agent produces that another Agent consumes
- Project files — long-running work that outlasts any single session
What to Store in Agent SSD Drive
Keep Agent-specific content in /agent:
- Active working files for a task in progress
- Installed packages and dependencies
- Temporary outputs and cache
- Configuration files specific to that Agent
Accessing Space Drive
Inside an Agent's Terminal or code execution environment, Space Drive is mounted at /space. You can read and write files there just like any other directory:
# List files in Space Drive
ls /space
# Write a file that other Agents can read
echo "shared data" > /space/shared-output.txt
# Read a file another Agent wrote
cat /space/report-from-agent-2.mdUse Cases
Multi-Agent pipeline: Agent A researches and writes findings to /space/research.md. Agent B reads that file and generates a report.
Shared knowledge base: Upload your company SOPs to Space Drive once. All Agents can reference them without duplicating files.
Long-running projects: Store project state in /space so any Agent can pick up where another left off.
Related
- Billing & Credits — Space Drive storage limits by plan
- Agent — How
/agent,/space, and/systemdirectories work together