aws-lambda
AWS Lambda
Manage serverless functions on AWS Lambda.
Environment Variables
AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY- AWS credentialsAWS_DEFAULT_REGION- Region (e.g.us-east-1)
List functions
aws lambda list-functions --query 'Functions[].{Name:FunctionName,Runtime:Runtime,Memory:MemorySize,Timeout:Timeout,Last:LastModified}' --output table
Get function details
aws lambda get-function --function-name my-function | jq '{Runtime: .Configuration.Runtime, Handler: .Configuration.Handler, Memory: .Configuration.MemorySize, Timeout: .Configuration.Timeout, CodeSize: .Configuration.CodeSize, Env: .Configuration.Environment.Variables}'
Invoke function
aws lambda invoke --function-name my-function \
--payload '{"key":"value"}' \
--cli-binary-format raw-in-base64-out \
/tmp/lambda-out.json && cat /tmp/lambda-out.json | jq .
Invoke async
aws lambda invoke --function-name my-function \
--invocation-type Event \
--payload '{"key":"value"}' \
--cli-binary-format raw-in-base64-out \
/tmp/lambda-out.json
echo "Invoked async"
View recent logs
aws logs tail /aws/lambda/my-function --since 30m --format short
Update function code (zip)
cd /tmp/lambda-code && zip -r /tmp/function.zip . && \
aws lambda update-function-code --function-name my-function \
--zip-file fileb:///tmp/function.zip | jq '{FunctionName, LastModified, CodeSha256}'
Update environment variables
aws lambda update-function-configuration --function-name my-function \
--environment 'Variables={KEY1=value1,KEY2=value2}' | jq '{FunctionName, Environment}'
Update memory / timeout
aws lambda update-function-configuration --function-name my-function \
--memory-size 512 --timeout 30 | jq '{FunctionName, MemorySize, Timeout}'
List versions / aliases
aws lambda list-versions-by-function --function-name my-function --query 'Versions[].{Version,Description,LastModified}' --output table
aws lambda list-aliases --function-name my-function --output table
Get concurrency
aws lambda get-function-concurrency --function-name my-function
Notes
- Use
--cli-binary-format raw-in-base64-outfor JSON payloads. - Confirm before updating function code or configuration.
- For large deployments, use S3 bucket upload instead of zip.
More from thinkfleetai/thinkfleet-engine
feishu-bridge
Connect a Feishu (Lark) bot to ThinkFleet via WebSocket long-connection. No public server, domain, or ngrok required. Use when setting up Feishu/Lark as a messaging channel, troubleshooting the Feishu bridge, or managing the bridge service (start/stop/logs). Covers bot creation on Feishu Open Platform, credential setup, bridge startup, macOS launchd auto-restart, and group chat behavior tuning.
13language-learning
AI language tutor for learning ANY language through conversation, vocab drills, grammar lessons, flashcards, and immersive practice. Use when the user wants to: learn a new language, practice vocabulary, study grammar, do flashcard drills, translate phrases, practice conversation, prepare for travel, learn slang/idioms, or improve pronunciation. Supports ALL languages including Spanish, French, German, Japanese, Chinese (Mandarin/Cantonese), Korean, Arabic, Hindi, Bengali/Bangla, Portuguese, Russian, Italian, Turkish, Vietnamese, Thai, Swahili, Hebrew, Polish, Dutch, Greek, and 100+ more.
4ga4-analytics
Google Analytics 4, Search Console, and Indexing API toolkit. Analyze website traffic, page performance, user demographics, real-time visitors, search queries, and SEO metrics. Use when the user asks to: check site traffic, analyze page views, see traffic sources, view user demographics, get real-time visitor data, check search console queries, analyze SEO performance, request URL re-indexing, inspect index status, compare date ranges, check bounce rates, view conversion data, or get e-commerce revenue. Requires a Google Cloud service account with GA4 and Search Console access.
4triple-memory
Complete memory system combining LanceDB auto-recall, Git-Notes structured memory, and file-based workspace search. Use when setting up comprehensive agent memory, when you need persistent context across sessions, or when managing decisions/preferences/tasks with multiple memory backends working together.
4playwright-cli
Browser automation via Playwright CLI. Open pages, interact with elements, take screenshots, and more. Ideal for coding agents and automated testing workflows.
4code-review
Systematic code review: security checks, performance analysis, complexity assessment, best practice validation, and review checklists.
3