ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

aws-lambda

Manage AWS Lambda functions via AWS CLI/API. Deploy, invoke, and monitor serverless functions.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/mrgoodb/aws-lambda
Or

AWS Lambda

Serverless compute.

Environment

export AWS_ACCESS_KEY_ID="xxxxxxxxxx"
export AWS_SECRET_ACCESS_KEY="xxxxxxxxxx"
export AWS_REGION="us-east-1"

List Functions

aws lambda list-functions

Invoke Function

aws lambda invoke --function-name myFunction --payload '{"key": "value"}' output.json

Create Function

aws lambda create-function --function-name myFunction \
  --runtime nodejs18.x --handler index.handler \
  --role arn:aws:iam::123456789:role/lambda-role \
  --zip-file fileb://function.zip

Update Function Code

aws lambda update-function-code --function-name myFunction --zip-file fileb://function.zip

Get Logs

aws logs tail /aws/lambda/myFunction --follow

Links

Metadata

Author@mrgoodb
Stars1401
Views0
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-mrgoodb-aws-lambda": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.