Use Tailwind v4 arbitrary values to get font sizes between text-sm and text-base
No utility class exists between text-sm (14px) and text-base (16px). Use text-[0.9375rem] for 15px or any size in between via arbitrary values.
Today I Learned — Daily learnings
No utility class exists between text-sm (14px) and text-base (16px). Use text-[0.9375rem] for 15px or any size in between via arbitrary values.
Mixing up bedrock-agentcore-control (create/delete) and bedrock-agentcore (session ops/code execution) gives you an AttributeError.
Uploading a raw Python file to S3 for create-agent-runtime gives 'S3 object must be in .zip format' ValidationException. You must zip the code first.
The docs say 'Stateless between commands' but the filesystem is actually shared within a session. Only shell history and environment variables are reset.
Setting entryPoint to ['python3', 'main.py'] in codeConfiguration gives 'Invalid entrypoint value' error. For Python runtimes, pass only the filename with .py extension like ['main.py'].
agentcore deploy emits 'X-Ray Delivery Destination is supported with CloudWatch Logs as a Trace Segment Destination' during memory creation, but the runtime phase auto-configures it.
agentcore configure with Direct Code Deploy fails with 'Direct Code Deploy deployment unavailable (uv not found)'. Fix with pip install uv — not mentioned in the official docs.
Creating a Cedar permit without a when clause in Bedrock AgentCore Policy fails with CREATE_FAILED due to FAIL_ON_ANY_FINDINGS automated reasoning.
Bedrock AgentCore Gateways only allow hyphens while Policy Engines only allow underscores. Using the same prefix for both causes ValidationException.
AWS CLI defaults to ~/.aws/, but setting AWS_CONFIG_FILE and AWS_SHARED_CREDENTIALS_FILE is enough to make it XDG-compliant.