freshcrate
Skin:/
Home > AI Agents > spacebot

spacebot

An AI agent for teams, communities, and multi-user environments.

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

An AI agent for teams, communities, and multi-user environments.

README

Spacebot

Spacebot

The agent harness that runs teams, communities, and companies.

spacebot.sh â€ĸ How It Works â€ĸ Goals & Tasks â€ĸ Quick Start â€ĸ Spacedrive â€ĸ Docs

One-click deploy with spacebot.sh — connect your Discord, Slack, Telegram, or Twitch, configure your agent, and go. No self-hosting required.

Spacebot UI


Spacebot is opinionated agent infrastructure, built for teams and usable by anyone. State belongs in structured storage, not markdown files the LLM manages. Memory lives in a typed graph in SQLite. Autonomy runs on a task state machine linked to goals, not a heartbeat.json. The LLM reasons. The system holds state.

It gets smarter the more you use it. After complex tasks, the agent captures what it learned as reusable skills. After conversations go idle, a background process silently saves skills and memories worth keeping. Every session builds on the last — without any user action.

It works out of the box and scales from one person to a whole community.


The Problem

Most AI agent frameworks run everything in a single session. One LLM thread handles conversation, thinking, tool execution, memory retrieval, and context compaction, all in one loop. When it's doing work, it can't talk to you. When it's compacting, it goes dark. When it retrieves memories, raw results pollute the context with noise.

Spacebot splits the monolith into specialized processes that only do one thing, and delegate everything else.


Built for Teams

No other agent harness handles concurrent multi-user conversations, shared memory across channels, and true process-level concurrency. A Discord community with hundreds of active members, a Slack workspace running parallel workstreams, a Telegram group coordinating across time zones. Spacebot handles all of it without any user waiting on another.

Solo users get the same infrastructure. Better memory, better concurrency, better structure. Everything teams rely on, for one person.

For communities: drop Spacebot into a Discord server. It handles concurrent conversations across channels and threads, remembers context about every member, and does real work without going dark. Fifty people can interact simultaneously. A message coalescing system detects rapid-fire bursts, batches them into a single turn, and lets the agent read the room.

For teams: connect it to Slack. Each channel gets a dedicated conversation with shared memory. One engineer gets a deep coding session while another gets a quick answer. Workers handle heavy lifting in the background while the channel stays responsive.

For multi-agent setups: run multiple agents on one instance. A community bot on Discord, a dev assistant on Slack, a research agent handling background tasks. Each with its own identity, memory, and security permissions. One binary, one deploy.


How It Works

Five process types. Each does one job.

Channels are the user-facing LLM process. One per conversation, with soul, identity, and personality. A channel never executes tasks or searches memories directly. It branches to think, spawns workers to act, and stays responsive.

Branches fork from the channel's context to think. They have the full conversation history and run concurrently. The channel sees the conclusion, not the working.

Workers are independent processes. Each gets a specific task, a focused prompt, and task-appropriate tools, with no conversation context. Fire-and-forget for one-shot tasks, or interactive for longer sessions where follow-up routes to the active worker.

The Compactor is a programmatic monitor (not an LLM) that watches context size per channel and triggers compaction before the channel fills up. Compaction workers run alongside without blocking.

The Cortex sees across all channels, workers, and branches simultaneously. It maintains the agent's working memory — a layered context assembly system that gives every conversation structured awareness of what's happening across the agent. Events are recorded as they happen; intra-day synthesis compresses them into narrative; daily summaries roll up at midnight; knowledge synthesis regenerates when the memory graph changes. The cortex supervises processes and maintains the memory graph.

