Tools
Antaris Suite
Antaris agent infrastructure โ memory, routing, guard, context, pipeline, and OpenClaw plugin
Install
pip install -e
README
# Antaris Suite v2.0.0
Agent infrastructure for intelligent, secure, and memory-persistent AI systems.
## Packages
| Package | Version | Description |
|---------|---------|-------------|
| `antaris-memory` | 2.0.0 | Persistent memory system with BM25 search, WAL, sharding, and MCP server |
| `antaris-router` | 3.0.0 | Intelligent model routing with cost tracking, confidence gating, and A/B testing |
| `antaris-guard` | 2.0.0 | Prompt injection detection, reputation tracking, and rate limiting |
| `antaris-context` | 2.0.0 | Context compression, summarization, and relevance scoring |
| `antaris-pipeline` | 1.0.0 | Agent orchestration pipeline with telemetry |
| `antaris-openclaw-plugin` | 1.0.0 | OpenClaw plugin โ auto-recall and auto-ingest via lifecycle hooks |
## Architecture
```
antaris-openclaw-plugin (lifecycle hooks โ auto-recall + auto-ingest)
โ
antaris-pipeline (orchestration)
โโโโโโดโโโโโโโโโโโโโโโโโโโโโ
antaris-memory antaris-router antaris-guard antaris-context
(persistence) (model selection) (security) (compression)
```
## Design Principles
- **Zero external dependencies** on all core Python packages โ stdlib only
- **File-based persistence** โ no database required
- **Multi-process safe** โ cross-platform `FileLock` using `os.mkdir()` atomicity
- **MCP-compatible** โ memory and router expose MCP servers
- **Fully tested** โ 835 tests, 3 external security reviews (Opus 4.6, GPT-5.2, Gemini Pro)
## Installation
```bash
# Install each package
pip install -e antaris-memory
pip install -e antaris-router
pip install -e antaris-guard
pip install -e antaris-context
pip install -e antaris-pipeline
# Install OpenClaw plugin
openclaw plugins install --link antaris-openclaw-plugin
openclaw plugins enable antaris-memory
```
## Release
**v2.0.0** โ All 3 external reviews passed. Production-ready for single-node architectures.
See `docs/MANIFEST.json` for SHA-256 integrity verification of all 157 source files.
tools
Comments
Sign in to leave a comment