Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

file-management文件管理

Agent Skill

file-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

1

下载量

107
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:file-management(文件管理)
来源仓库:https://github.com/cheehoolabs/spureeskills
仓库路径:skills/file-management
安装命令:
npx skills add https://github.com/cheehoolabs/spureeskills --skill file-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cheehoolabs/spureeskills --skill file-management

简介

File Management 管理云端存储中的文件与文件夹结构,支持全文检索与元数据更新。

  • 提供上传下载、重命名移动及冲突检测等功能,适配项目级协作需求。
  • 采用统一接口同时处理“项目”与“文件夹”两种实体类型。
  • 批量操作前务必校验用户权限范围,防止越权访问或数据泄露风险。
  • file-management 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

File Management

Overview

Spuree is an agent-friendly cloud storage. Projects contain folders (nestable) and files at any level. This skill manages files — they can live directly under a project or inside any folder. In the API, projects and folders are both called sessions (sessionType: creative_project = project, session = folder).

Use this skill when an agent needs to:

  • Search for files and folders by name across all projects
  • Get a file by ID with download URL
  • Upload new files to a project or folder
  • Update file metadata (rename, move) or content (with conflict detection)
  • Delete files (soft delete)

Authentication

Authorization: Bearer $SPUREE_ACCESS_TOKEN

Or: X-API-Key: $SPUREE_API_KEY. See the authentication skill.

Base URLs

Base URLEndpoints
https://data.spuree.com/api/v1/filesFile CRUD
https://data.spuree.com/api/v1/searchCross-project search

Endpoints

GET /v1/search

Search files and folders by name (case-insensitive substring match). Returns sessions first, then files.

Query Parameters:

ParameterTypeDefaultDescription
qstringSearch query (1–255 chars)
typestringFilter: "file" or "session". Omit for both.
workspaceIdstringRestrict results to a specific workspace
limitinteger100Max results (1–100)

Response: {"data": [...], "count": N}

Each result has type ("file" or "session") plus type-specific fields:

  • session: id, name, sessionType, workspaceId, createdAt, updatedAt
  • file: id, fileName, fileFormat, mimeType, size, workspaceId, sessionId, entitySessionId, createdAt, updatedAt
curl "https://data.spuree.com/api/v1/search?q=hero" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN"

GET /v1/files/{fileId}

Get file metadata and presigned download URL.

Response: {"data": {id, fileName, fileFormat, mimeType, size, workspaceId, sessionId, entitySessionId, downloadUrl, createdAt, updatedAt}}

curl "https://data.spuree.com/api/v1/files/{fileId}" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN"

POST /v1/files

Create a file record and get presigned upload URL(s). Automatically selects upload mode based on file size:

  • < 100 MB → single presigned PUT URL (mode: "single")
  • ≥ 100 MB → multipart upload with per-part presigned URLs (mode: "multipart")

The caller must then upload to S3 and call POST /v1/files/{fileId}/upload/complete. Without the complete call, the file remains pending and unusable.

Request Body:

FieldTypeRequiredDescription
fileNamestringYesFile name without extension
fileFormatstringYesExtension in lowercase (e.g., fbx, png)
fileSizeintegerYesFile size in bytes (accepts string for backward compat)
sessionIdstringYesTarget project or folder ObjectId
checksumstringNoCRC32 base64 (8 chars) for end-to-end verification. When provided, the presigned URL is signed with the checksum and S3 verifies the upload matches.

Response (single mode): {messageCode, fileId, mode: "single", uploadUrl, checksumBase64, contentType}

Response (multipart mode): {messageCode, fileId, mode: "multipart", parts: [{partNumber, startByte, endByte, url},...], totalParts, expiresAt}

CodeDescription
200Record created, presigned URL(s) returned
404Session not found
409File already exists
curl -X POST "https://data.spuree.com/api/v1/files" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"fileName":"hero_walk","fileFormat":"fbx","fileSize":5242880,"sessionId":"...","checksum":"AAAAAA=="}'

POST /v1/files/{fileId}/upload/complete

Mark a file upload as completed. Works for both single and multipart uploads — the server auto-detects by checking whether the file has an active multipart uploadId. For multipart, the server calls S3 ListParts to collect ETags and then CompleteMultipartUpload.

Request Body:

