Agent Skills
› composio-community/awesome-agent-clis
› AWS CLI
AWS CLI
GitHub提供AWS CLI终端操作指南,涵盖EC2、S3、Lambda等服务管理。支持资源配置、存储桶管理及IAM用户列表等任务,适用于云基础设施的自动化运维与开发部署场景。
Trigger Scenarios
需要创建或管理AWS S3存储桶
需要启动或描述EC2实例
需要调用Lambda函数
需要配置IAM用户或权限
Install
npx skills add composio-community/awesome-agent-clis --skill AWS CLI -g -y
SKILL.md
Frontmatter
{
"name": "AWS CLI",
"description": "Manage AWS services — EC2, S3, Lambda, IAM, and more. Use when an agent needs to provision cloud infrastructure, manage S3 buckets, invoke Lambda functions, or configure AWS resources."
}
AWS CLI
Manage all AWS services from the terminal.
Installation
brew install awscli
aws configure
Key Commands
aws s3 ls
aws s3 cp file.txt s3://bucket/file.txt
aws ec2 describe-instances --output json
aws lambda invoke --function-name myFunc output.json
aws iam list-users --output json
aws sts get-caller-identity
Agent-Friendly Features
--output jsonfor structured output (alsotext,table)- Profile-based auth (
--profile) - Environment variable auth (
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY) --queryfor JMESPath filtering--no-cli-pagerto disable interactive paging
Version History
- 9f765d2 Current 2026-07-24 16:03


