LaunchKit · 2026
Back to Skills

aifs-space

Store and retrieve files via AIFS.space cloud storage API.

2
2.7k downloads
by @deploydon

Setup & Installation

openclaw skills install @deploydon/aifs-space

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install aifs-space

What This Skill Does

AIFS.space is a cloud file storage service with a simple HTTP REST API. It lets agents read, write, patch, and delete files across sessions using an API key. Supports directory organization up to 20 levels deep and partial file reads by line range.

Unlike local file storage, AIFS persists data across sessions and machines without any infrastructure setup beyond an API key.

When to use it

  • Saving session notes that persist after a conversation ends
  • Sharing files between multiple agents working on the same project
  • Logging events to a running log file across multiple sessions
  • Organizing project documents in folder structures
  • Retrieving previously stored data at the start of a new session

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Save my meeting notes to the cloud and retrieve them next session

AGENT
  1. 1Check for AIFS_API_KEY in environment
  2. 2Write notes to a dated path like sessions/2026-03-13.md via POST to /api/write
  3. 3Confirm success by checking the returned size and path
  4. 4On next session, list files via /api/files to locate the notes
  5. 5Read the file back via /api/read with the stored path
OUTPUT

Meeting notes saved to sessions/2026-03-13.md and retrieved on demand in future sessions

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

AIFS_API_KEY environment variableAIFS.space account (sign up at https://AIFS.Space)