Agent Armor, a Rust runtime that enforces policies on AI agent actions
Eight-layer governance pipeline for agents when LangChain just executes blindly.
Agent engine that does complex, long-running work with minimal tokens — every gain earned under rigorous eval.
Yet another agent framework competing with CrewAI, LangGraph, and AutoGen.
Teams building multi-agent AI systems
CrewAI · LangGraph · AutoGen
The problem: one shared agent maxes out fast. Separate agents per person means everyone starts from zero. We wanted the third option -- distributed compute with shared knowledge.
BendClaw is a runtime where multiple agents run in parallel, each on its own node, but all connected to one shared data layer. When one agent learns something, every other agent has it on the next run. No prompt engineering, no manual handoff.
What's inside:
- *Shared memory* -- all agents read and write to the same knowledge base. Context, learnings, history, fully connected. - *Cluster dispatch* -- agents fan out subtasks across nodes and collect results. Local and cloud nodes in one cluster. - *Self-evolving* -- every run automatically extracts knowledge and injects it into future runs. - *Trace and audit* -- every operation recorded. Who did what, which tools fired, what came back. All queryable. - *Secret-safe* -- secrets vault-isolated, never exposed to the LLM. Approval gates on sensitive actions. - *Token-aware* -- per-agent budgets with proactive alerts before anything runs out. - *100+ integrations* -- custom tools via Skills: write a description, point it at a script, done.
Rust, Apache-2.0. Hosted platform at https://evot.ai if you want to skip self-hosting.
Eight-layer governance pipeline for agents when LangChain just executes blindly.
Durable agents that survive crashes when LangChain and Vercel SDKs fail.
Solves workflow fragmentation across AGENTS.md, .cursor/rules, and scattered scripts.
Zero-trust governance for AI agents before they execute shell, file, or database actions with full audit trails.
Markdown files define agents with cooperative interruption — genuinely different from CrewAI or LangChain.
Approval gates and replayable artifacts solve real local agent debugging pain points.