Standalone Usage
pip install, SQLite storage, record and query agent actions
Flight Recorder can be used standalone with zero platform dependencies. Install it, create a recorder, and start logging agent actions immediately.
Installation
Basic Usage
Ed25519 Signing
Enable cryptographic signing for tamper-evident records:
Querying Records
Docker Deployment
Data Model
The FrRecord model stores each action record:
| Field | Type | Description |
|---|---|---|
id | UUID | Unique record identifier |
agent_id | string | Agent that performed the action |
tool_name | string | Namespaced tool name |
action_type | string | Action classification (create, read, update, delete) |
payload_hash | string | SHA-256 hash of the action payload |
verdict | string | allow, deny, rewrite, escalate |
signature | string | Ed25519 signature (if signing enabled) |
created_at | datetime | Timestamp of the record |