s3-management — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited s3-management (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when you need to manage S3 buckets, browse objects, upload/download files, or generate presigned URLs.
| Tool | What it does |
|---|---|
list_buckets | List all S3 buckets in the AWS account |
list_objects | List objects in a bucket with optional prefix filter |
get_object | Download and read an object's content as text |
put_object | Upload text content to an S3 object |
delete_object | Delete an object from a bucket |
presigned_url | Generate a temporary presigned URL for an object |
bucket_info | Check if a bucket exists and get basic info |
list_buckets to discover available bucketslist_objects with a prefix to browse directories within a bucketget_object reads text content — for binary files, use presigned_url insteadpresigned_url generates a temporary shareable link (default 1 hour expiry)list_objects uses prefix-based filtering (S3 doesn't have real directories): prefix: "uploads/2026/"get_object returns text content only — it won't work for images, binaries, or large filesput_object takes string content — use it for config files, JSON, text, not binary uploadspresigned_url is the right tool for sharing files or accessing binary contentdelete_object — S3 deletions are permanent (unless versioning is enabled)put_object to an existing key — it overwrites without warning~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.