Decentralized memory layer for AI agents powered by Shelby Blob Storage.
AgentVault is a lightweight developer tool that stores AI agent outputs using Shelby decentralized blob storage.
The goal is to create a permanent and verifiable memory layer for autonomous AI agents.
AI agents often generate valuable outputs such as:
- research logs
- analysis results
- automated decisions
These outputs are usually stored in centralized databases, which can be modified, deleted, or lost.
AgentVault solves this by uploading agent outputs to Shelby decentralized blob storage, making the data:
- immutable
- verifiable
- permanently accessible
AI Agent
↓
AgentVault
↓
Shelby Blob Upload
↓
Shelby Decentralized Storage
↓
Immutable AI Memory
- Python
- Shelby CLI
- Shelby Blob Storage
- JSON agent outputs
- AI agent generates output
- The output is saved locally as a file
- AgentVault uploads the file using the Shelby CLI
- Shelby stores the data as a decentralized blob
- The stored data becomes permanent and verifiable
AI Research Agent
↓
Generates Report
↓
AgentVault Upload
↓
Shelby Blob Storage
↓
Permanent AI Memory
- AI research logs
- trading bot activity storage
- dataset storage
- autonomous agent memory
- decentralized AI audit trail
Clone the repository:
git clone https://github.com/TurgayAcar49/shelby-agentvault.git
cd shelby-agentvaultRun the example script:
python app.pyfrom agentvault import upload_output
upload_output("agent_output.txt")Example agent output file:
agent_output.txt
Upload it to Shelby storage:
shelby blob upload agent_output.txtExample AI agent result stored by AgentVault:
{
"agent": "research-agent",
"task": "AI market analysis",
"timestamp": "2026-03-09",
"summary": "AI adoption is accelerating across multiple industries.",
"confidence": 0.92
}This output can be uploaded to Shelby decentralized storage to create a permanent and verifiable AI memory record.
shelby-agentvault
│
├── app.py
├── demo.py
├── requirements.txt
├── README.md
├── LICENSE
│
└── examples
└── agent_output.json
v0.1
Basic Shelby blob upload integration
v0.2
Automatic AI agent log storage
v0.3
API for AI agents
v0.4
Dashboard for agent memory
This project is licensed under the MIT License.