Skip to content

locoholy/messaging-daemon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

messaging-daemon

A unified local daemon that polls Signal and email, stores all messages in a single SQLite database, and exposes them through a simple HTTP API on localhost:6000.

Designed to give AI agents and local software safe, structured access to your messages. Reading messages is immediate. Sending to yourself is immediate. Sending to anyone else requires explicit human approval through a confirmation page on localhost:7000 — keeping untrusted software from sending messages on your behalf without your knowledge.

The recommended usage is to run AI agents and other untrusted software from inside a sandbox (eg. bwrap), and give the sandbox access to port 6000 and other needed ports (eg. localhost LLM provider port) but NOT port 7000.

Backends supported:

  • Signal via signal-cli
  • Email via IMAP/SMTP (tested with Protonmail Bridge; works with any standard provider)

Installation (NixOS)

Add messaging-daemon.nix to your imports and rebuild:

imports = [
  ./messaging-daemon.nix
  ./protonmail-bridge.nix  # if using Protonmail
];

Documentation

See SKILL.md for the full HTTP API reference, query examples, timestamp utilities, and step-by-step setup instructions for both backends.

About

A daemon that can read messages and (with human confirmation required) send from your email and signal. Meant to help give your local LLM sandboxed access to your personal data without enabling exfiltration. I recommend using together with sandboxes (eg. bwrap)..

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 95.8%
  • Nix 4.2%