FieldTypeRequiredDescription
fileIdstringYesMust match path parameter
clientChecksumCRC32stringNoClient-computed CRC32 for end-to-end verification

Response: {messageCode, fileId, checksum, checksumCRC32}

  • checksum: S3-verified CRC32 (base64) for both single and multipart uploads
  • checksumCRC32: S3 FULL_OBJECT CRC32 (multipart only)
curl -X POST "https://data.spuree.com/api/v1/files/{fileId}/upload/complete" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"fileId": "..."}'

PATCH /v1/files/{fileId}

Update file metadata. At least one field required.

FieldTypeDescription
fileNamestringNew name (without extension)
fileFormatstringNew extension (lowercase)
checksumstringCRC32 base64 (write-once backfill, no edit permission needed)
sessionIdstringMove to target project or folder

Move: Only creative_project (project) and session (folder) targets supported.

Response: {messageCode, fileId}

CodeDescription
200Updated
409Filename conflict in target
curl -X PATCH "https://data.spuree.com/api/v1/files/{fileId}" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"fileName": "hero_run_cycle"}'

PUT /v1/files/{fileId}

Prepare a content update with optimistic concurrency. Acquires an upload lock. Like POST /v1/files, automatically selects single or multipart mode based on fileSize.

Request Body:

FieldTypeRequiredDescription
expectedChecksumstringYesCRC32 base64 of current content (for conflict detection)
newChecksumstringYesCRC32 base64 of new content to upload
fileSizeintegerNoSize in bytes. If ≥ 100 MB, returns multipart mode.

Response (single): {messageCode, fileId, mode: "single", uploadUrl, checksumBase64, contentType}

Response (multipart): {messageCode, fileId, mode: "multipart", parts: [{partNumber, startByte, endByte, url},...], totalParts, expiresAt}

After receiving the response, upload to S3 then call POST /v1/files/{fileId}/upload/complete.

Upload lock: Single uploads lock for 1 hour. Multipart uploads lock for 6 hours. Same user can re-acquire. Expired locks auto-release.

CodeDescription
200Lock acquired, presigned URL(s) returned
409Checksum mismatch or locked by another user
curl -X PUT "https://data.spuree.com/api/v1/files/{fileId}" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"expectedChecksum": "a1b2...","newChecksum": "f6e5..."}'

GET /v1/files/{fileId}/upload

Resume a multipart upload. Returns which parts are already in S3 and fresh presigned URLs for remaining parts.

Query Parameters:

ParameterTypeRequiredDescription
uploadIdstringNoClient's expected uploadId for mismatch detection
checksumstringNoClient's expected pendingChecksum for conflict detection

Response: {messageCode, fileId, completedParts: [{partNumber, etag, size},...], remainingParts: [{partNumber, startByte, endByte, url},...], totalParts}

CodeDescription
200Success
400No active multipart upload
409Not in pending status or locked by another user
curl "https://data.spuree.com/api/v1/files/{fileId}/upload" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN"

POST /v1/files/{fileId}/upload/urls

Refresh presigned URLs for specific parts of a multipart upload. Use when URLs have expired before upload completes.

Request Body: {"partNumbers": [1, 3, 5]} (1-indexed, min 1 part)

Response: {messageCode, urls: [{partNumber, startByte, endByte, url},...]}

CodeDescription
200Success
400No active multipart upload or invalid part numbers
curl -X POST "https://data.spuree.com/api/v1/files/{fileId}/upload/urls" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"partNumbers": [1, 3, 5]}'

DELETE /v1/files/{fileId}/upload

Abort a multipart upload. Cleans up S3 parts and marks the file as failed. Idempotent — safe to call on already-aborted uploads.

Response: {messageCode, fileId, message}

CodeDescription
200Aborted
400No active multipart upload
curl -X DELETE "https://data.spuree.com/api/v1/files/{fileId}/upload" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN"

DELETE /v1/files/{fileId}

Soft-delete a file.

Response: {messageCode, fileId}

curl -X DELETE "https://data.spuree.com/api/v1/files/{fileId}" \
  -H "Authorization: Bearer $SPUREE_ACCESS_TOKEN"

Common Patterns

