by beam-cloud
The filesystem for AI agents
# Add to your Claude Code skills
git clone https://github.com/beam-cloud/airstoreThe filesystem for AI agents
Website · Docs · Demo Video · Discord
Airstore adds any source of data into a virtual filesystem. Connect Gmail, GitHub, Linear — then describe what you need in plain English. Results appear as files that Claude Code can read.
⭐ If this is useful, give us a star
Claude Code already knows how to read files, search directories, and work with file contents. By turning your integrations into files, Claude can use the same tools it uses for code, for your data.
Source views also let you scope exactly what Claude can access. Instead of granting access to your entire inbox, create a view with just "invoices from last week" — or use structured filters for precise control.
No comments yet. Be the first to share your thoughts!
Go to app.airstore.ai and create an account.
In the dashboard, go to Settings → Integrations and connect a service (GitHub, Gmail, Drive, and more.).
Click New Folder and describe what you want in natural language, or use structured filters:
curl -fsSL https://get.airstore.ai | sh
airstore login
airstore mount ~/airstore
Your source views are now available as local directories:
ls ~/airstore/gmail/invoices/
# stripe-invoice-jan-28.eml
# aws-invoice-jan-25.eml
# digitalocean-jan-22.eml
cat ~/airstore/gmail/invoices/stripe-invoice-jan-28.eml
From: billing@stripe.com
Subject: Your invoice from Stripe
Date: Jan 28, 2025
Amount: $249.00
Status: Paid
cd ~/airstore
claude
Ask Claude to work with your data:
~/airstore/
├── linear/
│ └── design-issues/ # Source view
├── github/
│ └── open-prs/ # Source view
├── gmail/
│ └── invoices/ # Source view
└── tools...