Watadot Aws Lambda

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If run against the wrong function, account, or alias, these commands could change production behavior or increase AWS costs.

Why it was flagged

These are AWS CLI operations that can modify deployed Lambda code, environment variables, and concurrency settings. They are aligned with the skill's Lambda management purpose, but users should review before execution because they affect cloud resources.

Skill content
aws lambda update-function-code --function-name <name> --zip-file fileb://function.zip
aws lambda update-function-configuration --function-name <name> --environment "Variables={KEY=VALUE,ENV=PROD}"
aws lambda put-provisioned-concurrency-config --function-name <name> --qualifier <alias> --provisioned-concurrent-executions 5
Recommendation

Use an explicit AWS profile/account and require user confirmation before running update or concurrency-changing commands.

What this means

The agent may act with the permissions of the currently configured AWS credentials.

Why it was flagged

The skill relies on the AWS CLI, which uses the user's configured AWS identity and permissions. This is expected for AWS Lambda management, but the artifact does not specify a profile, account boundary, or least-privilege policy.

Skill content
requires:
  anyBins: [aws]
...
aws lambda list-functions
Recommendation

Use a least-privilege AWS role or dedicated profile for this skill, and verify the target account and region before running commands.