User sends message
    → Channel receives it
        → Branches to think (has channel's context)
            → Branch recalls memories, decides what to do
            → Branch might spawn a worker for heavy tasks
            → Branch returns conclusion
        → Branch deleted
    → Channel responds to user

Channel context hits 80%
    → Compactor notices
        → Spins off a compaction worker
            → Worker summarizes old context
            → Compacted summary swaps in
    → Channel never interrupted

For process capabilities, tool access by type, memory internals, cron, and multi-agent isolation, see ARCHITECTURE.md.


Goals and Tasks

Spacebot is built around a task system. Goals set direction. Tasks carry work. The agent executes, remembers, and improves whether or not you're present.

On a configured interval, the autonomy channel wakes with full context: identity, memory, working memory, the complete task state, active goals, and a summary of its last few runs. It picks the most important ready task, executes it with full tool access, and exits.

State lives in tasks. Progress notes go on the task itself. After a crash, the next wake reads task metadata and picks up where things left off. At the end of each run the autonomy channel writes a summary of what happened. On next wake, that summary is the first thing it reads.

The agent proposes. You decide. Tasks the autonomy channel creates land in pending_approval. Nothing runs autonomously until you approve it.


What It Does

Memory

Spacebot's memory is a typed, graph-connected knowledge system in SQLite and LanceDB. Every memory has a type, an importance score, and graph edges to related memories. The agent distinguishes facts from decisions, preferences from goals.

  • Eight memory types — Fact, Preference, Decision, Identity, Event, Observation, Goal, Todo
  • Graph edges — RelatedTo, Updates, Contradicts, CausedBy, PartOf
  • Hybrid recall — vector similarity + full-text search merged via Reciprocal Rank Fusion
  • Memory import — drop files into ingest/ and Spacebot extracts structured memories automatically. Supports text, markdown, and PDF.
  • Working memory — a five-layer context assembly system. Identity context, a structured event log, cross-channel activity map, participant awareness, and change-driven knowledge synthesis. Most layers are programmatic — no LLM calls to stay current

Skills

Skills are reusable procedures injected into worker system prompts. The agent writes them from experience — and they accumulate automatically over time.

  • Autonomous skill capture — when a channel identifies a workflow that required multiple steps or problem-solving, it delegates to a branch to write it as a skill. The skill loads into the next session and every session after
  • Post-conversation reflection — after a conversation goes idle, a background branch silently reviews the history and saves skills and memories worth keeping. No user action required
  • AI-assisted authoring — describe a skill in plain language, the agent generates it and shows a preview before saving
  • Worker injection — skills are injected into worker system prompts for specialized tasks
  • skills.sh registry — install any skill from the public ecosystem with one command. Compatible with any skill from the public registry
spacebot skill add vercel-labs/agent-skills
spacebot skill add anthropics/skills/pdf
spacebot skill list

Scheduling

Cron jobs created and managed from conversation:

  • Natural scheduling — "check my inbox every 30 minutes" becomes a cron job with a delivery target
  • Strict wall-clock schedules — cron expressions for exact local-time execution
  • Single delivery — all reply calls are buffered during the run and flushed as one message when the job completes. No mid-run fragments.
  • Circuit breaker — auto-disables after 3 consecutive failures
  • Full agent capabilities — each job gets a fresh channel with branching and workers

Task Execution

Workers come loaded with tools for real work:

  • Shell — run arbitrary commands with configurable timeouts
  • File — read, write, and list files with auto-created directories
  • Browser — headless Chrome automation with accessibility-tree refs. Navigate, click, type, screenshot, manage tabs
  • OpenCode — spawn a full coding agent as a persistent worker with codebase exploration, LSP awareness, and deep context management
  • Brave web search — search the web with freshness filters, localization, and configurable result count

Messaging

Native adapters for Discord, Slack, Telegram, Twitch, Signal, Mattermost, Email, and Webchat, plus a generic Webhook receiver:

  • Message coalescing — rapid-fire messages are batched into a single LLM turn with timing context
  • File attachments — send and receive files, images, and documents. Attachments are saved to the workspace and recalled by ID
  • Rich messages — embeds/cards, interactive buttons, select menus, and polls (Discord). Block Kit and slash commands (Slack)
  • Email — IMAP polling + SMTP delivery with TLS, UID-based dedup, allowed sender filtering, and attachment limits. Works with local bridges like Proton Bridge
  • Webchat — embeddable portal chat with SSE streaming, per-agent session isolation
  • Per-channel permissions — guild, channel, and DM-level access control, hot-reloadable

Model Routing

Four-level routing picks the right model for every call. Channels get the best conversational model. Workers get something fast and cheap. Coding workers upgrade automatically. Simple user messages are downgraded to cheaper models by a sub-millisecond prompt scorer with no external calls. Voice messages route to a dedicated voice model.

Any OpenAI-compatible or Anthropic-compatible endpoint works, including Ollama for local models, Z.ai GLM models, Azure OpenAI, and custom providers. Built-in support for Kilo Gateway, NVIDIA, MiniMax, Moonshot AI, Gemini, GitHub Copilot, OpenCode Go, and more.

MCP Integration

Connect workers to external MCP servers for arbitrary tool access — databases, APIs, SaaS products, custom integrations. Both stdio and streamable HTTP transports. Automatic tool discovery, hot-reloadable, exponential-backoff retry so a broken server never blocks startup.

Security

Spacebot runs autonomous LLM processes that execute arbitrary shell commands. Security is layered so no single failure exposes credentials or breaks containment.

Credential isolation: secrets split into system credentials (LLM API keys, messaging tokens, never exposed to subprocesses) and tool credentials (CLI tokens injected as env vars into workers). Every subprocess starts with a sanitized environment. System secrets never enter any subprocess.

  • Secret store — credentials live in a dedicated encrypted database, referenced by alias. Plain config files never contain secrets
  • Encryption at rest — optional AES-256-GCM with a master key derived via Argon2id, stored in the OS credential store (macOS Keychain, Linux kernel keyring), never on disk or in an env var
  • Output scrubbing — all tool secret values are redacted from worker output before it reaches channels or LLM context. A rolling buffer handles secrets split across stream chunks

Process containment: shell and exec tools run inside OS-level filesystem containment. On Linux, bubblewrap creates a mount namespace where the filesystem is read-only except the agent's workspace. On macOS, sandbox-exec enforces equivalent restrictions via SBPL profiles. Enforced at the kernel level.

  • Dynamic sandbox — toggle sandbox mode via dashboard or API without restarting
  • Workspace isolation — file tools reject paths outside the agent's workspace. Symlinks that escape are blocked.
  • Leak detection — secret-pattern checks at channel egress across plaintext, URL-encoded, base64, and hex encodings
  • SSRF protection — browser tool blocks requests to cloud metadata endpoints, private IPs, loopback, and link-local addresses

Gets Better with Use

Spacebot builds on itself over time through four specific mechanisms.

Branches write skills from experience. When a channel identifies a workflow that required multiple steps, problem-solving, or domain knowledge, it delegates to a branch to capture it as a structured skill. The skill goes to disk and loads into the next session. Future workers get it injected into their system prompt.

Post-conversation reflection saves what's worth keeping. After a conversation goes idle, a background branch reviews the history and silently saves skills and memories worth keeping. It runs with a capped turn budget, produces no user-visible output, and fires only when there's enough conversation to learn from.

Memory deepens with every interaction. Each conversation adds facts, preferences, decisions, and observations to a typed graph with importance scoring and graph edges. The cortex synthesizes this into a briefing every future conversation benefits from.

Goals drive autonomous work between conversations. The autonomy channel wakes on its interval, picks up ready tasks, and works through them. Working memory records what happened, so the next conversation picks up where things left off.

Everything goes through typed tools into structured storage. Nothing drifts.


Spacebot + Spacedrive

Spacebot pairs with Spacedrive, an open-source cross-platform file manager built on a virtual distributed filesystem. Neither requires the other. When paired, Spacebot is the only agent harness with direct integration into a cross-device filesystem.

What Pairing Enables Today

Multi-device access: one Spacebot instance, all your devices. Talk to your agent from your phone while a worker executes on your server. Spacedrive's P2P layer (Iroh/QUIC) routes from every device through the paired node to Spacebot. No separate SDK, no separate auth.

Remote execution: workers can target any device in your library. A task that needs your home server's GPU, your work laptop's local repos, or your phone's camera routes through Spacedrive's permission system to the target device. From the agent's perspective, the tool call is identical.

File system intelligence: every directory can carry context nodes describing what it contains and what policies apply. When the agent navigates your filesystem it gets that context, not a blind listing.

Safe data access: Spacedrive indexes external sources (Gmail, Slack, Obsidian, GitHub, Apple Notes, contacts, calendar, browser history) as searchable data the agent can query. Every record passes through a local prompt injection classifier (Prompt Guard 2) before reaching the agent. The agent can search your emails without a malicious email hijacking it.

Where This Is Going

A company deploys Spacebot + Spacedrive on their infrastructure. Employees install Spacedrive on their devices and join the company library. The company agent has access to employee devices through Spacedrive's permission system, with individual-level controls. The org graph in Spacebot defines hierarchy and delegation: which agents report to which, who can approve what, how tasks flow.

An employee talks to the company agent from their MacBook. The agent knows their projects, their device, their role, and can spawn workers on any authorized machine. They switch to their personal Spacedrive library and connect to their home Spacebot, with personal data and personal context. The app is the same. The agent is different.

No other agent harness is building this. It's a category.


Quick Start

Prerequisites

  • Rust 1.85+ (rustup)
  • An LLM API key from any supported provider (Anthropic, OpenAI, OpenRouter, Kilo Gateway, Z.ai, Groq, Together, Fireworks, DeepSeek, xAI, Mistral, NVIDIA, MiniMax, Moonshot AI, Gemini, GitHub Copilot, OpenCode Zen, OpenCode Go), or use spacebot auth login for Anthropic OAuth

Build and Run

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

# Optional: build the OpenCode embedded UI (requires Node 22+ and bun)
# Without this, OpenCode workers still work — the Workers tab shows a transcript view instead.
# ./scripts/build-opencode-embed.sh

cargo build --release

Run

spacebot                      # start as background daemon
spacebot start --foreground   # or run in the foreground
spacebot stop                 # graceful shutdown
spacebot restart              # stop + start
spacebot status               # show pid and uptime
spacebot auth login           # authenticate via Anthropic OAuth

The binary creates all databases and directories automatically on first run. See the quickstart guide for more detail.

Authentication

Spacebot supports Anthropic OAuth as an alternative to static API keys:

spacebot auth login             # OAuth via Claude Pro/Max (opens browser)
spacebot auth login --console   # OAuth via API Console
spacebot auth status            # show credential status and expiry
spacebot auth refresh           # manually refresh the access token
spacebot auth logout            # remove stored credentials

OAuth tokens are stored in anthropic_oauth.json and auto-refresh before each API call. When OAuth credentials are present, they take priority over a static ANTHROPIC_API_KEY.


Deploy Your Way

Method What You Get
spacebot.sh One-click hosted deploy. Connect your platforms, configure your agent, done.
Self-hosted Single Rust binary. No Docker, no server dependencies, no microservices. Clone, build, run.
Docker Container image with everything included. Mount a volume for persistent data.

Tech Stack

Layer Technology
Language Rust (edition 2024) — single binary, no runtime dependencies, no GC pauses
Async runtime Tokio
LLM framework Rig v0.31 — agentic loop, tool execution, hooks
Relational data SQLite (sqlx) — conversations, memory graph, tasks, goals, cron jobs
Vector + FTS LanceDB — embeddings (HNSW), full-text (Tantivy), hybrid search (RRF)
Key-value redb — settings, encrypted secrets
Embeddings FastEmbed — local embedding generation
Crypto AES-256-GCM — secret encryption at rest
Discord Serenity — gateway, cache, events, rich messages, interactions
Slack slack-morphism — Socket Mode, events, Block Kit, slash commands
Telegram teloxide — long-poll, media attachments, group/DM support
Twitch twitch-irc — chat integration with trigger prefix
Browser Chromiumoxide — headless Chrome via CDP
CLI Clap — command line interface

Single binary, no server dependencies. All data lives in embedded databases in a local directory.


Documentation

Doc Description
Quick Start Setup, config, first run
Config Reference Full config.toml reference
Architecture Process types, tool access, memory internals, multi-agent
Memory Memory system design
Tools All available LLM tools
Routing Model routing and fallback chains
Secrets Credential storage, encryption, output scrubbing
Sandbox Process containment and environment sanitization
Cron Jobs Scheduled recurring tasks
MCP External tool servers via Model Context Protocol
OpenCode OpenCode as a worker backend
Messaging Adapter architecture and platform setup

Contributing

Contributions welcome. Read RUST_STYLE_GUIDE.md before writing any code, and AGENTS.md for the full implementation guide.

  1. Fork the repo
  2. Create a feature branch
  3. Install just (https://github.com/casey/just) if it is not already available (for example: brew install just or cargo install just --locked)
  4. Run ./scripts/install-git-hooks.sh once (installs pre-commit formatting hook)
  5. Make your changes
  6. Run just preflight and just gate-pr
  7. Submit a PR

SpaceUI (Frontend Components)

The dashboard uses @spacedrive/* packages from npm. For local development with linked packages, see CONTRIBUTING.md.

Formatting is still enforced in CI, but the hook catches it earlier by running cargo fmt --all before each commit. just gate-pr mirrors the CI gate and includes migration safety, compile checks, and test verification.


License

FSL-1.1-ALv2, Functional Source License, converting to Apache 2.0 after two years. See LICENSE for details.

Release History

VersionChangesUrgencyDate
v0.5.0## What's Changed * fix: MentionOnly mode retains channel context and memory capture by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/533 * SpaceUI migration by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/555 * feat(memory): add participant context foundation by @vsumner in https://github.com/spacedriveapp/spacebot/pull/521 * fix(memory): tighten persistence rules and add conversational events by @vsumner in https://github.com/spacedriveapp/spacebot/pull/522 * fixHigh5/7/2026
v0.4.1## What's Changed * Fix API route mismatches from OpenAPI migration by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/531 * fix: correct ingest file upload endpoint URL by @tomasmach in https://github.com/spacedriveapp/spacebot/pull/530 * Fix remaining API route mismatches from OpenAPI migration by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/532 **Full Changelog**: https://github.com/spacedriveapp/spacebot/compare/v0.4.0...v0.4.1High4/4/2026
v0.4.0## What's Changed * fix: add missing libxkbcommon0 to Docker runtime deps by @l33t0 in https://github.com/spacedriveapp/spacebot/pull/426 * feat: desktop app sidecar, connection screen, and 3D orb by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/452 * feat: working memory system — temporal awareness for channels by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/454 * fix: keep setup mode usable when provider credentials are unavailable by @jamiepine in https://githubMedium4/2/2026
v0.3.3## What's Changed * cortex: phase2/3 health supervision and detached lifecycle hardening by @vsumner in https://github.com/spacedriveapp/spacebot/pull/307 * fix: race condition losing opencode worker port in database by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/384 * feat(messaging): add Signal adapter via signal-cli JSON-RPC daemon by @ibhagwan in https://github.com/spacedriveapp/spacebot/pull/347 * fix: harden GPT/Codex tool linkage, follow-up outcomes, and memory persistencLow3/12/2026
v0.3.2v0.3.2 tightens channel reliability and release ergonomics without changing the core architecture. Hosted deployments can now manage the SSH daemon through a dedicated API, and operators get stronger visibility through prompt inspection snapshots and richer live status context. This patch also closes several turn-handling edge cases that could cause surprising behavior in busy channels. require_mention works, skip terminates the channel turn immediately (including error paths), and history backLow3/10/2026
v0.3.1## What's Changed * Fix Docker release, 0.3.0 docker was skipped, added gate to ensure docker builds succeed before publishing release * Enable metrics in Docker build, add comprehensive Prometheus instrumentation by @l33t0 in https://github.com/spacedriveapp/spacebot/pull/274 **Full Changelog**: https://github.com/spacedriveapp/spacebot/compare/v0.3.0...v0.3.1Low3/8/2026
v0.3.0Agents now understand the codebases they work in. Projects bring repo discovery, worktree tracking, disk usage reporting, and automatic sandbox allowlist injection — so agents have spatial awareness of what they're operating on. Browser tools were rewritten from scratch: 12 focused tools built on CDP's Accessibility API replacing DOM extraction, with persistent sessions that survive worker restarts. OpenCode is embedded directly in the worker detail view via Shadow DOM, with idle worker persiLow3/8/2026
v0.2.2## What's Changed * fix: infer default routing from configured provider by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/266 * Sandbox hardening: dynamic mode, env sanitization, leak detection by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/259 * Secret store: credential isolation, encryption at rest, output scrubbing by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/260 * feat: auto-download Chrome via fetcher, unify Docker image, fix singleton lock Low3/1/2026
v0.2.1## What's Changed * Improve task UI overflow handling and docker update rollback by @fyzz-dev in https://github.com/spacedriveapp/spacebot/pull/237 * fix Anthropic empty text blocks in retrigger flow by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/243 * Fix: Cleanup twitch_token.json when disconnecting Twitch platform by @Nebhay in https://github.com/spacedriveapp/spacebot/pull/212 * feat: add email messaging adapter and setup docs by @jamiepine in https://github.com/spacedriveapLow2/27/2026
v0.2.0## v0.2.0 is the _biggest_ Spacebot release yet. The agent is no longer a single-channel chatbot, it's a multi-agent system with real orchestration primitives. <img width="1074" height="655" alt="Screenshot_2026-02-23_at_12 48 29_PM copy" src="https://github.com/user-attachments/assets/04b4e72d-c646-4900-8096-eec7e5222ed6" /> Agents coordinate through a spec-driven task system with a full kanban board in the UI. Tasks are structured markdown documents with requirements, constraints, anLow2/26/2026
v0.1.15## What's Changed * fix: resolve pre-existing CI failures (clippy, fmt, test) by @Marenz in https://github.com/spacedriveapp/spacebot/pull/174 * fix: wire up ollama_base_url shorthand in config by @Marenz in https://github.com/spacedriveapp/spacebot/pull/175 * fix: return synthetic empty text on Anthropic empty content response by @Marenz in https://github.com/spacedriveapp/spacebot/pull/171 * fix: accept string values for timeout_seconds from LLMs by @Marenz in https://github.com/spacedriveapp/Low2/24/2026
v0.1.14## What's Changed * feat(mcp): add retry/backoff and CRUD API by @l33t0 in https://github.com/spacedriveapp/spacebot/pull/109 * feat(ux): add drag-and-drop sorting for agents in sidebar by @MakerDZ in https://github.com/spacedriveapp/spacebot/pull/113 * fix(channel): roll back history on PromptCancelled to prevent poisoned turns by @Marenz in https://github.com/spacedriveapp/spacebot/pull/114 * Fix CI failures: rustfmt, clippy, and flaky test by @Marenz in https://github.com/spacedriveapp/spacebLow2/23/2026
v0.1.13## What's Changed * Improve channel reply flow and Discord binding behavior by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/95 * feat(messaging): unify cross-channel delivery target resolution by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/97 * feat: add dedicated voice model routing and attachment transcription by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/98 * Fix all warnings and clippy lints by @Marenz in https://github.com/spacedriveapp/spaLow2/21/2026
v0.1.12## Note about v0.1.11 v0.1.11 was removed due to a bad migration, and its tag/release were deleted. v0.1.12 includes those intended changes plus additional fixes. ## Highlights included from the missing v0.1.11 window - Added hosted agent limit functionality - Added backup export and restore endpoints - Added storage status endpoint and filesystem usage reporting - Improved release tagging/version bump workflow (including Cargo.lock handling) ## What's Changed * fix: register NVIDIA providerLow2/21/2026
v0.1.10## What's Changed * feat: Add Z.AI Coding Plan provider by @thesammykins in https://github.com/spacedriveapp/spacebot/pull/67 * chore: optimize release profile to reduce binary size by @thesammykins in https://github.com/spacedriveapp/spacebot/pull/70 * feat(slack): cache user identities and resolve channel names by @jamiepine in https://github.com/spacedriveapp/spacebot/pull/71 ## New Contributors * @jamiepine made their first contribution in https://github.com/spacedriveapp/spacebot/pull/71 Low2/20/2026
v0.1.9## What's Changed * add local ollama provider by @mmattbtw in https://github.com/spacedriveapp/spacebot/pull/18 * fix(docs): add favicon, fix theme toggle, and resolve og:image localhost issue by @andrasbacsai in https://github.com/spacedriveapp/spacebot/pull/29 * feat(llm): add NVIDIA NIM provider support by @skulldogged in https://github.com/spacedriveapp/spacebot/pull/46 * Update slack connector to include additional sender metadata by @ACPixel in https://github.com/spacedriveapp/spacebot/pulLow2/20/2026
v0.1.8## What's Changed * fix: set skip_flag in ReplyTool to prevent double reply by @tomasmach in https://github.com/spacedriveapp/spacebot/pull/39 * fix(daemon): create instance directory before binding IPC socket by @BruceMacD in https://github.com/spacedriveapp/spacebot/pull/37 * otel by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/30 * fix otel by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/41 * make otel actually work by @Brendonovich in https://github.com/Low2/19/2026
v0.1.7## What's Changed * fix(config): support numeric telegram chat_id binding match by @cyllas in https://github.com/spacedriveapp/spacebot/pull/34 * Add ARM64 multi-platform Docker images by @andrasbacsai in https://github.com/spacedriveapp/spacebot/pull/27 ## New Contributors * @cyllas made their first contribution in https://github.com/spacedriveapp/spacebot/pull/34 * @andrasbacsai made their first contribution in https://github.com/spacedriveapp/spacebot/pull/27 **Full Changelog**: https://gitLow2/18/2026
v0.1.6**Full Changelog**: https://github.com/spacedriveapp/spacebot/compare/v0.1.5...v0.1.6Low2/18/2026
v0.1.5## What's Changed * Fix broken documentation links in README by @joseph-lozano in https://github.com/spacedriveapp/spacebot/pull/11 * fix: IPv6 socket address parsing for Docker deployments by @pablopunk in https://github.com/spacedriveapp/spacebot/pull/14 ## New Contributors * @joseph-lozano made their first contribution in https://github.com/spacedriveapp/spacebot/pull/11 * @pablopunk made their first contribution in https://github.com/spacedriveapp/spacebot/pull/14 **Full Changelog**: httpsLow2/18/2026
v0.1.4## What's Changed * Run release workflow on x86 and ARM runners by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/3 * Fix OpenCode Zen provider icon by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/5 * better provider list by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/6 * Fix Z.ai provider icon by @jiunshinn in https://github.com/spacedriveapp/spacebot/pull/7 * improve docker build by @Brendonovich in https://github.com/spacedriveapp/spacebLow2/17/2026
v0.1.3## What's Changed * Add OpenCode Zen provider support by @Brendonovich in https://github.com/spacedriveapp/spacebot/pull/2 **Full Changelog**: https://github.com/spacedriveapp/spacebot/compare/v0.1.2...v0.1.3Low2/17/2026
v0.1.2**Full Changelog**: https://github.com/spacedriveapp/spacebot/compare/v0.1.1...v0.1.2Low2/17/2026
v0.1.1## What's Changed * Add native Z.ai (GLM) provider by @jiunshinn in https://github.com/spacedriveapp/spacebot/pull/1 ## New Contributors * @jiunshinn made their first contribution in https://github.com/spacedriveapp/spacebot/pull/1 **Full Changelog**: https://github.com/spacedriveapp/spacebot/commits/v0.1.1Low2/17/2026
v0.1.0**Full Changelog**: https://github.com/spacedriveapp/spacebot/commits/v0.1.0Low2/15/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

agent-browser-protocolAgent Browser Protocol - Deterministic AI agent browser control at the engine levelv0.1.11
OpenOutreachLinkedin Automation Tool: Describe your product. Define your target market. The AI finds the leads for you.main@2026-06-05
adk-pythonAn open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.v2.2.0
@vercel/detect-agentDetect if code is running in an AI agent or automated development environment@vercel/static-build@2.9.37
golemGolem Cloud is the agent-native platform for building AI agents and distributed applications that never lose state, never duplicate work, and never require you to build infrastructure.v1.5.4

More in AI Agents

hermes-agentThe agent that grows with you
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
CopilotKitThe Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
e2bE2B SDK that give agents cloud environments