Metadata-Version: 2.4
Name: agent-vfs
Version: 0.1.0
Summary: Persistent virtual filesystem for AI agents, backed by SQLite or Postgres
Project-URL: Homepage, https://github.com/johannesmichalke/agent-vfs
Project-URL: Repository, https://github.com/johannesmichalke/agent-vfs
License-Expression: MIT
Keywords: agents,ai,filesystem,llm,memory,postgres,sqlite,tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Provides-Extra: postgres
Requires-Dist: psycopg2-binary>=2.9; extra == 'postgres'
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == 'test'
Description-Content-Type: text/markdown

# agent-vfs (Python)

Persistent virtual filesystem for AI agents, backed by SQLite or Postgres.

```bash
pip install agent-vfs
```

```python
from agent_vfs import FileSystem, open_database

db = open_database("memory.db")  # SQLite, auto-creates table
fs = FileSystem(db, "agent-1")

fs.write("/notes.md", "# Meeting Notes\n- Ship agent-vfs")
content = fs.read("/notes.md")
```

For full documentation, see the [main README](../README.md).
