Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- **Circleback** — new read-only connector for [Circleback](https://circleback.ai) meetings. Each meeting becomes a conversation carrying its notes, its action items and (optionally) every transcript turn, so meeting content is searchable alongside messages. Configure with `api_key`, `backfill_days` (default 365) and `include_transcript` (default true); `void setup` has a wizard for it.
- **Remote** — `void remote status` reports `local_version` and `remote_version` so version skew between the client and the server binary is visible at a glance.

### Fixed
Expand Down
19 changes: 19 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ members = [
"crates/void-linkedin",
"crates/void-reddit",
"crates/void-github",
"crates/void-circleback",
]

[workspace.package]
Expand Down Expand Up @@ -90,3 +91,4 @@ void-googlenews = { path = "crates/void-googlenews" }
void-linkedin = { path = "crates/void-linkedin" }
void-reddit = { path = "crates/void-reddit" }
void-github = { path = "crates/void-github" }
void-circleback = { path = "crates/void-circleback" }
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![License: AGPL-3.0](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)](LICENSE)
[![Rust](https://img.shields.io/badge/rust-1.95%2B-orange.svg)](Cargo.toml)

**One inbox for everything.** `void` unifies WhatsApp, Telegram, Slack, Gmail, Google Calendar, LinkedIn, GitHub, Hacker News, Google News, and Reddit into a single local-first command-line tool — one inbox, one search index, one set of commands.
**One inbox for everything.** `void` unifies WhatsApp, Telegram, Slack, Gmail, Google Calendar, LinkedIn, GitHub, Circleback, Hacker News, Google News, and Reddit into a single local-first command-line tool — one inbox, one search index, one set of commands.

It is built for terminals, shell scripts, and AI agents:

Expand Down Expand Up @@ -133,6 +133,16 @@ void reddit config
void reply <message-id> --message "Thanks!"
```

### Circleback

Meetings recorded by [Circleback](https://circleback.ai) sync read-only into the same inbox: one conversation per meeting, holding the notes, the action items, and every transcript turn attributed to its speaker. Past meetings become searchable next to your messages.

```bash
void inbox --connector circleback
void search "pricing objection" --connector circleback
void messages <conversation-id>
```

### Google News

Keyword-watched articles from the public Google News RSS feed land in your inbox — one search per keyword, filtered by recency:
Expand Down Expand Up @@ -174,7 +184,7 @@ A background daemon keeps a local SQLite database in sync with every connected s
|-------|------|
| `void-core` | Config, database, models, hooks, `Connector` trait, sync engine |
| `void-cli` | The `void` binary: clap commands, output formatting |
| `void-slack`, `void-gmail`, `void-calendar`, `void-whatsapp`, `void-telegram`, `void-hackernews`, `void-googlenews`, `void-linkedin`, `void-github`, `void-reddit` | One crate per connector |
| `void-slack`, `void-gmail`, `void-calendar`, `void-whatsapp`, `void-telegram`, `void-hackernews`, `void-googlenews`, `void-linkedin`, `void-github`, `void-reddit`, `void-circleback` | One crate per connector |

All data stays on your machine in `~/.local/share/void` — no external database, no Docker, no cloud. Layout details: [Configuration](docs/configuration.md#data-storage-layout).

Expand Down
24 changes: 24 additions & 0 deletions crates/void-circleback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "void-circleback"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "Circleback (meeting notes & transcripts) adapter for Void CLI"

[dependencies]
void-core = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
anyhow = { workspace = true }
async-trait = { workspace = true }
tokio-util = { workspace = true }
reqwest = { workspace = true }
chrono = { workspace = true }

[dev-dependencies]
wiremock = { workspace = true }
tokio = { workspace = true }
tempfile = { workspace = true }
Loading