EveryDev.ai
Subscribe
Home
Tools

3,569+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. BearDrive
    BearDrive icon

    BearDrive

    Agent Memory

    A shared folder that syncs across all your AI agents and teammates, with full version history, public share links, and read-heat insights — open source under AGPL-3.0.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully managed service run by Runbear. Free during beta with no payment details required.

    Engagement

    Available On

    macOS
    Linux
    Web
    CLI
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryMulti-agent SystemsKnowledge Management

    Alternatives

    ManexcqSecond Brain
    Developer
    Runbear, Inc.San Mateo, CAEst. 2023$720000 raised

    Listed Aug 2026

    About BearDrive

    BearDrive is an open-source, agent-native shared folder built by Runbear, Inc. and backed by Techstars. It mounts any local directory as a synced volume that every AI agent and teammate on the team reads and writes simultaneously — no uploads, no copy-pasting, no "send me that again." The project is licensed under AGPL-3.0, available on GitHub, and currently in a free managed beta alongside a self-hostable server option.

    What It Is

    BearDrive describes itself as "Google Drive for AI agents." The core idea is simple: instead of each agent starting from an empty folder or relying on a memory API, every agent on the team shares the same real files at real paths on disk. A lightweight CLI daemon (bdrive) keeps the folder synchronized across devices and teammates through a central hub, which can be the managed cloud service at beardrive.ai or a self-hosted server backed by S3, GCS, Cloudflare R2, MinIO, or a plain directory. Because the files are ordinary files, any tool, editor, or agent that can write a file already works with BearDrive — no integration required.

    How the Sync Architecture Works

    BearDrive uses an append-only journal model: each device writes only its own journal, so no locking service is needed and any dumb object store suffices. Key mechanics include:

    • Offline-first — the working folder is always fully usable with no network; changes are journaled locally and pushed when the remote becomes reachable.
    • Conflict-safe — concurrent edits resolve deterministically (last-writer-wins), and the losing version is preserved as a conflict-copy file rather than silently dropped.
    • Delta sync for large files — files larger than 4 MiB move as content-defined chunks (~1 MiB each), so a small edit to a large file transfers roughly one chunk, not the whole file.
    • Agent hook integration — bdrive hooks registers turn-boundary hooks in Claude Code, Codex, Gemini CLI, and Hermes: a blocking pull before each agent turn (so the agent always reads fresh team files) and an async push after every file edit (so artifacts are on the hub seconds after the agent writes them).

    Setup Path

    Setup is designed to be conversational. Users paste a single line into any supported agent — Claude Code, Codex, Gemini CLI, Hermes — and the agent fetches the setup runbook from beardrive.ai/setup, installs the CLI, signs the machine in, asks which folder to sync, registers the hooks, and prints the project link. For those who prefer manual control, the CLI is installable via Homebrew (brew install runbear-io/tap/beardrive) or from source via go install.

    Knowledge Insights and Read Heat

    Beyond sync, BearDrive tracks which files agents and humans actually read and surfaces this as a per-file heatmap in the project Dashboard. Four views are available: a treemap of every file sized by reads and colored by staleness, a reads-versus-freshness scatter plot (the hot-but-stale quadrant is described as "the danger zone"), a hot-path list showing the team's effective agent context window, and an agent-coverage matrix showing which agent devices read which folders. The heat data exposes only aggregate counts and last-read times — never who read a specific file.

    Deployment Model and Open-Source Lineage

    The entire server is open source under AGPL-3.0 — teams, history, share links, and the web UI are all included, with nothing held back in a paid tier. Runbear chose AGPL-3.0 deliberately to keep BearDrive self-hostable forever while preventing a cloud provider from offering a closed BearDrive-as-a-service. The managed service at beardrive.ai runs the same core plus hosting, backups, and support; provider-specific and billing code stays out of the public repository permanently. Projects can be moved between the managed service and a self-hosted hub at any time using bdrive export and bdrive import, which carry every version of every file and full authorship history.

    Update: v0.15.0

    The latest release is v0.15.0, published on August 11, 2026. The repository was last pushed on August 13, 2026, indicating active development. The project launched on Product Hunt during this period. The public roadmap (ROADMAP.md) lists upcoming work including bdrive restore <path>@<time> time-travel syntax, FUSE/NFS mount mode, journal compaction and blob garbage collection, and per-path access scopes for multi-agent setups.

    BearDrive - 1

    Community Discussions

    Be the first to start a conversation about BearDrive

    Share your experience with BearDrive, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Managed Beta

    Fully managed service run by Runbear. Free during beta with no payment details required.

    • Nothing to pay and no card to enter
    • Unlimited projects, teammates and history
    • Storage, backups and updates handled
    • Move to self-hosted any time with full history
    • Beta teams keep founder pricing when paid plans arrive
    OPEN SOURCE

    Self-hosted

    Complete open-source server, free forever, on your own infrastructure.

    • The whole product, not a stripped-down core
    • One Go binary: bdrive serve
    • S3, GCS, R2, MinIO or plain disk
    • Free forever regardless of managed service decisions

    Capabilities

    Key Features

    • Shared folder synced across all agents and teammates in real time
    • Append-only journal model with offline-first operation
    • Conflict-safe concurrent edits with preserved conflict copies
    • Delta sync for large files using content-defined chunking
    • Agent turn-boundary hooks for Claude Code, Codex, Gemini CLI, and Hermes
    • Full version history: every change attributed to person, machine, and agent session
    • One-click file restore to any previous version
    • Public share links with optional expiry and credential-scanning guard
    • Per-file read heatmap showing agent vs. human reads and staleness
    • Knowledge Insights dashboard: treemap, scatter plot, hot path, agent coverage matrix
    • Selective sync via .bdriveignore and bdrive scope
    • Agent skills and AGENTS.md sync across teammates automatically
    • Self-hostable on S3, GCS, Cloudflare R2, MinIO, or plain directory
    • bdrive export / import for full project portability between hubs
    • Org-level access control with per-project permission levels (none/read/write/admin)
    • Rendered markdown viewer with wikilinks, Mermaid diagrams, and task lists
    • Project templates: docs, wiki, PARA, skills
    • post_sync hook for local index or cache updates after inbound changes

    Integrations

    Claude Code
    Codex
    Gemini CLI
    Hermes
    Obsidian
    Amazon S3
    Google Cloud Storage
    Cloudflare R2
    MinIO
    Homebrew
    GitHub
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate BearDrive and help others make informed decisions.

    Developer

    Runbear, Inc.

    Runbear, Inc. builds BearDrive, an open-source shared folder designed for teams running AI agents. The company is backed by Techstars and based in San Francisco. Runbear chose an AGPL-3.0 license to keep the product fully self-hostable while funding development through a managed cloud service. The team focuses on making agent-produced artifacts instantly accessible across every teammate's machine without uploads, exports, or copy-pasting.

    Founded 2023
    San Mateo, CA
    $720000 raised
    10 employees
    Read more about Runbear, Inc.
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Manex icon

    Manex

    Manex turns private documents, grounded answers, corrections, and team decisions into reusable memory for teams working with sensitive documents.

    cq icon

    cq

    cq is an open standard by Mozilla AI for shared agent learning, enabling AI coding agents to persist, share, and query collective knowledge to avoid repeating failures.

    Second Brain icon

    Second Brain

    A self-hosted, MCP-compatible shared memory layer for AI tools like Claude, ChatGPT, and Cursor, deployed on Cloudflare's free tier.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    124 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    317 tools

    Knowledge Management

    AI-powered systems for organizing, discovering, and accessing collective team knowledge with intelligent search, tagging, and contextual recommendations across knowledge bases and wikis.

    144 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions