Install
openclaw skills install dynamodbDesign DynamoDB tables and write efficient queries avoiding common NoSQL pitfalls.
openclaw skills install dynamodbUSER#123, ORDER#456METADATA, ORDER#2024-01-15, ITEM#abcLastEvaluatedKey in response means more pages—pass as ExclusiveStartKeyLastEvaluatedKey is absent—common mistake: assume one call gets allLimit limits evaluated items, not returned—still need pagination logicConsistentRead: true for strong consistency—costs 2x read capacityConditionExpression for optimistic locking—fails if condition falseattribute_not_exists(pk)version = :expected then incrementBatchWriteItem is NOT atomic—partial success possible, check UnprocessedItemsTransactWriteItems for atomic multi-item writes—all or nothingattribute_exists(ttl) AND ttl > :now for queries if needed