Overview
- Skill Key
- deploydon/aifs-space
- Author
- deploydon
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/deploydon/aifs-space
- Latest Commit SHA
- 03d7f7a4ef41efca374cf7d7aacb0bf9e3c497bc
Store and retrieve files via AIFS.space cloud storage API. Use when persisting notes, documents, or data to the cloud; syncing files across sessions; or when the user mentions AIFS, aifs.space, or cloud file storage. Not to be used for any sensitive content.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 aifs 技能。 若已安装,则直接安装 aifs 技能。
# AIFS - AI File System
AIFS.space is a simple HTTP REST API for cloud file storage. Use it to persist files across sessions, share data between agents, or store user content in the cloud.
## Human
A human should sign up on https://AIFS.Space and get an API key to provide to you.
## Authentication
Requires API key in headers. Check for key in environment (`AIFS_API_KEY`) or user config.
```bash
Authorization: Bearer aifs_xxxxx
```
**Key types:** `admin` (full), `read-write`, `read-only`, `write-only`
## Base URL
```
https://aifs.space
```
## Endpoints
### List Files
```bash
curl -H "Authorization: Bearer $AIFS_API_KEY" https://aifs.space/api/files
```
Returns: `{"files": [{"path": "notes/todo.txt", "size": 1024, "modifiedAt": "..."}]}`
### Read File
```bash
# Full file
curl -H "Authorization: Bearer $AIFS_API_KEY" "https://aifs.space/api/read?path=notes/todo.txt"
# Line range (1-indexed)
curl -H "Authorization: Bearer $AIFS_API_KEY" "https://aifs.space/api/read?path=notes/todo.txt&start_line=5&end_line=10"
```
Returns: `{"path": "...", "content": "...", "total_lines": 42, "returned_lines": 10}`
### Write File
Creates directories automatically (max depth: 20).
```bash
curl -X POST -H "Authorization: Bearer $AIFS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"path":"notes/new.txt","content":"Hello world"}' \
https://aifs.space/api/write
```
Returns: `{"success": true, "path": "...", "size": 11, "lines": 1}`
### Patch File (Line Replace)
Update specific lines without rewriting entire file.
```bash
curl -X PATCH -H "Authorization: Bearer $AIFS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"path":"notes/todo.txt","start_line":5,"end_line":10,"content":"replacement"}' \
https://aifs.space/api/patch
```
Returns: `{"success": true, "lines_before": 42, "lines_after": 38}`
### Delete File
```bash
curl -X DELETE -H "Authorization: Bearer $AIFS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"path":"notes/old.txt"...
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.
capt-marbles
Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carlosarturoleon
Connect to Windsor.ai MCP for natural language access to 325+ data sources including Facebook Ads, GA4, HubSpot, Shopify, and more.