Single Upload Flow (< 100 MB)

  1. Compute CRC32 checksum (base64): CHECKSUM=$(python3 -c "import base64, zlib, sys; print(base64.b64encode(zlib.crc32(open('$FILE_PATH','rb').read()).to_bytes(4,'big')).decode())")
  2. Create file recordsessionId is the target project or folder: POST /v1/files {fileName, fileFormat, fileSize, sessionId, checksum} → {fileId, mode: "single", uploadUrl, checksumBase64, contentType}
  3. Upload binary to S3: PUT {uploadUrl} Content-Type: {contentType} x-amz-checksum-crc32: {checksumBase64} Body: <file binary>
  4. Complete the upload — REQUIRED (file is not visible until this is called): POST /v1/files/{fileId}/upload/complete
Important: All three steps (create → S3 upload → complete) must be performed. Skipping complete leaves the file in a pending state.

Multipart Upload Flow (≥ 100 MB)

  1. Create file record with fileSize ≥ 100 MB: POST /v1/files {fileName, fileFormat, fileSize, sessionId, checksum} → {fileId, mode: "multipart", parts: [{partNumber, startByte, endByte, url},...], totalParts, expiresAt}
  2. Upload each part to its presigned URL: PUT {part.url} Content-Length: {part.endByte - part.startByte + 1} Body: <file slice from startByte to endByte>
  3. If interrupted, resume with GET /v1/files/{fileId}/upload to get completed parts and fresh URLs for remaining parts.
  4. If URLs expire, refresh with POST /v1/files/{fileId}/upload/urls for specific parts.
  5. Complete — server auto-detects multipart and calls S3 CompleteMultipartUpload: POST /v1/files/{fileId}/upload/complete
  6. To abort, call DELETE /v1/files/{fileId}/upload to clean up S3 parts.

Content Update Flow

  1. PUT /v1/files/{fileId} with checksums (and fileSize for multipart) → get upload URL(s)
  2. Upload new content to S3 (single or multipart, same as above)
  3. POST /v1/files/{fileId}/upload/completeREQUIRED

Viewing / Previewing a File

When a user wants to view, preview, or see a file:

  1. If the agent has browser tools (e.g., Chrome DevTools MCP), open the Studio preview URL directly: navigate_page → https://studio.spuree.com/file/{fileId}
  2. Otherwise, return the Studio preview URL for the user to click: https://studio.spuree.com/file/{fileId}

Do not download the file or attempt to open it locally. The Studio URL is permanent, permission-aware, and renders images, video, 3D, and other supported formats inline in the browser.

Use caseURLProperties
Share with user / previewhttps://studio.spuree.com/file/{fileId}Permanent, permission-aware, renders preview UI
Programmatic downloaddownloadUrl from GET /v1/files/{fileId}Short-lived presigned S3 URL — do not share, bypasses permissions and expires

Rule of thumb: after POST /v1/files (upload) or GET /v1/search, build the Studio URL from the returned fileId and return that to the user. Only fetch downloadUrl when the agent itself needs the bytes.

Search Then Download

  1. GET /v1/search?q=hero_walk → find file ID
  2. GET /v1/files/{fileId} → get downloadUrl
  3. Download from the presigned URL

File Organization

Projects and folders are both sessions. sessionId always refers to a session. Session types: creative_project (project), session (folder). Folders nest inside projects or other folders.

S3 key: works_{workspaceId}/sess_{sessionId}/file_{fileId}

Studio URLs

ResourceURL Pattern
Projecthttps://studio.spuree.com/projects/{projectId}
Folder (top-level)https://studio.spuree.com/projects/{projectId}/folders/{folderId}
Folder (nested).../folders/{parentId}/{childId} (up to 5 levels)
Filehttps://studio.spuree.com/file/{fileId}

Error Handling

CodeCauseResolution
400Invalid checksum format, missing fields, bad IDFix input format
403No workspace access or edit permissionCheck permissions
404File or session not foundVerify IDs
409 (checksum mismatch)File modified by another userRe-fetch checksum, retry
409 (upload lock)Another user is uploadingWait (lock expires in 1 hour for single, 6 hours for multipart)
409 (filename conflict)Same name exists in targetUse different name or target
401Invalid or expired tokenRefresh via authentication skill

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.44%
按下载量换算37

Claude

29.07%
按下载量换算31

Cursor

19%
按下载量换算20

Gemini CLI

8.78%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills