aws-lambda
Manage AWS Lambda functions via AWS CLI/API. Deploy, invoke, and monitor serverless functions.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/aws-lambdaAWS 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
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-aws-lambda": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.