A local-first, privacy-preserving automation platform — no telemetry, no accounts, no central server.
Springtale is a connector framework that lets you automate across services (chat platforms, APIs, filesystems, search engines) without trusting any single connector with your data, your credentials, or your identity. Designed for people whose safety depends on privacy.
Everything works without AI. Plug in a local model or API key if you want. Unplug it and nothing breaks.
Existing automation and agent platforms share the same problems: they run untrusted code with full machine access, store secrets in plaintext, phone home to central servers, and require phone numbers or emails that link your identity across contexts. If you're someone who faces real consequences when your identity leaks, those aren't acceptable tradeoffs.
- No telemetry — not opt-out, not anonymized. It doesn't exist.
- No phone number — no email, no real name. Identity is an Ed25519 keypair generated locally on your machine.
- No central server — self-hosted now. Planned P2P over Veilid.
- No trust required — community connectors run in a WASM sandbox with signed manifests and declared capabilities. They cannot access anything you don't approve.
- No AI dependency — the default adapter is
NoopAdapter. Rules, automations, and bot commands work without any AI plugged in.
git clone https://github.com/ScopeCreep-zip/Springtale.git
cd Springtale
cargo build --workspace
cargo run --bin springtale-cli -- init # creates encrypted vault + database
cargo run --bin springtale-cli -- server start # starts daemon on 127.0.0.1:8080With Nix: direnv allow loads the full dev shell via Konductor. With Docker: docker compose up -d.
Full walkthrough with a worked example: docs/QUICKSTART.md
Fifteen first-party connectors ship today. You wire them together with rules — no code, no AI, just TOML:
| Connector | Platform | What it does |
|---|---|---|
connector-kick |
Kick streaming | OAuth 2.1 PKCE, chat, stream events, webhooks |
connector-bluesky |
Bluesky / ATProto | posts, replies, likes, Jetstream firehose |
connector-github |
GitHub | issues, comments, diffs, HMAC webhooks |
connector-presearch |
Presearch | privacy-first search + scraping, cached |
connector-filesystem |
Local files | watch, read, write with path allow-lists |
connector-shell |
Shell commands | execute with allow-list, timeout, approval gate |
connector-http |
Generic HTTP | GET/POST with host allow-list |
connector-opencode |
OpenCode | hand agentic coding tasks to a local opencode serve daemon, approval-gated |
connector-telegram |
Telegram | Bot API, polling + webhooks |
connector-discord |
Discord | twilight gateway, slash commands, messages |
connector-slack |
Slack | Socket Mode + webhooks, messages, blocks |
connector-irc |
IRC | native IRC client, channels, messages |
connector-nostr |
Nostr | NIP-44 relays, notes, encrypted DMs |
connector-signal |
Signal | signal-cli bridge, messages, groups |
connector-browser |
Headless browser | Chromium via WASM, navigate, click, screenshot |
connector-matrix is deferred — matrix-sdk pins a rusqlite with an open heap-leak CVE; Springtale uses the patched version. We'll ship it once upstream catches up.
Any connector automatically becomes an MCP server via springtale-mcp. One framework, not N hand-written servers.
[rule]
name = "stream-announce"
[trigger]
type = "ConnectorEvent"
connector = "connector-kick"
event = "stream_live"
[[actions]]
type = "RunConnector"
connector = "connector-bluesky"
action = "create_post"
[actions.params]
text = "${trigger.broadcaster.username} is live: ${trigger.title}"Per-connector details: docs/reference/connectors/ | How connectors work: docs/guide/connectors.md
Springtale is a Rust workspace with strict downward-only dependencies. No cycles, no upward references.
┌──────────────────────────────────────────────────────────┐
│ Applications │
│ springtaled (daemon) springtale-cli │
│ Tauri desktop + web dashboard (SolidJS) │
├──────────────────────────────────────────────────────────┤
│ Bot Layer │
│ bot (runtime, router, cooperation glue, orchestrator) │
│ runtime (shared init, dispatch, operations) │
├──────────────────────────────────────────────────────────┤
│ Integration Crates │
│ cooperation (40 pub modules — formations, momentum, │
│ rally, supervision, gossip, mental model) │
│ mcp (rmcp 1.x bridge) ai (Anthropic/Ollama/…/Noop) │
│ sentinel (toxic pairs, monitor, approval gate) │
│ scheduler (cron, watcher, jobs, heartbeat) │
├──────────────────────────────────────────────────────────┤
│ Connector Layer │
│ trait, registry, manifest signing, capability system, │
│ WASM sandbox (Wasmtime — fuel, memory, epoch timeout) │
├──────────────────────────────────────────────────────────┤
│ Foundation Crates │
│ store (SQLite + WAL + declarative schema in │
│ schema/sql/, apply via PRAGMA user_version) │
│ crypto (Ed25519, vault, Argon2id, XChaCha20-Poly1305) │
│ core (rule engine, pipeline, transforms, canvas) │
│ transport (Local / HTTP-mTLS / Veilid-stub) │
├──────────────────────────────────────────────────────────┤
│ Cross-language bindings (G3) │
│ wit (WIT world for WASM Component Model embedding) │
│ py (pyo3 Python bindings, abi3-py39) │
└──────────────────────────────────────────────────────────┘
Fig. 1. Crate stack. Dependencies flow downward only.
When an event arrives — webhook, file change, cron timer, chat message — it flows through trigger matching, condition evaluation, pipeline stages, capability check, then dispatch to the connector. Events and outputs land in the store. Bots sit on top of the same rule engine and add command routing, session memory, and a cooperation framework that coordinates multi-agent formations without central orchestration.
Architecture (as-built): docs/arch/ARCHITECTURE.md · docs/arch/SECURITY.md · docs/arch/AUDIT-NOTES.md Design intent: docs/current-arch/ARCHITECTURE.md Friendly guide: docs/guide/architecture.md
Security and privacy are constraints, not features. Eight independent layers — compromise of one doesn't cascade to the others.
┌───────────────────────────────────────────────────────────┐
│ Zero Telemetry — nothing leaves your device │
├───────────────────────────────────────────────────────────┤
│ Transport Encryption — rustls only, OpenSSL banned │
├───────────────────────────────────────────────────────────┤
│ Vault Encryption — XChaCha20-Poly1305 + Argon2id KDF │
├───────────────────────────────────────────────────────────┤
│ WASM Sandbox — fuel metering, memory limits, timeout │
├───────────────────────────────────────────────────────────┤
│ Capability Model — exact-host matching, toxic pair block │
├───────────────────────────────────────────────────────────┤
│ Manifest Signing — Ed25519, verify on every load │
├───────────────────────────────────────────────────────────┤
│ Secret<T> — can't log, clone, or serialize; zeroed │
├───────────────────────────────────────────────────────────┤
│ Supply Chain — cargo-deny, cargo-audit, gitleaks in CI │
└───────────────────────────────────────────────────────────┘
Fig. 2. Defence-in-depth. Compromise of any one layer doesn't cascade.
Native connectors (first-party, audited) run in-process with runtime capability checks. Community WASM connectors are fully sandboxed in Wasmtime — they can only reach the host through capabilities declared in their signed manifest.
Security guide: docs/guide/security.md | Full threat model + OWASP/MITRE mappings: docs/current-arch/SECURITY.md
- CISA 2026 / NIST SP 800-218 SSDF / OWASP Top 10:2025 baseline. Every release ships with a CycloneDX 1.7 + SPDX 2.3 SBOM, SLSA Build Level 3 provenance, and a Sigstore cosign keyless bundle. Verify recipe:
docs/operations/verifying-releases.md. - Daily KEV gate. CI cross-references our entire dep graph against the CISA Known Exploited Vulnerabilities catalog and fails closed on any match.
- Post-quantum-ready TLS. Hybrid
X25519MLKEM768key exchange (viarustls-post-quantum) is the rustls default in every entry point. Falls back to classical X25519 with peers that don't speak the hybrid yet. - Memory safety roadmap (
docs/security/MEMORY-SAFETY.md) per the CISA January 2026 expectation. Three documentedunsafeblocks, all inspringtale-cryptoformlock. Everything else is#![forbid(unsafe_code)]. - Crypto inventory (
docs/security/CRYPTO-INVENTORY.md) tracks every algorithm with a NIST IR 8547 migration deadline. - Disclosure pointer: RFC 9116
security.txtat/.well-known/security.txt.
Documents for operators and security-conscious users:
SECURITY.md— disclosure policy + SLAsdocs/security/SECURITY-FAQ.md— "Secure by Demand" Q&Adocs/security/SUPPLY-CHAIN.md— dep policy + signingdocs/security/RISK-REGISTER.md— 32-row STRIDE inventorydocs/security/CI-TRUST.md— CI/CD trust posturedocs/security/INCIDENT-RUNBOOK.md— maintainer playbooks
| Phase | Scope | State |
|---|---|---|
| 1a | Framework + connectors. Daemon, CLI, rule engine, crypto vault, WASM sandbox, 8 baseline connectors, MCP bridge. | Present. |
| 1b | Bot foundations. springtale-bot with command router, cooperation framework, connector-telegram. |
Present. Cooperation framework fully extracted into springtale-cooperation (40 pub modules, zero internal deps) and wired through a 14-step formation tick. See docs/arch/AUDIT-NOTES.md §3. |
| 2a | Chat + AI. Discord, Signal, IRC, Slack, Nostr connectors. Anthropic / Ollama / OpenAI-compat adapters (all three stream). HttpTransport (rustls mTLS). springtale-sentinel. |
Present. connector-matrix is not in the workspace — matrix-sdk pins a rusqlite with an open CVE. |
| 2b | Desktop + safety. Tauri 2 shell, SolidJS dashboard, canvas visualisation. Duress vault, panic wipe, travel mode, disguise tray icon (G5f), OS-wide quick-hide shortcut (G5g), destructive-action approval gate (G5b). | Shell, dashboard, canvas, duress, panic wipe, travel mode, disguise, quick-hide, approval gate all present. Visual rule builder (basic overlay shipped), i18n, and a11y still in progress. |
| 3 | Veilid mesh. P2P transport, E2E encrypted AI chat, no server. | VeilidTransport is a stub — every method returns TransportError::NotConnected. |
Full breakdown: docs/ROADMAP.md
Springtale draws from and contributes to a constellation of projects:
- Rekindle — Veilid-native decentralized gaming chat. Springtale's
VeilidTransport(currently a stub) targetsrekindle-protocol. - Konductor — Nix flake framework for reproducible dev environments.
- Kalilix — Nix-based polyglot dev environment with security tooling.
- SpiritStream — Tauri desktop app patterns.
Springtale is built by and for marginalized communities. We welcome security review, accessibility expertise, i18n, and code.
Start with CONTRIBUTING.md. Read the Code of Conduct. If you can't put a real name on your commits, see docs/anonymous-contribution.md.
Found a vulnerability? Don't open an issue. See SECURITY.md for the disclosure policy.
MIT — ScopeCreep.zip, 2026
