2026-05-26 13:23:45 +02:00
|
|
|
[workspace]
|
2026-06-19 21:15:44 +02:00
|
|
|
members = ["crates/colibri-contracts", "crates/colibri-deepseek", "crates/colibri-runtime", "crates/colibri-glasspane", "crates/colibri-daemon", "crates/colibri-client", "crates/colibri-glasspane-tui", "crates/colibri-store", "crates/colibri-skills", "crates/colibri-mcp", "crates/colibri-vault", "crates/clawdie"]
|
2026-05-26 13:23:45 +02:00
|
|
|
|
2026-05-26 10:08:23 +02:00
|
|
|
[package]
|
|
|
|
|
name = "colibri"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
description = "Clawdie Colibri control plane — cross-platform (FreeBSD/Linux) Rust core"
|
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "colibri-probe"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
2026-05-26 10:45:18 +02:00
|
|
|
[[bin]]
|
|
|
|
|
name = "colibri-runtime-inventory"
|
|
|
|
|
path = "src/bin/runtime_inventory.rs"
|
|
|
|
|
|
2026-05-26 10:08:23 +02:00
|
|
|
[dependencies]
|
2026-05-26 13:35:39 +02:00
|
|
|
# Probe logic lives in colibri-deepseek (which pulls reqwest/rustls, chrono…).
|
|
|
|
|
colibri-deepseek = { path = "crates/colibri-deepseek" }
|
2026-05-26 14:27:41 +02:00
|
|
|
dotenvy = "0.15"
|
2026-05-26 10:08:23 +02:00
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
feat: add `clawdie` — simplified operator agent in one small binary (Sam & Claude)
New `clawdie` crate: the operator-friendly face of Colibri. One small Rust
binary that reuses the proven control-plane core (glasspane supervision +
Herdr Unix-socket API + coordination loop — the "split brain") and puts a
DeepSeek-backed Telegram bot in front of it. That is the entire out-of-the-box
surface.
Deliberately lifted vs. the full control plane: cost modes, quota accounting,
context budgets, multi-provider fallback (OpenRouter/Anthropic), per-user
limits. One DeepSeek key serves both the chat lane and the daemon routing.
- crates/clawdie: main (core + bridge wiring), telegram (long-poll bridge),
deepseek (minimal one-key chat), build.rs (bakes CLAWDIE_TG_TOKEN +
CLAWDIE_DEEPSEEK_KEY build flags; runtime env overrides).
- packaging/freebsd/clawdie.in: rc.d service, daemon(8)-supervised, restart on
crash, dedicated clawdie user — starts as a service like Clawdie-AI.
- release profile strips symbols (binary ~7.6 MB stripped).
- docs/CLAWDIE-AGENT-WIKI.md (mindmap), docs/CLAWDIE-BUILD.md (build + ISO +
next-build XFCE USB fixes), README workspace table.
Build/clippy/fmt green; headless start smoke-tested (socket + sessions bind).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-02 08:31:59 +02:00
|
|
|
serde_json = "1"
|
|
|
|
|
|
2026-06-13 19:19:07 +02:00
|
|
|
# Lean release artifacts: strip symbols so the staged ISO binaries stay small
|
|
|
|
|
# without a manual strip step.
|
feat: add `clawdie` — simplified operator agent in one small binary (Sam & Claude)
New `clawdie` crate: the operator-friendly face of Colibri. One small Rust
binary that reuses the proven control-plane core (glasspane supervision +
Herdr Unix-socket API + coordination loop — the "split brain") and puts a
DeepSeek-backed Telegram bot in front of it. That is the entire out-of-the-box
surface.
Deliberately lifted vs. the full control plane: cost modes, quota accounting,
context budgets, multi-provider fallback (OpenRouter/Anthropic), per-user
limits. One DeepSeek key serves both the chat lane and the daemon routing.
- crates/clawdie: main (core + bridge wiring), telegram (long-poll bridge),
deepseek (minimal one-key chat), build.rs (bakes CLAWDIE_TG_TOKEN +
CLAWDIE_DEEPSEEK_KEY build flags; runtime env overrides).
- packaging/freebsd/clawdie.in: rc.d service, daemon(8)-supervised, restart on
crash, dedicated clawdie user — starts as a service like Clawdie-AI.
- release profile strips symbols (binary ~7.6 MB stripped).
- docs/CLAWDIE-AGENT-WIKI.md (mindmap), docs/CLAWDIE-BUILD.md (build + ISO +
next-build XFCE USB fixes), README workspace table.
Build/clippy/fmt green; headless start smoke-tested (socket + sessions bind).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-02 08:31:59 +02:00
|
|
|
[profile.release]
|
|
|
|
|
strip = true
|