aws

Manage Amazon Web Services cloud infrastructure with AWS CLI and CloudFormation.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/vTajae/0x000026 --skill aws-vtajae
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws
Source: https://github.com/vTajae/0x000026/tree/main/crates/openfang-skills/bundled/aws
Command: npx skills add https://github.com/vTajae/0x000026 --skill aws-vtajae

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides expert guidance for architecting, deploying, and managing services on Amazon Web Services, simplifying complex cloud operations.

Core Features & Use Cases

  • Comprehensive Service Coverage: Expert advice on EC2, S3, Lambda, IAM, VPC, RDS, and more.
  • Best Practices Enforcement: Guidance on security, cost management, and infrastructure as code.
  • Use Case: A user needs to set up a secure S3 bucket for public website assets. This Skill will guide them through creating the bucket, configuring public access policies, enabling versioning, and setting up CloudFront for optimal delivery.

Quick Start

Use the aws skill to help me create a new EC2 instance in the us-east-1 region.

Frequently Asked Questions about aws

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a secure S3 bucket for public website assets?

To set up a secure S3 bucket for public website assets, create the bucket, configure public access policies, enable versioning, and set up CloudFront for optimal content delivery. This approach ensures secure, scalable static hosting.

What is the best way to manage AWS cloud infrastructure using code?

The best way to manage AWS cloud infrastructure using code is through infrastructure as code principles using AWS CloudFormation or CDK. This enforces best practices for security, cost optimization, and repeatable deployments.

How do I create a new EC2 instance in a specific AWS region?

To create a new EC2 instance in a specific AWS region, use the AWS CLI or console to select your desired region, configure instance specifications, and launch. Ensure IAM security policies are properly configured before deployment.

Can I use AWS CDK and CloudFormation together for deployment?

Yes, you can use AWS CDK and CloudFormation together for deployment. CDK synthesizes into CloudFormation templates, allowing you to define infrastructure programmatically while leveraging CloudFormation's robust deployment and rollback capabilities.

Does this guidance cover IAM security and cost optimization for serverless services?

Yes, this guidance covers IAM security and cost optimization for serverless services like Lambda. It emphasizes security best practices, compute management, and cost-effective architecture across compute, storage, networking, and serverless environments.

When should I use AWS Lambda instead of EC2 for compute workloads?

You should use AWS Lambda instead of EC2 for event-driven, short-lived compute workloads. Lambda provides serverless execution without managing underlying instances, optimizing costs for intermittent tasks compared to continuously running EC2 servers.