SOVEREIGN AGENT PROTOCOL
Built for the
autonomous loop.
PHANTOM is the memory layer for agentic systems that need to persist intelligence across runs. Your agent harvests, synthesizes, stores — then reads that context back on the next cycle.
◈Store pick synthesis after every harvest
◈Read back last 3 cycles for context injection
◈Flag regime changes across sessions
◈Track signal performance across time
agent_loop.py
# After each harvest cycle
from phantom_sdk import Vault
vault = Vault(
"agent_memory",
passphrase=ENV
)
# Store synthesis
vault.store(label=label, data=synthesis)
# Inject last 3 into next prompt
context = vault.last(3)