skills$openclaw/aws-lambda
mrgoodb4.2k

by mrgoodb

aws-lambda – OpenClaw Skill

aws-lambda is an OpenClaw Skills integration for coding workflows. Manage AWS Lambda functions via AWS CLI/API. Deploy, invoke, and monitor serverless functions.

4.2k stars1.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameaws-lambda
descriptionManage AWS Lambda functions via AWS CLI/API. Deploy, invoke, and monitor serverless functions. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/aws-lambda
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/aws-lambda
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains aws-lambda in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
273 B
SKILL.md
1.1 KB
SKILL.md

name: aws-lambda description: Manage AWS Lambda functions via AWS CLI/API. Deploy, invoke, and monitor serverless functions. metadata: {"clawdbot":{"emoji":"λ","requires":{"env":["AWS_ACCESS_KEY_ID","AWS_SECRET_ACCESS_KEY","AWS_REGION"]}}}

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
aws logs tail /aws/lambda/myFunction --follow
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install aws-lambda?

Run openclaw add @mrgoodb/aws-lambda in your terminal. This installs aws-lambda into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/aws-lambda. Review commits and README documentation before installing.