dragoon0x/everything-design-taste

file-upload-patterns

File upload interfaces, progress indication, file type validation, and multi-file upload.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill file-upload-patterns

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,030 B
  • docs SUMMARY.md 117 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

File Upload Patterns

Upload Patterns

Single File

  • Button: "Choose File" or styled dropzone.
  • Show filename + size after selection.
  • Progress bar during upload.
  • Success: checkmark + filename. Error: red text + retry.

Multi-File

  • Drag and drop zone with file list below.
  • Individual progress bars per file.
  • Allow removing files before/during upload.
  • Show total progress: "3 of 7 files uploaded."

Image Upload

  • Preview thumbnail after selection.
  • Crop/resize tool for profile photos.
  • Max size warning before upload starts.
  • Format validation: show accepted formats.

Validation

  • Check file type on selection (before upload).
  • Check file size on selection (before upload).
  • Show accepted formats near the upload control.
  • Server-side validation as backup (never trust client only).