Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
The filesystem for agents.
| Date | Stars |
|---|---|
| 2026-07-31 | 3308 |
| 2026-08-01 | 3311 |
| 2026-08-03 | 3311 |
| 2026-08-06 | 3311 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<p align="center"> <h1 align="center">AgentFS</h1> </p> <p align="center"> The filesystem for agents. </p> <p align="center"> <a title="Build Status" target="_blank" href="https://github.com/tursodatabase/agentfs/actions/workflows/rust.yml"><img src="https://img.shields.io/github/actions/workflow/status/tursodatabase/agentfs/rust.yml?style=flat-square"></a> <a title="Rust" target="_blank" href="https://crates.io/crates/agentfs-sdk"><img alt="Crate" src="https://img.shields.io/crates/v/agentfs-sdk"></a> <a title="JavaScript" target="_blank" href="https://www.npmjs.com/package/agentfs-sdk"><img alt="NPM" src="https://img.shields.io/npm/v/agentfs-sdk"></a> <a title="Python" target="_blank" href="https://pypi.org/project/agentfs-sdk/"><img alt="PyPI" src="https://img.shields.io/pypi/v/agentfs-sdk"></a> <a title="MIT" target="_blank" href="https://github.com/tursodatabase/agentfs/blob/main/LICENSE.md"><img src="http://img.shields.io/badge/license-MIT-orange.svg?style=flat-square"></a> </p> <p align="center"> <a title="Users's Discord" target="_blank" href="https://tur.so/discord"><img alt="Chat with other users of Turso (and Turso Cloud) on Discord" src="https://img.shields.io/discord/933071162680958986?label=Discord&logo=Discord&style=social&label=Users"></a> </p> --- > **⚠️ Warning:** This software is in BETA. It may still contain bugs and unexpected behavior. Use caution with production data and ensure you have backups. ## 🎯 What is AgentFS? AgentFS is a filesystem explicitly designed for AI agents. Just as traditional filesystems provide file and directory abstractions for applications, AgentFS provides the storage abstractions that AI agents need. The AgentFS repository consists of the following: * **SDK** - [TypeScript](sdk/typescript), [Python](sdk/python), and [Rust](sdk/rust) libraries for programmatic filesystem access. * **[CLI](MANUAL.md)** - Command-line interface for managing agent filesystems: - Mount AgentFS on host filesystem with FUSE on Linux and NFS on macOS. - Access AgentFS files with a command line tool. * **[AgentFS Specification](SPEC.md)** - SQLite-based agent filesystem specification. ## 💡 Why AgentFS? AgentFS provides the following benefits for agent state management: * **Auditability**: Every file operation, tool call, and state change is recorded in a SQLite database file. Query your agent's complete history with SQL to debug issues, analyze behavior, or meet compliance requirements. * **Reproducibility**: Snapshot an agent's state at any point with cp agent.db snapshot.db. Restore it later to reproduce exact execution states, test what-if scenarios, or roll back mistakes. * **Portability**: The entire agent runtime—files, state, history —is stored in a single SQLite file. Move it between machines, check it into version control, or deploy it to any system where Turso runs. Read more about the motivation for AgentFS in the announcement [blog post](https://turso.tech/blog/agentfs). ## 🧑💻 Getting Started ### Using the CLI Install the AgentFS CLI: ```bash curl -fsSL https://agentfs.ai/install | bash ``` Initialize an agent filesystem: ```bash $ agentfs init my-agent Created agent filesystem: .agentfs/my-agent.db Agent ID: my-agent ``` Inspect the agent filesystem: ```bash $ agentfs fs my-agent ls Using agent: my-agent f hello.txt $ agentfs fs my-agent cat hello.txt hello from agent ``` You can also use a database path directly: ```bash $ agentfs fs .agentfs/my-agent.db cat hello.txt hello from agent ``` View the agent's action timeline: ```bash $ agentfs timeline my-agent ID TOOL STATUS DURATION STARTED 4 execute_code pending -- 2024-01-05 09:44:20 3 api_call error 300ms 2024-01-05 09:44:15 2 read_file success 50ms 2024-01-05 09:44:10 1 web_search success 1200ms 2024-01-05 09:43:45 ``` You can mount an agent filesystem using FUSE (Linux) or NFS
Excerpt of 10,586 characters
Read on GitHubPekka Enberg · Finland
564
105
22
14
Avinash Sajjanshetty · @tursodatabase · India
9
6
6
wangxiaolei · China
4
4
4
3
cbro
3
2
Darren Shepherd · Obot AI
2
2
1
H.H.
1
Eikasia30
1
1
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:38aa80b1a3530a63, topic:agents