# Send AIFS - HTTP File system to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "aifs-space",
    "name": "AIFS - HTTP File system",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Deploydon/aifs-space",
    "canonicalUrl": "https://clawhub.ai/Deploydon/aifs-space",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/aifs-space",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aifs-space",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "aifs-space",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:42:07.990Z",
      "expiresAt": "2026-05-06T04:42:07.990Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aifs-space",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aifs-space",
        "contentDisposition": "attachment; filename=\"aifs-space-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "aifs-space"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/aifs-space"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/aifs-space",
    "downloadUrl": "https://openagent3.xyz/downloads/aifs-space",
    "agentUrl": "https://openagent3.xyz/skills/aifs-space/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aifs-space/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aifs-space/agent.md"
  }
}
```
## Documentation

### 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.

Authorization: Bearer aifs_xxxxx

Key types: admin (full), read-write, read-only, write-only

### Base URL

https://aifs.space

### List Files

curl -H "Authorization: Bearer $AIFS_API_KEY" https://aifs.space/api/files

Returns: {"files": [{"path": "notes/todo.txt", "size": 1024, "modifiedAt": "..."}]}

### Read File

# 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).

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.

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

curl -X DELETE -H "Authorization: Bearer $AIFS_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"path":"notes/old.txt"}' \\
  https://aifs.space/api/delete

### Summary (Preview)

Get first 500 chars of a file.

curl -H "Authorization: Bearer $AIFS_API_KEY" "https://aifs.space/api/summary?path=notes/long.txt"

### Rate Limits

60 requests/minute per key. Check headers:

X-RateLimit-Limit / X-RateLimit-Remaining / X-RateLimit-Reset

### Error Codes

CodeMeaningAUTH_REQUIREDNo auth providedAUTH_FAILEDInvalid keyFORBIDDENKey type lacks permissionRATE_LIMITEDToo many requestsNOT_FOUNDFile doesn't existINVALID_PATHPath traversal or invalidDEPTH_EXCEEDEDDirectory depth > 20

### Persist session notes

# Save
curl -X POST -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \\
  -d "{\\"path\\":\\"sessions/$(date +%Y-%m-%d).md\\",\\"content\\":\\"# Session Notes\\\\n...\\"}" \\
  https://aifs.space/api/write

# Retrieve
curl -H "Authorization: Bearer $KEY" "https://aifs.space/api/read?path=sessions/2024-01-15.md"

### Organize by project

projects/
├── alpha/
│   ├── README.md
│   └── notes.md
└── beta/
    └── spec.md

### Append to log (read + write)

# Read existing
EXISTING=$(curl -s -H "Authorization: Bearer $KEY" "https://aifs.space/api/read?path=log.txt" | jq -r .content)

# Append and write back
curl -X POST -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \\
  -d "{\\"path\\":\\"log.txt\\",\\"content\\":\\"$EXISTING\\\\n$(date): New entry\\"}" \\
  https://aifs.space/api/write
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Deploydon
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T04:42:07.990Z
- Expires at: 2026-05-06T04:42:07.990Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aifs-space)
- [Send to Agent page](https://openagent3.xyz/skills/aifs-space/agent)
- [JSON manifest](https://openagent3.xyz/skills/aifs-space/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aifs-space/agent.md)
- [Download page](https://openagent3.xyz/downloads/aifs-space)