| Crates.io | bindr |
| lib.rs | bindr |
| version | 0.1.2 |
| created_at | 2025-09-29 06:22:41.986827+00 |
| updated_at | 2025-10-12 03:38:23.325873+00 |
| description | Multi-agent LLM workflow orchestration for builders |
| homepage | |
| repository | https://github.com/OneDevArmy/bindr |
| max_upload_size | |
| id | 1859037 |
| size | 376,196 |
Bindr is a terminal-native micro-kernel for multi-agent software creation. It orchestrates specialized Brainstorm → Plan → Execute → Document agents that coordinate over an event-driven kernel, retain project context, and stream responses live while staying within guardrails you control.
SessionManager, making it effortless to resume work or hand off between agents.~) keep teams informed before things go sideways.# install
cargo install bindr
# launch the TUI from your project directory
bindr
Add an API key when prompted, then explore commands like /mode, /model, and /help inside the conversation pane. Bindr will automatically route intents between mode agents and emit notifications as they save context or request tools. For web search, export your Tavily key before launching:
export TAVILY_API_KEY=sk_tavily_xxx
The kernel (src/core/kernel.rs) supervises agents via bounded queues and a broadcast event bus. AgentRuntime wires per-mode factories into the kernel, parses JSON tool calls emitted by the models, and either executes or queues the requests (with approvals surfaced in the TUI). Tool results, lifecycle events, and environment warnings flow back through kernel notifications so the UI can maintain an activity feed without interrupting the agents.
Tool call contract: when an agent needs a tool it emits a JSON envelope such as:
{
"tool": "web_search",
"args": { "query": "tui framework ratatui guide", "max_results": 5 }
}
If the tool requires approval, it appears in the side panel (/approve to authorize); otherwise the kernel executes it immediately and streams the output as a system message.
We welcome issues and pull requests. Run cargo fmt && cargo check && cargo test before submitting, and see AGENTS.md plus docs/architecture.md for deeper architectural guidance.
Licensed under the Apache-2.0 license.