https://github.com/rebuno/rebuno
Execution runtime for AI agents with policy control and full audit trails
https://github.com/rebuno/rebuno
agent-infrastructure agent-runtime ai ai-agents ai-governance
Last synced: 12 days ago
JSON representation
Execution runtime for AI agents with policy control and full audit trails
- Host: GitHub
- URL: https://github.com/rebuno/rebuno
- Owner: rebuno
- License: mit
- Created: 2026-03-16T23:20:24.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-04-06T18:18:27.000Z (21 days ago)
- Last Synced: 2026-04-06T20:30:14.301Z (21 days ago)
- Topics: agent-infrastructure, agent-runtime, ai, ai-agents, ai-governance
- Language: Go
- Homepage: https://rebuno.io
- Size: 456 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Agents: docs/agents.md
Awesome Lists containing this project
README
A kernel-authoritative execution runtime for AI agents.
Rebuno sits between your agents and the tools they use, giving you policy control, a complete audit trail, and operational visibility over autonomous agent behavior. Agents propose actions. The kernel decides whether they're allowed. Every decision is recorded.
## Quick Start
**Prerequisites:** Go 1.25+, Python 3.10+
Start the kernel:
```bash
go install ./cmd/rebuno
rebuno dev
```
Start an agent:
```bash
pip install rebuno
python examples/python/agent/hello.py
```
Create an execution:
```bash
rebuno create --agent hello --input '{"query": "hello world"}'
```
See the full audit trail with `rebuno events {id}`.
See [Getting Started](docs/getting-started.md) for the full walkthrough.
## Documentation
| Doc | Description |
|---|---|
| [Getting Started](docs/getting-started.md) | Quick start walkthrough |
| [Architecture](docs/architecture.md) | Core concepts and state transitions |
| [Deployment](docs/deployment.md) | Production setup, auth, and configuration |
| [Python SDK](docs/sdk/python.md) | Building agents and runners in Python |
| [TypeScript SDK](docs/sdk/typescript.md) | Building agents and runners in TypeScript |
| [Tools](docs/tools.md) | Local, remote, and MCP tools |
| [Policy](docs/policy.md) | Declarative policy rules |
| [API Reference](docs/api.md) | HTTP endpoints and schemas |
| [Events](docs/events.md) | Event types and payloads |
| [CLI](docs/cli.md) | CLI reference |
## License
[MIT](LICENSE)