AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Storage

skill-lightpointventures-claude-code-starter-storage · by lightpointventures

当用户想加文件上传、上传图片、上传文档、配置云存储时使用 — 添加文件上传和存储功能

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-lightpointventures-claude-code-starter-storage

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-lightpointventures-claude-code-starter-storage)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Storage? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

添加文件上传

帮用户为项目添加文件上传和存储功能。

步骤

1. 了解需求

问题 1:上传什么文件 > 用户需要上传什么? > - 图片(头像、产品图) > - 文档(PDF、Word) > - 通用文件 > 这决定了需要的文件验证和处理逻辑。

问题 2:存储方案 > 文件存在哪里? > - 本地存储(最简单,适合开发和小项目) > - Cloudflare R2(便宜,兼容 S3 API,推荐生产用) > - AWS S3(成熟稳定,企业首选) > - Supabase Storage(如果已经用 Supabase) > 不确定就先用本地存储,后面再换。

2. 生成上传功能

后端:

  • 上传接口 — 接收文件,验证类型和大小
  • 文件验证 — 限制文件类型(白名单)、大小上限
  • 存储逻辑 — 保存到选定的存储位置
  • 文件 URL — 返回可访问的文件地址

前端:

  • 上传组件 — 拖拽上传 + 点击选择
  • 上传进度 — 进度条显示
  • 预览 — 图片类文件支持上传前预览
  • 错误提示 — 文件太大、格式不对等

安全措施:

  • 文件名随机化,防止路径穿越
  • 文件类型服务端二次验证
  • 设置合理的大小上限

3. 测试

上传一个测试文件,确认可以上传、预览和下载。

> 文件上传功能已添加。 > 如果需要图片裁剪或压缩,告诉我。

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.