From rust-lambda
Invoke and test an AWS Lambda Rust function with a payload. Use when the user wants to test their function locally with Cargo Lambda or remotely against a deployed function with the AWS CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rust-lambda:invokeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Test the Lambda function with a payload.
Test the Lambda function with a payload.
Test a deployed function:
cargo lambda invoke --remote \
--data-ascii '{"command": "Hello world"}' \
<function-name>
For a custom event (e.g. the Order example):
cargo lambda invoke --remote \
--data-ascii '{"order_id": "12345", "amount": 199.99, "item": "Wireless Headphones"}' \
<function-name>
aws lambda invoke \
--function-name <function-name> \
--cli-binary-format raw-in-base64-out \
--payload '{"order_id": "12345", "amount": 199.99, "item": "Wireless Headphones"}' \
/tmp/out.txt
Then read the response:
cat /tmp/out.txt
Note: --cli-binary-format raw-in-base64-out is required for AWS CLI v2. To make it the default:
aws configure set cli-binary-format raw-in-base64-out
{
"order_id": "12345",
"amount": 199.99,
"item": "Wireless Headphones"
}
Lambda automatically sends logs to Amazon CloudWatch. After invoking:
aws logs tail /aws/lambda/<function-name> --follow
Or filter for errors:
aws logs filter-log-events \
--log-group-name /aws/lambda/<function-name> \
--filter-pattern "ERROR"
.txt file under receipts/ in the configured S3 bucketRECEIPT_BUCKET) are set and the execution role has the required permissionsnpx claudepluginhub lep511/claude-rust-lambda-plugin --plugin rust-lambdaProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.