Agent framework
ClosedClaw
A local, capsule-based multi-agent orchestrator for Python agents: discover or create the right capsule, route through LangGraph, gate risky work, execute allowlisted tools, and preserve evidence.
- Status
- Live repository
- Proof type
- Agent framework
- Stack
- LangGraph LangChain sqlite-vec Python JSONL audit
What it is
Agents as reusable capsules
ClosedClaw packages agents with a manifest, skills, memory, entrypoint, and logs. A LangGraph coordinator discovers matching capsules through embeddings and reranking, then runs the chosen agent as an isolated subprocess.
Why it exists
Agent prototypes need an operating surface
The repo is aimed at the point where one-off agents become hard to trust: reuse decisions, paid API calls, tool permissions, and logs need to be visible instead of buried inside a prompt script.
How it works
Discover, approve, execute, audit
01Task
02Registry
03Capsule
04ToolExec
- Embed the task and search the capsule registry with sqlite-vec.
- Use the coordinator graph to choose discovery or execution.
- Pause at human approval gates for creation, reuse, and paid calls.
- Run allowlisted tools and leave JSONL logs plus SQLite audit events.