Buda LogoBuda
Billing

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)
ScopePrivate to one AgentShared across all Agents in the Space
PerformanceHigh-performance SSDStandard storage
Best forActive tasks, code execution, temp filesKnowledge bases, shared assets, cross-Agent files
Persists across sessions?YesYes
Visible to other Agents?NoYes

Storage Limits by Plan

PlanSpace Drive
Free1 GB
Plus50 GB
Pro200 GB
EnterpriseUnlimited

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.md

Use 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.

  • Billing & Credits — Space Drive storage limits by plan
  • Agent — How /agent, /space, and /system directories work together

On this page