aws-connector

Install and configure the AWS CLI with access-key or SSO authentication.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/selrai-company/claude-workshop-kit --skill aws-connector
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aws-connector
Source: https://github.com/selrai-company/claude-workshop-kit/tree/main/skills/aws-connector
Command: npx skills add https://github.com/selrai-company/claude-workshop-kit --skill aws-connector

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill simplifies installing and configuring the AWS CLI on a user's laptop so they can interact with AWS services locally without manual troubleshooting.

Core Features & Use Cases

  • OS-aware installation: Guides macOS, Linux (x86/ARM), and Windows installs using Homebrew, official installers, or winget.
  • Credential configuration: Walks through aws configure for access keys or aws configure sso for SSO and verifies identity with aws sts get-caller-identity.
  • Common operations: Provides starter commands for listing S3 buckets, inspecting EC2 instances, invoking Lambda functions, scanning DynamoDB tables, and managing profiles.
  • Use Case: A developer or ops user who needs a quick, secure local setup to sync S3 data, manage instances, or deploy serverless code from their laptop.

Quick Start

Run the aws-connector skill to install the AWS CLI, configure credentials or SSO, and verify your account with a caller-identity check.

Frequently Asked Questions about aws-connector

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

FAQPage Schema
How do I install and configure the AWS CLI on my laptop?

Installing and configuring the AWS CLI requires detecting your OS to use the appropriate installer or package manager, then running aws configure or aws configure sso to set up credentials for local access.

Can I set up AWS SSO authentication using the AWS CLI?

Yes, you can set up AWS SSO by running the aws configure sso command. This configures your profile to use single sign-on, providing secure access to AWS services without managing long-term access keys.

Does AWS CLI installation work on macOS, Linux, and Windows?

Yes, AWS CLI installation supports macOS, Linux x86/ARM, and Windows by utilizing platform-specific package managers like Homebrew and winget or official downloaders to ensure proper local setup.

How do I verify my AWS credentials are working after setup?

To verify your AWS credentials are working, run the aws sts get-caller-identity command. This checks your authentication profile and confirms your identity locally without exposing your secret access keys.

What AWS services can I manage locally after configuring the AWS CLI?

After configuring the AWS CLI, you can interact with S3, EC2, Lambda, DynamoDB, and IAM services. You can run commands to list S3 buckets, inspect EC2 instances, and invoke Lambda functions locally.