airstore

作者 beam-cloud已验证

The filesystem for AI agents

183
Stars
10
Forks
Go
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/beam-cloud/airstore

快速入门

使用 airstore 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Airstore

The filesystem for AI agents

License: AGPL v3 GitHub stars

Website · Docs · Demo Video · Discord


What is Airstore?

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

Why files?

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.

Features

  • Source views - Natural language or structured queries that materialize as folders of files
  • Integrations - Connect GitHub, Gmail, Google Drive, Linear, Notion, Slack, Web
  • Tools - MCP servers exposed as executable binaries
  • Team workspaces - Share integrations and source views across your team
  • Local mode - Run entirely on your own infrastructure

Quick Start

1. Sign up

Go to app.airstore.ai and create an account.

2. Connect an Integration

In the dashboard, go to Settings → Integrations and connect a service (GitHub, Gmail, Drive, and more.).

3. Create a source view

Click New Folder and describe what you want in natural language, or use structured filters:

  • "Open PRs in acme/api that need review"
  • "Invoices I received in email last week"
  • "High priority issues in the current sprint"

4. Install the CLI and Login

curl -fsSL https://get.airstore.ai | sh
airstore login

5. Mount the filesystem

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

6. Use with Claude Code

cd ~/airstore
claude

Ask Claude to work with your data:

  • "Summarize these invoices and tell me the total"
  • "Which invoices are unpaid?"
  • "Extract vendor names and amounts into a CSV"

How it works

~/airstore/
├── linear/
│   └── design-issues/     # Source view
├── github/
│   └── open-prs/          # Source view
├── gmail/
│   └── invoices/          # Source view
└── tools/
    ├── github             # MCP tool executable
    ├── linear             # MCP tool executable
    └── gmail              # MCP tool executable

Source views contain data from your integrations, materialized as files. They sync automatically in the background, or manually on demand.

Tools are MCP servers exposed as executables that let you take actions:

~/airstore/tools/github create-issue --repo=acme/api --title="Bug fix needed"

Tools output JSON and can be piped together with standard Unix tools:

~/airstore/tools/wikipedia search "albert" | grep -i 'einstein'

Installation

The install script handles everything:

curl -fsSL https://get.airstore.ai | sh

This automatically:

  • Downloads the correct binary for your platform (macOS/Linux, Intel/ARM)
  • Installs FUSE dependencies
  • Configures permissions

Verify the installation:

airstore --version

System requirements

PlatformStatus
macOS (Apple Silicon)Supported
macOS (Intel)Supported
Linux (x86_64)Supported
Linux (ARM64)Supported
WindowsComing soon

Local Mode (Self-Hosted)

For development or self-hosted deployments, you can run Airstore entirely on your own infrastructure with your own MCP servers.

Prerequisites

FUSE (required):

# macOS
brew install fuse-t

# Ubuntu/Debian
sudo apt install fuse3

Node.js (for npx-based MCP servers):

# macOS
brew install node

# Ubuntu/Debian
sudo apt install nodejs npm

Configuration

Create a config.local.yaml file:

mode: local

gateway:
  grpc:
    port: 1993
  http:
    host: 127.0.0.1
    port: 1994

tools:
  mcp:
    filesystem:
      command: npx
      args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp", "/Users"]

    memory:
      command: npx
      args: ["-y", "@modelcontextprotocol/server-memory"]

    wikipedia:
      command: npx
      args: ["-y", "@modelcontextprotocol/server-wikipedia"]

    github:
      command: npx
      args: ["-y", "@modelcontextprotocol/server-github"]
      env:
        GITHUB_TOKEN: "${GITHUB_TOKEN}"

Mount locally

airstore mount ~/airstore --config config.local.yaml

Your tools are now available:

ls ~/airstore/tools/
# filesystem  memory  wikipedia  github

# Search Wikipedia
~/airstore/tools/wikipedia search "artificial intelligence"

# List files
~/airstore/tools/filesystem list_directory /tmp

# Get help for any tool
~/airstore/tools/filesystem --help

Building from source

git clone https://github.com/beam-cloud/airstore
cd airstore
make build
./bin/cli mount ~/airstore --config config.local.yaml

Documentation

Full documentation at docs.airstore.ai:

Contributing

PRs welcome! See CONTRIBUTING.md for guidelines.

Join our Discord to discuss ideas and get help.

License

AGPL 3.0 License - see LICENSE for details.

常见问题

What is airstore?

airstore is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by beam-cloud. The filesystem for AI agents. It has 183 GitHub stars.

Is airstore safe to use?

Yes. airstore passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install airstore?

Clone the repository with "git clone https://github.com/beam-cloud/airstore" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is airstore written in?

airstore is primarily written in Go. It is open-source under beam-cloud on GitHub, so you can review or fork the full source.

Are there alternatives to airstore?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh airstore against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情