首页龙虾技能列表 › Watadot Aws Lambda — 技能工具

Watadot Aws Lambda — 技能工具

v1.0.0

[自动翻译] Serverless compute orchestration by Watadot Studio. Manage functions, triggers, and cloud rendering.

0· 183·0 当前·0 累计
by @ordiy·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/17
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill is internally consistent: it provides AWS Lambda CLI instructions and only requires the aws CLI (and whatever AWS credentials the environment already provides) to operate — nothing unrelated is requested.
评估建议
This skill is a set of AWS CLI recipes for managing Lambda and is coherent with its description. Before using it: (1) confirm your aws CLI is configured to the intended AWS account and region (and, if applicable, the intended profile); (2) give the agent only IAM credentials with least privilege — avoid using root or overly broad keys; (3) be cautious when running update-function-code or update-function-configuration commands (they change live functions); (4) if you do not want the agent to run ...
详细分析 ▾
用途与能力
Name/description match the content: SKILL.md contains AWS CLI commands for listing, invoking, updating, and configuring Lambda functions and sensible best-practice notes. The required binary (aws) is appropriate for the stated purpose.
指令范围
Instructions are narrowly scoped to Lambda management (list, invoke, update code/config, concurrency). They do not reference unrelated files, external endpoints, or unexpected environment variables.
安装机制
No install spec and no code files — instruction-only skill. This minimizes disk-write/remote-code risk.
凭证需求
The skill declares no env vars but requires the aws CLI; the CLI will use standard AWS credentials (environment variables, ~/.aws/credentials, or instance/profile role). This is expected but important: the skill will act with whatever AWS credentials are available, so ensure least-privilege credentials and correct target account/region.
持久化与权限
always is false and the skill has no install step that modifies other skills or global configs. Normal autonomous invocation is allowed (platform default) and is not, by itself, a red flag here.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/16

Initial release of watadot-aws-lambda—serverless compute orchestration by Watadot Studio. - Provides CLI commands for AWS Lambda function lifecycle management, deployment, and performance tuning. - Covers listing, invoking, updating code/configuration, and monitoring concurrency. - Includes best practices for layer management, execution timeouts, IAM roles, and monitoring. - Requires AWS CLI for operation.

● 无害

安装命令 点击复制

官方npx clawhub@latest install watadot-aws-lambda
镜像加速npx clawhub@latest install watadot-aws-lambda --registry https://cn.clawhub-mirror.com

技能文档

Architectural patterns for serverless execution and orchestration.

🚀 Core Commands

Function Lifecycle

# List all functions with runtime and memory info
aws lambda list-functions --query "Functions[].{Name:FunctionName,Runtime:Runtime,Memory:MemorySize}" --output table

# Invoke a function synchronously with payload aws lambda invoke --function-name --payload '{"key": "value"}' --cli-binary-format raw-in-base64-out response.json

Deployment & Configuration

# Update function code via ZIP
aws lambda update-function-code --function-name  --zip-file fileb://function.zip

# Update environment variables aws lambda update-function-configuration --function-name --environment "Variables={KEY=VALUE,ENV=PROD}"

Performance & Scaling

# Check concurrency limits and usage
aws lambda get-account-settings --query "AccountLimit"

# Put provisioned concurrency (warm start optimization) aws lambda put-provisioned-concurrency-config --function-name --qualifier --provisioned-concurrent-executions 5

🧠 Best Practices

  • Layer Management: Offload heavy dependencies (like FFmpeg or Chromium) into Lambda Layers to keep deployment packages small.
  • Timeout Strategy: Set aggressive timeouts to prevent runaway costs from stuck executions.
  • IAM Execution Role: Ensure the role has exactly the permissions needed for S3/DynamoDB access—no more.
  • Monitoring: Use CloudWatch Insights to trace latencies and cold starts.
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务