Thanks for your interest in contributing to Agent FS!
- Bun v1.2+
- Git
git clone https://github.com/desplega-ai/agent-fs.git
cd agent-fs
bun install# Run all tests
bun run test
# With coverage
bun run test:coverage# Bundle CLI for npm
bun run buildOutput: packages/cli/dist/cli.js
bun run typecheckRun this before committing to catch type errors early.
agent-fs/
├── packages/
│ ├── core/ # Core library — storage, search, identity, database
│ ├── cli/ # CLI binary (agent-fs)
│ ├── mcp/ # MCP server integration
│ └── server/ # HTTP server (Hono)
├── scripts/ # Release scripts
├── package.json # Workspace root
└── tsconfig.json
- Fork the repo
- Create a branch (
git checkout -b my-feature) - Make your changes
- Run
bun run typecheckandbun run test - Open a PR
Join our Discord if you have questions or want to discuss ideas.