laravel:filesystem-uploads

SkillFiles & storage

Store and serve files via Storage; set visibility, generate URLs, and handle streaming safely

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the laravel:filesystem-uploads skill

What this skill tells your AI

The instructions your AI receives, as published by jpcaparas/superpowers-laravel in skills/filesystem-uploads-and-urls/SKILL.md and read by ahel’s review.

Use the Storage facade consistently; abstract away the backend (local, S3, etc.).

Commands

$path = Storage::disk('public')->putFile('avatars', $request->file('avatar'));

// Temporary URLs (S3, etc.)
$url = Storage::disk('s3')->temporaryUrl($path, now()->addMinutes(10));

// Streams
return Storage::disk('backups')->download('db.sql.gz');

Patterns

  • Keep user uploads under a dedicated disk with explicit visibility
  • Avoid assuming local paths; always go through Storage
  • For public assets, run storage:link and serve via web server / CDN
  • Validate mime/types and size limits at upload boundaries

Signals

GitHub stars
154
Forks
2
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
laravel-filesystem-uploads
Source
github.com/jpcaparas/superpowers-laravel