cd /news/ai-agents/cross-platform-file-explorer-powered… Β· home β€Ί topics β€Ί ai-agents β€Ί article
[ARTICLE Β· art-105177] src=github.com β†— pub= topic=ai-agents verified=true sentiment=Β· neutral

Cross-platform file explorer, powered by a virtual distributed filesystem

Spacedrive, a cross-platform file explorer powered by a virtual distributed file system, has released version 2.0, offering apps for macOS, Windows, Linux, iOS, and Android. The platform indexes files, emails, notes, and external sources, syncs via P2P using Iroh/QUIC, and includes built-in screening for AI agents. It integrates with Spacebot, an open-source AI agent runtime, to provide a safer access model for AI operations.

read6 min views1 publishedAug 20, 2026
Cross-platform file explorer, powered by a virtual distributed filesystem
Image: Michielbdejong (auto-discovered)

One file manager for all your devices and clouds.

Powered by a Virtual Distributed File System, complete with apps for macOS, Windows, Linux, iOS and Android

v2.spacedrive.com β€’

Discordβ€’

Getting Started

Spacedrive is a cross-device data platform. Index files, emails, notes, and external sources. Search everything. Sync via P2P. Keep AI agents safe with built-in screening.

Content identityβ€” every file gets a BLAKE3 content hash. Same file on two devices produces the same hash. Spacedrive tracks redundancy and deduplication across all your machines.Cross-deviceβ€” see all your files across all your devices in one place. Files on disconnected devices stay in the index and appear as offline.P2P syncβ€” devices connect directly via Iroh/QUIC. No servers, no cloud, no single point of failure. Metadata syncs between devices. Files stay where they are.Cloud volumesβ€” index S3, Google Drive, Dropbox, OneDrive, Azure, and GCS as first-class volumes alongside local storage.** Nine views**β€” grid, list, columns, media, size, recents, search, knowledge, and splat. QuickPreview for video, audio, code, documents, 3D, and images.Local-firstβ€” everything runs on your machine. No data leaves your device unless you choose to sync between your own devices.

No. Spacedrive sits above your OS file manager and adds capabilities Finder/Explorer lack:

Portal across everythingβ€” search and browse files across local disks, external drives, NAS, cloud storage, and archived data sources from one interface.Operating surface for filesβ€” content identity, sidecars, derivative artifacts, rich metadata, sync, and cross-device awareness built into the core model.Embeddable and shareableβ€” run it as a desktop app, headless server, hosted file service, or embed the interface and APIs into other products.** AI-ready by design**β€” indexing and analysis pipelines prepare data ahead of time instead of giving agents raw shell access.** Safer access model**β€” route AI and automation through structured APIs, permissions, and processing layers instead of direct file operations.

You still use your OS for low-level file interactions. Spacedrive adds the cross-platform, cross-device, cloud-aware, and automation-friendly layer on top.

Spacedrive indexes external data sources via script-based adapters: Gmail, Apple Notes, Chrome bookmarks, Obsidian, Slack, GitHub, calendar events, contacts. Each source becomes a searchable repository alongside your files.

Adapters are a folder with an adapter.toml

manifest and a sync script in any language. If it reads stdin and prints lines, it works.

Shipped adapters: Gmail, Apple Notes, Chrome Bookmarks, Chrome History, Safari History, Obsidian, OpenCode, Slack, macOS Contacts, macOS Calendar, GitHub.

Spacedrive integrates with Spacebot, an open source AI agent runtime. Spacebot runs as an optional separate process. Spacedrive provides the data, permission, and execution layer. Spacebot provides the intelligence.

Each Spacebot instance pairs with one Spacedrive node as its home device. That node authenticates the agent, maintains the device graph, resolves permissions, and forwards operations to peer devices. Every device in your library can reach Spacebot through the paired node over P2P (Iroh/QUIC) without direct network access. One agent runtime serves your entire device fleet.

When Spacebot spawns a worker, that worker can target any device in the library. File reads, shell commands, and operations proxy through Spacedrive to the target device. Talk to the agent from your phone while work executes on a server. Read files from a NAS, run commands on a workstation, report to a laptop β€” all in one task.

Every operation passes through Spacedrive's permission system: which devices the agent can access, which paths are readable or writable, which operations are allowed, and which require human confirmation. The paired node resolves effective policy before forwarding. One security model, one audit surface across all devices and clouds.

Spacedrive adds intelligence to your filesystem by combining three layers:

File intelligenceβ€” derivative data like OCR, transcripts, extracted metadata, thumbnails, previews, classifications, and sidecars.** Directory intelligence**β€” contextual knowledge attached to folders and subtrees ("active projects", "dormant archives", etc).** Access intelligence**β€” permissions and policy that apply across devices and clouds, routing agents through structured access instead of raw shell commands.

