{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/aifs-space",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aifs-space",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/aifs-space",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AIFS - AI File System",
        "body": "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."
      },
      {
        "title": "Human",
        "body": "A human should sign up on https://AIFS.Space and get an API key to provide to you."
      },
      {
        "title": "Authentication",
        "body": "Requires API key in headers. Check for key in environment (AIFS_API_KEY) or user config.\n\nAuthorization: Bearer aifs_xxxxx\n\nKey types: admin (full), read-write, read-only, write-only"
      },
      {
        "title": "Base URL",
        "body": "https://aifs.space"
      },
      {
        "title": "List Files",
        "body": "curl -H \"Authorization: Bearer $AIFS_API_KEY\" https://aifs.space/api/files\n\nReturns: {\"files\": [{\"path\": \"notes/todo.txt\", \"size\": 1024, \"modifiedAt\": \"...\"}]}"
      },
      {
        "title": "Read File",
        "body": "# Full file\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/read?path=notes/todo.txt\"\n\n# Line range (1-indexed)\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/read?path=notes/todo.txt&start_line=5&end_line=10\"\n\nReturns: {\"path\": \"...\", \"content\": \"...\", \"total_lines\": 42, \"returned_lines\": 10}"
      },
      {
        "title": "Write File",
        "body": "Creates directories automatically (max depth: 20).\n\ncurl -X POST -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/new.txt\",\"content\":\"Hello world\"}' \\\n  https://aifs.space/api/write\n\nReturns: {\"success\": true, \"path\": \"...\", \"size\": 11, \"lines\": 1}"
      },
      {
        "title": "Patch File (Line Replace)",
        "body": "Update specific lines without rewriting entire file.\n\ncurl -X PATCH -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/todo.txt\",\"start_line\":5,\"end_line\":10,\"content\":\"replacement\"}' \\\n  https://aifs.space/api/patch\n\nReturns: {\"success\": true, \"lines_before\": 42, \"lines_after\": 38}"
      },
      {
        "title": "Delete File",
        "body": "curl -X DELETE -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/old.txt\"}' \\\n  https://aifs.space/api/delete"
      },
      {
        "title": "Summary (Preview)",
        "body": "Get first 500 chars of a file.\n\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/summary?path=notes/long.txt\""
      },
      {
        "title": "Rate Limits",
        "body": "60 requests/minute per key. Check headers:\n\nX-RateLimit-Limit / X-RateLimit-Remaining / X-RateLimit-Reset"
      },
      {
        "title": "Error Codes",
        "body": "CodeMeaningAUTH_REQUIREDNo auth providedAUTH_FAILEDInvalid keyFORBIDDENKey type lacks permissionRATE_LIMITEDToo many requestsNOT_FOUNDFile doesn't existINVALID_PATHPath traversal or invalidDEPTH_EXCEEDEDDirectory depth > 20"
      },
      {
        "title": "Persist session notes",
        "body": "# Save\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d \"{\\\"path\\\":\\\"sessions/$(date +%Y-%m-%d).md\\\",\\\"content\\\":\\\"# Session Notes\\\\n...\\\"}\" \\\n  https://aifs.space/api/write\n\n# Retrieve\ncurl -H \"Authorization: Bearer $KEY\" \"https://aifs.space/api/read?path=sessions/2024-01-15.md\""
      },
      {
        "title": "Organize by project",
        "body": "projects/\n├── alpha/\n│   ├── README.md\n│   └── notes.md\n└── beta/\n    └── spec.md"
      },
      {
        "title": "Append to log (read + write)",
        "body": "# Read existing\nEXISTING=$(curl -s -H \"Authorization: Bearer $KEY\" \"https://aifs.space/api/read?path=log.txt\" | jq -r .content)\n\n# Append and write back\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d \"{\\\"path\\\":\\\"log.txt\\\",\\\"content\\\":\\\"$EXISTING\\\\n$(date): New entry\\\"}\" \\\n  https://aifs.space/api/write"
      }
    ],
    "body": "AIFS - AI File System\n\nAIFS.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.\n\nHuman\n\nA human should sign up on https://AIFS.Space and get an API key to provide to you.\n\nAuthentication\n\nRequires API key in headers. Check for key in environment (AIFS_API_KEY) or user config.\n\nAuthorization: Bearer aifs_xxxxx\n\n\nKey types: admin (full), read-write, read-only, write-only\n\nBase URL\nhttps://aifs.space\n\nEndpoints\nList Files\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" https://aifs.space/api/files\n\n\nReturns: {\"files\": [{\"path\": \"notes/todo.txt\", \"size\": 1024, \"modifiedAt\": \"...\"}]}\n\nRead File\n# Full file\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/read?path=notes/todo.txt\"\n\n# Line range (1-indexed)\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/read?path=notes/todo.txt&start_line=5&end_line=10\"\n\n\nReturns: {\"path\": \"...\", \"content\": \"...\", \"total_lines\": 42, \"returned_lines\": 10}\n\nWrite File\n\nCreates directories automatically (max depth: 20).\n\ncurl -X POST -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/new.txt\",\"content\":\"Hello world\"}' \\\n  https://aifs.space/api/write\n\n\nReturns: {\"success\": true, \"path\": \"...\", \"size\": 11, \"lines\": 1}\n\nPatch File (Line Replace)\n\nUpdate specific lines without rewriting entire file.\n\ncurl -X PATCH -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/todo.txt\",\"start_line\":5,\"end_line\":10,\"content\":\"replacement\"}' \\\n  https://aifs.space/api/patch\n\n\nReturns: {\"success\": true, \"lines_before\": 42, \"lines_after\": 38}\n\nDelete File\ncurl -X DELETE -H \"Authorization: Bearer $AIFS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"path\":\"notes/old.txt\"}' \\\n  https://aifs.space/api/delete\n\nSummary (Preview)\n\nGet first 500 chars of a file.\n\ncurl -H \"Authorization: Bearer $AIFS_API_KEY\" \"https://aifs.space/api/summary?path=notes/long.txt\"\n\nRate Limits\n\n60 requests/minute per key. Check headers:\n\nX-RateLimit-Limit / X-RateLimit-Remaining / X-RateLimit-Reset\nError Codes\nCode\tMeaning\nAUTH_REQUIRED\tNo auth provided\nAUTH_FAILED\tInvalid key\nFORBIDDEN\tKey type lacks permission\nRATE_LIMITED\tToo many requests\nNOT_FOUND\tFile doesn't exist\nINVALID_PATH\tPath traversal or invalid\nDEPTH_EXCEEDED\tDirectory depth > 20\nCommon Patterns\nPersist session notes\n# Save\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d \"{\\\"path\\\":\\\"sessions/$(date +%Y-%m-%d).md\\\",\\\"content\\\":\\\"# Session Notes\\\\n...\\\"}\" \\\n  https://aifs.space/api/write\n\n# Retrieve\ncurl -H \"Authorization: Bearer $KEY\" \"https://aifs.space/api/read?path=sessions/2024-01-15.md\"\n\nOrganize by project\nprojects/\n├── alpha/\n│   ├── README.md\n│   └── notes.md\n└── beta/\n    └── spec.md\n\nAppend to log (read + write)\n# Read existing\nEXISTING=$(curl -s -H \"Authorization: Bearer $KEY\" \"https://aifs.space/api/read?path=log.txt\" | jq -r .content)\n\n# Append and write back\ncurl -X POST -H \"Authorization: Bearer $KEY\" -H \"Content-Type: application/json\" \\\n  -d \"{\\\"path\\\":\\\"log.txt\\\",\\\"content\\\":\\\"$EXISTING\\\\n$(date): New entry\\\"}\" \\\n  https://aifs.space/api/write"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Deploydon/aifs-space",
    "publisherUrl": "https://clawhub.ai/Deploydon/aifs-space",
    "owner": "Deploydon",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}