Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

uploadthing-nextjsuploadthing Next.js 安全

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

783

周安装

32

GitHub Stars

2

下载量

253
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/flohhhhh/skills --skill uploadthing-nextjs

简介

UploadThing 管理文件上传和存储。

  • Next.js 提供路由和集成界面。
  • 将上传规则保留在文件路由器中。在中间件中保留授权。将文件元数据保存在数据库中。
  • 参考文献
  • https://docs.uploadthing.com/
  • https://docs.uploadthing.com/getting-started
  • https://docs.uploadthing.com/file-routes
  • https://docs.uploadthing.com/api-reference
  • 每周安装量
  • 32
  • 存储库
  • 啊啊啊/技能
  • GitHub 之星
  • 2
  • 第一次看到
  • 6 天前
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

UploadThing Integration (Next.js)

UploadThing provides a type-safe, direct-to-storage file upload system designed for modern TypeScript web apps.


When To Use

Use UploadThing when your application needs:

  • Secure user file uploads
  • Type-safe upload workflows
  • Per-feature upload permissions and validation
  • React/Next.js-friendly upload components
  • Storage abstraction without building a custom upload pipeline

When NOT To Use

Avoid or reconsider if:

  • You need deep, multi-stage processing pipelines before storage
  • You require full control over streaming binary data server-side
  • Your architecture requires storage provider APIs as the primary data source instead of your database

Core Concepts

File Router

Defines all upload routes for the application.

Each route defines:

  • Allowed file types
  • File limits and size rules
  • Authentication checks
  • Metadata handling
  • Post-upload processing

File Route

Represents a single upload use-case.

Examples:

  • User avatar uploads
  • Vehicle listing images
  • Message attachments
  • Document uploads

Middleware

Runs before upload begins.

Used for:

  • Authentication
  • Authorization
  • Metadata tagging
  • Rejecting invalid uploads

Upload Completion Handler

Runs after a file successfully uploads.

Used for:

  • Saving metadata to database
  • Linking files to domain entities
  • Triggering async processing
  • Sending notifications

UTApi

Server-side UploadThing SDK.

Used for:

  • Uploading files programmatically
  • Deleting files
  • Listing files (admin/debug only)
  • Generating signed URLs for private file access

Installation

npm install uploadthing @uploadthing/react

Environment Variables

# .env
UPLOADTHING_SECRET=sk_live_...
UPLOADTHING_APP_ID=your_app_id

Suggested File Structure

app/
  api/
    uploadthing/
      core.ts        # File router definition
      route.ts       # API route handlers
src/
  utils/
    uploadthing.ts   # Typed components
  components/
    upload-button.tsx
.env                 # UploadThing credentials

File Router

Location: app/api/uploadthing/core.ts

import { createUploadthing, type FileRouter } from "uploadthing/next";
import { auth } from "@/lib/auth";

const f = createUploadthing();

export const uploadRouter = {
  imageUploader: f({ image: { maxFileSize: "4MB", maxFileCount: 1 } })
    .middleware(async ({ req }) => {
      const user = await auth();
      if (!user) throw new Error("Unauthorized");
      return { userId: user.id };
    })
    .onUploadComplete(async ({ metadata, file }) => {
      console.log("Upload complete for userId:", metadata.userId);
      console.log("File URL:", file.url);
      // Save to database here
      return { uploadedBy: metadata.userId };
    }),
} satisfies FileRouter;

export type OurFileRouter = typeof uploadRouter;

Route Handler

Location: app/api/uploadthing/route.ts

import { createRouteHandler } from "uploadthing/next";
import { uploadRouter } from "./core";

export const { GET, POST } = createRouteHandler({
  router: uploadRouter,
});

Typed Upload Components

Location: src/utils/uploadthing.ts

import {
  generateUploadButton,
  generateUploadDropzone,
} from "@uploadthing/react";
import type { OurFileRouter } from "@/app/api/uploadthing/core";

export const UploadButton = generateUploadButton<OurFileRouter>();
export const UploadDropzone = generateUploadDropzone<OurFileRouter>();

Using Upload Components

"use client";

import { UploadButton } from "@/utils/uploadthing";

export function MyUploadButton() {
  return (
    <UploadButton
      endpoint="imageUploader"
      onClientUploadComplete={(res) => {
        console.log("Files: ", res);
        alert("Upload Completed");
      }}
      onUploadError={(error: Error) => {
        alert(`ERROR! ${error.message}`);
      }}
    />
  );
}

Tailwind Integration (Optional)

import { withUt } from "uploadthing/tw";

export default withUt({
  // your tailwind config
  content: ["./src/**/*.{ts,tsx}"],
  theme: { extend: {} },
  plugins: [],
});

Optional — SSR Upload Config Optimization

// next.config.js
import { withUT } from "uploadthing/nextjs";

export default withUT({
  // your Next.js config
});

Database Integration Pattern

After upload completes, the application should:

  1. Store UploadThing file identifier
  2. Store public or signed file URL
  3. Store ownership metadata
  4. Link file to domain entity (post, profile, asset, etc.)
.onUploadComplete(async ({ metadata, file }) => {
  await db.insert(uploads).values({
    userId: metadata.userId,
    fileKey: file.key,
    fileUrl: file.url,
    fileName: file.name,
    fileSize: file.size,
  });

  return { success: true };
})

Upload Strategies

Client Uploads (Recommended)

Process:

  1. Client requests upload authorization
  2. Server returns presigned upload URL
  3. Client uploads directly to storage
  4. Upload completion handler runs server logic

Server Uploads (UTApi)

Used when:

  • Uploading files from server jobs
  • Migrating files
  • Handling admin tools
  • Accepting files through server actions
import { UTApi } from "uploadthing/server";

const utapi = new UTApi();

export async function uploadFromServer(file: File) {
  const response = await utapi.uploadFiles(file);
  return response.data;
}

Private File Access Pattern

Private files should be accessed via signed URLs.

import { UTApi } from "uploadthing/server";

const utapi = new UTApi();

export async function getPrivateFileUrl(fileKey: string) {
  const url = await utapi.getSignedURL(fileKey, { expiresIn: "1h" });
  return url;
}

Security Best Practices

  • Always authenticate inside upload middleware
  • Store ownership and file metadata in database
  • Create multiple specialized upload routes
  • Avoid global “upload everything” routes
  • Validate domain associations during upload completion

Operational Best Practices

  • Log file key and storage URL
  • Make database writes idempotent
  • Prefer storing metadata locally instead of querying storage provider
  • Restrict file sizes and counts per route
  • Separate public and private upload routes

Common Mistakes

  • Using untyped UploadThing components
  • Forgetting client component directives
  • Skipping database metadata storage
  • Allowing overly permissive upload routes
  • Relying on storage provider APIs as primary data source

Summary

UploadThing manages file uploads and storage.

Next.js provides routing and integration surfaces.

Keep upload rules in the file router. Keep authorization in middleware. Keep file metadata in your database.


References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.12%
按下载量换算89

Claude

30%
按下载量换算76

Cursor

17.36%
按下载量换算44

Gemini CLI

8.43%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills