← Back to Skills Marketplace
284
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install watadot-aws-s3
Description
High-performance S3 management by Watadot Studio. Includes bucket orchestration, sync, and lifecycle management.
README (SKILL.md)
AWS S3 Skills
Advanced patterns for Amazon Simple Storage Service (S3) utilization.
🚀 Core Commands
Bucket Management
# List all buckets with creation date
aws s3api list-buckets --query "Buckets[].{Name:Name,Created:CreationDate}" --output table
# Create a bucket with specific region
aws s3 mb s3://\x3Cbucket-name> --region \x3Cregion>
High-Speed Synchronization
# Intelligent sync (only changed files)
aws s3 sync ./local-dir s3://\x3Cbucket-name>/path --delete --exclude "*.tmp"
# Concurrent upload tuning (performance)
aws configure set default.s3.max_concurrent_requests 20
Content Discovery & Filtering
# Find objects larger than 100MB
aws s3api list-objects-v2 --bucket \x3Cbucket-name> --query "Contents[?Size > \`104857600\`].[Key, Size]" --output json
# Total size of a prefix
aws s3 ls s3://\x3Cbucket-name>/prefix --recursive --human-readable --summarize | tail -n 2
🧠 Best Practices
- Least Privilege: Always use IAM policies that restrict access to specific buckets/prefixes.
- Versioning: Enable versioning for critical production data to prevent accidental deletions.
- Encrypted at Rest: Enforce SSE-S3 or SSE-KMS for all sensitive objects.
- Lifecycle Policies: Automate transition to S3 Glacier for aging assets to optimize cost.
Usage Guidance
This skill is coherent for S3 management, but before installing: ensure the host running the agent has the aws CLI and that any AWS credentials available to the agent are intentionally provided and scoped with least privilege (restrict to specific buckets/prefixes). Be cautious running commands like 'sync --delete' or bucket creation on production accounts — test on non-production data first. If you want the agent to run without exposing full account-level credentials, prefer an IAM role or a credentials set limited to the target buckets. Lastly, remember this is instruction-only: the agent will execute aws CLI commands using whatever AWS identity is present in its environment.
Capability Analysis
Type: OpenClaw Skill
Name: watadot-aws-s3
Version: 1.0.0
The watadot-aws-s3 skill bundle provides standard AWS CLI commands for managing S3 buckets, performing high-speed synchronization, and filtering objects. The instructions in SKILL.md are well-documented, align with the stated purpose, and include security best practices such as least privilege and encryption, with no signs of malicious intent or data exfiltration.
Capability Assessment
Purpose & Capability
Name and description claim S3 management and the SKILL.md contains aws CLI commands (bucket management, sync, lifecycle). Requiring the aws binary is appropriate and proportional to the declared purpose.
Instruction Scope
The instructions are narrowly scoped to S3 operations and best practices. They include potentially destructive operations (e.g., 'aws s3 mb', 'aws s3 sync --delete') — this is coherent with an S3 management tool but users should be aware these commands can create, overwrite, or delete objects if run with active credentials.
Install Mechanism
No install spec and no code files — instruction-only. This is low-risk and consistent with a CLI-guidance skill.
Credentials
The skill does not declare or request AWS credentials explicitly (no required env vars), but it implicitly depends on AWS credentials/config available to the aws CLI (environment variables, IAM role, or ~/.aws config). That is expected, but users should ensure the agent's credentials are scoped with least privilege.
Persistence & Privilege
always is false and the skill is user-invocable with normal autonomous invocation allowed. There is no request to modify other skills or system-wide settings.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install watadot-aws-s3 - After installation, invoke the skill by name or use
/watadot-aws-s3 - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of watadot-aws-s3:
- Provides advanced AWS S3 management with commands for bucket orchestration, high-speed sync, and lifecycle automation.
- Includes core usage examples for listing buckets, creating buckets, syncing directories, and filtering objects.
- Features best practice recommendations for security, versioning, encryption, and cost optimization.
- Requires AWS CLI to operate.
Metadata
Frequently Asked Questions
What is Watadot Aws S3?
High-performance S3 management by Watadot Studio. Includes bucket orchestration, sync, and lifecycle management. It is an AI Agent Skill for Claude Code / OpenClaw, with 284 downloads so far.
How do I install Watadot Aws S3?
Run "/install watadot-aws-s3" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Watadot Aws S3 free?
Yes, Watadot Aws S3 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Watadot Aws S3 support?
Watadot Aws S3 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Watadot Aws S3?
It is built and maintained by ordiy (@ordiy); the current version is v1.0.0.
More Skills