Agent Skills
› composio-community/awesome-agent-clis
› AWS CLI
AWS CLI
GitHub用于通过终端管理AWS服务,如EC2、S3、Lambda和IAM。适用于配置云基础设施、操作存储桶及调用函数等场景。
触发场景
需要配置或管理AWS云资源时
执行S3文件上传下载或EC2实例查询时
调用Lambda函数或管理IAM用户时
安装
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
版本历史
- 9f765d2 当前 2026-07-24 16:03


