logs
Installation
SKILL.md
View CloudWatch Logs
Fetch and display recent logs from AWS CloudWatch.
Arguments
$ARGUMENTS- Optional: function name (contact, booking, proofing, orders)
Default: All Functions
Show recent logs from all Lambda functions:
for func in contact booking proofing orders; do
echo "=== pitfal-${func} ==="
aws logs tail /aws/lambda/pitfal-${func} \
--since 1h \
--profile pitfal \
--format short 2>/dev/null || echo "No logs found"
echo ""
done