When an agent navigates through Spacedrive, it receives the file listing, subtree context, effective permissions, and summaries. Users can explain how they organize their system. Agents can add attributed notes. Jobs generate summaries from structure and activity. The intelligence stays attached to the filesystem, not buried in temporary session memory.

When enabled, every record passes through a safety pipeline before becoming searchable:

Prompt Guard 2β€” local classifier detects prompt injection in emails, messages, and documents before they enter the index.** Trust tiers**β€” authored content (your notes) gets balanced screening, external content (email inbox) gets strict screening.** Quarantine system**β€” flagged records excluded from AI agent queries, reviewable in desktop app.** Content fencing**β€” search results include trust metadata so agents know what's safe vs untrusted.

No other local data tool screens indexed content before exposing it to AI.

The core is built on four principles:

Virtual Distributed Filesystem (VDFS)β€” files and folders become first-class objects with rich metadata, independent of physical location. Every file gets a universal address (SdPath

) that works across devices. - Content Identity Systemβ€” adaptive hashing (BLAKE3 with strategic sampling for large files) creates a unique fingerprint for every piece of content. Enables deduplication, redundancy tracking, and content-based operations. - Transactional Actionsβ€” every file operation can be previewed before execution. See space savings, conflicts, and estimated time, then approve or cancel. Operations become durable jobs that survive network interruptions and device restarts. - Leaderless Syncβ€” peer-to-peer synchronization without central coordinators. Device-specific data uses state replication. Shared metadata uses an HLC-ordered log with deterministic conflict resolution.

The implementation is a single Rust crate with CQRS/DDD architecture. Every operation (file copy, tag create, search query) is a registered action or query with type-safe input/output that auto-generates TypeScript types for the frontend.

Component Technology
Language Rust
Async runtime Tokio
Database SQLite (SeaORM + sqlx)
P2P Iroh (QUIC, hole-punching, local discovery)
Content hashing BLAKE3
Vector search LanceDB + FastEmbed
Cloud storage OpenDAL
Cryptography Ed25519, X25519, ChaCha20-Poly1305, AES-GCM
Media FFmpeg, libheif, Pdfium, Whisper
Desktop Tauri 2
Mobile React Native + Expo
Frontend React 19, Vite, TanStack Query, Tailwind CSS v4
Design system
spacedrive/
β”œβ”€β”€ core/                  # Rust engine (CQRS/DDD)
β”œβ”€β”€ apps/
β”‚   β”œβ”€β”€ tauri/             # Desktop app (macOS, Windows, Linux)
β”‚   β”œβ”€β”€ mobile/            # React Native (iOS, Android)
β”‚   β”œβ”€β”€ cli/               # CLI and daemon
β”‚   β”œβ”€β”€ server/            # Headless server
β”‚   └── web/               # Browser client
β”œβ”€β”€ packages/
β”‚   β”œβ”€β”€ interface/         # Shared React UI
β”‚   β”œβ”€β”€ ts-client/         # Auto-generated TypeScript client
β”‚   β”œβ”€β”€ ui/                # Component library
β”‚   └── assets/            # Icons, images, SVGs
β”œβ”€β”€ crates/                # Standalone Rust crates (ffmpeg, crypto, etc.)
β”œβ”€β”€ adapters/              # Script-based data source adapters
└── schemas/               # TOML data type schemas

Requires Rust 1.81+, Bun 1.3+, just, and Python 3.9+ (for adapters).

git clone https://github.com/spacedriveapp/spacedrive
cd spacedrive

just setup        # bun install + native deps + cargo config
just dev-desktop  # launch the desktop app (auto-starts daemon)
just test         # run all workspace tests

Spacedrive is local-first. Your data stays on your devices.

End-to-End Encryptionβ€” all P2P traffic encrypted via QUIC/TLS** At-Rest Encryption**β€” libraries can be encrypted on disk (SQLCipher)** No Telemetry**β€” zero tracking or analytics** Self-Hostable**β€” run your own relay servers** Data Sovereignty**β€” you control where your data lives

Optional cloud integration is available for backup and remote access, but it's never required. The cloud service runs unmodified Spacedrive core as a standard P2P deviceβ€”no special privileges.

Join to chat with developers and communityDiscordContributing Guideβ€” write a data source adapterAdapter Guideβ€” shared design system (clone alongside Spacedrive to work on UI)SpaceUI

FSL-1.1-ALv2 β€” Functional Source License, converting to Apache 2.0 after two years.

── more in #ai-agents 4 stories Β· sorted by recency
── more on @spacedrive 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/cross-platform-file-…] indexed:0 read:6min 2026-08-20 Β· β€”