[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-aws-aws-iam":3,"mdc-ahk7ip-key":35,"related-repo-aws-aws-iam":1012,"related-org-aws-aws-iam":1116},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"aws-iam","configure AWS IAM policies and roles","Verified corrections for IAM behaviors that AI agents frequently get wrong — policy evaluation edge cases, trust policy gotchas, STS session limits, Organizations quirks, and SAML\u002FMFA specifics. Also provides structured workflows for IAM role management and least-privilege policy generation. Covers condition operator safety (ForAnyValue\u002FForAllValues with Null checks for absent keys), bucket policy deny patterns (VPC endpoint restrictions, org path conditions), resource-based policy confused deputy protection, and service role creation for AWS services (Glue, CloudTrail, VPC Flow Logs, Firehose, DataSync, S3 replication, Lambda, Step Functions, ECS, etc.) including trust policies with aws:SourceAccount\u002Faws:SourceArn conditions. Applies when creating or configuring IAM roles, writing IAM or bucket policies, working with STS, Organizations, condition operators, or any task requiring an IAM service role or execution role. Does not cover non-IAM authorization like Cognito user-pool policies or app-level RBAC.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"aws","AWS (Amazon)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Faws.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Security","security","tag",{"name":17,"slug":18,"type":15},"Permissions","permissions",{"name":20,"slug":21,"type":15},"Auth","auth",{"name":23,"slug":8,"type":15},"AWS",1822,"https:\u002F\u002Fgithub.com\u002Faws\u002Fagent-toolkit-for-aws","2026-07-12T08:42:06.559794",null,157,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Official, AWS-supported MCP servers, skills, and plugins to help AI agents build on AWS","https:\u002F\u002Fgithub.com\u002Faws\u002Fagent-toolkit-for-aws\u002Ftree\u002FHEAD\u002Fskills\u002Fcore-skills\u002Faws-iam","---\nname: aws-iam\ndescription: >\n  Verified corrections for IAM behaviors that AI agents frequently get wrong — policy\n  evaluation edge cases, trust policy gotchas, STS session limits, Organizations quirks,\n  and SAML\u002FMFA specifics. Also provides structured workflows for IAM role management and\n  least-privilege policy generation. Covers condition operator safety (ForAnyValue\u002FForAllValues\n  with Null checks for absent keys), bucket policy deny patterns (VPC endpoint restrictions,\n  org path conditions), resource-based policy confused deputy protection, and service role\n  creation for AWS services (Glue, CloudTrail, VPC Flow Logs, Firehose, DataSync, S3\n  replication, Lambda, Step Functions, ECS, etc.) including trust policies with\n  aws:SourceAccount\u002Faws:SourceArn conditions. Applies when creating or configuring IAM roles,\n  writing IAM or bucket policies, working with STS, Organizations, condition operators, or\n  any task requiring an IAM service role or execution role. Does not cover non-IAM\n  authorization like Cognito user-pool policies or app-level RBAC.\nversion: 1\n---\n\n# AWS IAM — Common Pitfalls\n\n## About This Skill\n\nThis skill contains verified corrections for things that AI agents frequently get wrong about IAM. It is not a comprehensive IAM guide — for full IAM guidance, search AWS documentation. When answering IAM questions, verify specific claims (limits, quotas, exact API names, edge-case behaviors) against official AWS documentation rather than relying on pre-training. Prefer fetching known documentation URLs over broad searches. Trust official documentation over memory when they conflict.\n\n## Common Workflows\n\nUse the best available tool for AWS operations — the AWS MCP server is recommended but not required; AWS CLI or SDK may be used as alternatives. Read reference files only when the conversation requires deeper detail.\n\n- Read [references\u002Faws-iam-role-management.md](references\u002Faws-iam-role-management.md) if the user needs to create, scope, or maintain IAM roles when provisioning or updating AWS resources. Covers service roles, execution roles, trust policies, confused deputy protection, and permission hygiene.\n\n- Read [references\u002Faws-iam-policy-generation.md](references\u002Faws-iam-policy-generation.md) if the user needs to generate least-privilege IAM policies, determine required IAM actions for API calls, or understand action-to-operation mappings. **CRITICAL: If the user provides source code (Python, Go, TypeScript, JavaScript, Java), you MUST read this reference — it mandates using iam-policy-autopilot instead of manual policy construction.** Uses the programmatic service authorization reference for accurate mappings.\n\n## Verified Edge Cases\n\n**CloudTrail:**\n\n- AcceptHandshake\u002FDeclineHandshake logged in ACTING account ONLY, not management account. Organization trail required for centralization.\n- ConsoleLogin region varies by endpoint\u002Fcookies, NOT always us-east-1. `?region=` forces specific region.\n\n**STS:**\n\n- GetSessionToken restrictions: (1) No IAM APIs unless MFA included (2) No STS except AssumeRole and GetCallerIdentity.\n- Cross-account AssumeRole to opt-in region: TARGET account must enable region, not calling account.\n- Role chaining: max 1-hour session.\n\n**Organizations:**\n\n- Suspended\u002Fclosed accounts CANNOT be removed until permanently closed (~90 days). Remove FIRST, then close.\n- Policy management delegation: use PutResourcePolicy, NOT register-delegated-administrator.\n- AI opt-out policies: management account required by default.\n- Organizations policy types for ListPolicies filter: fetch the current list via `aws organizations list-available-policy-types` or [the Organizations API reference](https:\u002F\u002Fdocs.aws.amazon.com\u002Forganizations\u002Flatest\u002FAPIReference\u002FAPI_ListPolicies.html).\n\n**SDK Specifics:**\n\n- Organizations: `DuplicatePolicyAttachmentException` (not PolicyAlreadyAttachedException).\n- Boto3 IAM AccessKey: methods are `activate()`, `deactivate()`, `delete()` — NO `update()`.\n- Instance profiles: waiter + `time.sleep(10)` pattern.\n- Managed policy max versions: 5.\n\n**SAML:**\n\n- Encrypted assertions URL: `https:\u002F\u002Fregion-code.signin.aws.amazon.com\u002Fsaml\u002Facs\u002FIdP-ID`.\n- Private key from IdP uploaded to IAM in .pem format.\n\n**Policy Evaluation:**\n\n- ForAllValues with empty\u002Fmissing key: evaluates to true (vacuous truth). To avoid that, use a `Null` condition in addition to the `ForAllValues` on **the same context key** to require that key to be present and non-null. For example, when evaluating the `aws:TagKeys` context key:\n\n  ```json\n  {\n    \"Version\": \"2012-10-17\",\n    \"Statement\": {\n      \"Effect\": \"Allow\",\n      \"Action\": \"ec2:RunInstances\",\n      \"Resource\": \"*\",\n      \"Condition\": {\n        \"ForAllValues:StringEquals\": {\n          \"aws:TagKeys\": [\"Alpha\", \"Beta\"]\n        },\n        \"Null\": {\n          \"aws:TagKeys\": \"false\"\n        }\n      }\n    }\n  }\n  ```\n\n- Resource-based policies granting to IAM user ARN bypass permissions boundaries in same account.\n- 8 privilege escalation actions via direct IAM policy manipulation: PutGroupPolicy, PutRolePolicy, PutUserPolicy, CreatePolicy, CreatePolicyVersion, AttachGroupPolicy, AttachRolePolicy, AttachUserPolicy.\n- `iam:PassRole` with `Resource: \"*\"` + create\u002Fupdate on a compute service (EC2 `RunInstances`, Lambda `CreateFunction`\u002F`UpdateFunctionConfiguration`, ECS `RegisterTaskDefinition`, Glue, SageMaker, CloudFormation, etc.) = privilege escalation to any passable role in the account, including Administrator. Scope `Resource` to specific role ARNs or an IAM path; optionally constrain with `iam:PassedToService` \u002F `iam:AssociatedResourceArn`. See [IAM User Guide — Grant a user permissions to pass a role](https:\u002F\u002Fdocs.aws.amazon.com\u002FIAM\u002Flatest\u002FUserGuide\u002Fid_roles_use_passrole.html).\n\n**MFA:**\n\n- Unassigned virtual MFA devices auto-deleted when adding new ones.\n- MFA resync-only policy NotAction needs exactly: iam:ListMFADevices, iam:ListVirtualMFADevices, iam:ResyncMFADevice.\n\n**SigV4:**\n\n- IncompleteSignatureException includes SHA-256 hash of Authorization header for transit modification diagnosis.\n\n**Service-Specific Roles:**\n\n- Redshift Serverless trust policy: include BOTH `redshift-serverless.amazonaws.com` AND `redshift.amazonaws.com` as service principals (per AWS docs; omitting serverless causes `Not authorized to get credentials of role` on COPY).\n- IAM OIDC providers: thumbprints are not required for most providers (AWS verifies via trusted CAs).\n\n**Policy Summary Display:**\n\n- Single statement with multi-service wildcard actions (e.g. `codebuild:*`, `codecommit:*`) + service-specific resource ARNs: each resource appears ONLY under its matching service's summary (CodeBuild ARN under CodeBuild, etc.). A resource whose service prefix matches NO action in the statement is the only case where it appears in all action summaries (\"mismatched resource\").\n",{"data":36,"body":38},{"name":4,"description":6,"version":37},1,{"type":39,"children":40},"root",[41,50,57,63,69,74,111,117,125,147,155,173,181,222,230,299,307,327,335,893,901,914,922,930,938,975,983,1006],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"aws-iam-common-pitfalls",[47],{"type":48,"value":49},"text","AWS IAM — Common Pitfalls",{"type":42,"tag":51,"props":52,"children":54},"h2",{"id":53},"about-this-skill",[55],{"type":48,"value":56},"About This Skill",{"type":42,"tag":58,"props":59,"children":60},"p",{},[61],{"type":48,"value":62},"This skill contains verified corrections for things that AI agents frequently get wrong about IAM. It is not a comprehensive IAM guide — for full IAM guidance, search AWS documentation. When answering IAM questions, verify specific claims (limits, quotas, exact API names, edge-case behaviors) against official AWS documentation rather than relying on pre-training. Prefer fetching known documentation URLs over broad searches. Trust official documentation over memory when they conflict.",{"type":42,"tag":51,"props":64,"children":66},{"id":65},"common-workflows",[67],{"type":48,"value":68},"Common Workflows",{"type":42,"tag":58,"props":70,"children":71},{},[72],{"type":48,"value":73},"Use the best available tool for AWS operations — the AWS MCP server is recommended but not required; AWS CLI or SDK may be used as alternatives. Read reference files only when the conversation requires deeper detail.",{"type":42,"tag":75,"props":76,"children":77},"ul",{},[78,92],{"type":42,"tag":79,"props":80,"children":81},"li",{},[82,84,90],{"type":48,"value":83},"Read ",{"type":42,"tag":85,"props":86,"children":88},"a",{"href":87},"references\u002Faws-iam-role-management.md",[89],{"type":48,"value":87},{"type":48,"value":91}," if the user needs to create, scope, or maintain IAM roles when provisioning or updating AWS resources. Covers service roles, execution roles, trust policies, confused deputy protection, and permission hygiene.",{"type":42,"tag":79,"props":93,"children":94},{},[95,96,101,103,109],{"type":48,"value":83},{"type":42,"tag":85,"props":97,"children":99},{"href":98},"references\u002Faws-iam-policy-generation.md",[100],{"type":48,"value":98},{"type":48,"value":102}," if the user needs to generate least-privilege IAM policies, determine required IAM actions for API calls, or understand action-to-operation mappings. ",{"type":42,"tag":104,"props":105,"children":106},"strong",{},[107],{"type":48,"value":108},"CRITICAL: If the user provides source code (Python, Go, TypeScript, JavaScript, Java), you MUST read this reference — it mandates using iam-policy-autopilot instead of manual policy construction.",{"type":48,"value":110}," Uses the programmatic service authorization reference for accurate mappings.",{"type":42,"tag":51,"props":112,"children":114},{"id":113},"verified-edge-cases",[115],{"type":48,"value":116},"Verified Edge Cases",{"type":42,"tag":58,"props":118,"children":119},{},[120],{"type":42,"tag":104,"props":121,"children":122},{},[123],{"type":48,"value":124},"CloudTrail:",{"type":42,"tag":75,"props":126,"children":127},{},[128,133],{"type":42,"tag":79,"props":129,"children":130},{},[131],{"type":48,"value":132},"AcceptHandshake\u002FDeclineHandshake logged in ACTING account ONLY, not management account. Organization trail required for centralization.",{"type":42,"tag":79,"props":134,"children":135},{},[136,138,145],{"type":48,"value":137},"ConsoleLogin region varies by endpoint\u002Fcookies, NOT always us-east-1. ",{"type":42,"tag":139,"props":140,"children":142},"code",{"className":141},[],[143],{"type":48,"value":144},"?region=",{"type":48,"value":146}," forces specific region.",{"type":42,"tag":58,"props":148,"children":149},{},[150],{"type":42,"tag":104,"props":151,"children":152},{},[153],{"type":48,"value":154},"STS:",{"type":42,"tag":75,"props":156,"children":157},{},[158,163,168],{"type":42,"tag":79,"props":159,"children":160},{},[161],{"type":48,"value":162},"GetSessionToken restrictions: (1) No IAM APIs unless MFA included (2) No STS except AssumeRole and GetCallerIdentity.",{"type":42,"tag":79,"props":164,"children":165},{},[166],{"type":48,"value":167},"Cross-account AssumeRole to opt-in region: TARGET account must enable region, not calling account.",{"type":42,"tag":79,"props":169,"children":170},{},[171],{"type":48,"value":172},"Role chaining: max 1-hour session.",{"type":42,"tag":58,"props":174,"children":175},{},[176],{"type":42,"tag":104,"props":177,"children":178},{},[179],{"type":48,"value":180},"Organizations:",{"type":42,"tag":75,"props":182,"children":183},{},[184,189,194,199],{"type":42,"tag":79,"props":185,"children":186},{},[187],{"type":48,"value":188},"Suspended\u002Fclosed accounts CANNOT be removed until permanently closed (~90 days). Remove FIRST, then close.",{"type":42,"tag":79,"props":190,"children":191},{},[192],{"type":48,"value":193},"Policy management delegation: use PutResourcePolicy, NOT register-delegated-administrator.",{"type":42,"tag":79,"props":195,"children":196},{},[197],{"type":48,"value":198},"AI opt-out policies: management account required by default.",{"type":42,"tag":79,"props":200,"children":201},{},[202,204,210,212,220],{"type":48,"value":203},"Organizations policy types for ListPolicies filter: fetch the current list via ",{"type":42,"tag":139,"props":205,"children":207},{"className":206},[],[208],{"type":48,"value":209},"aws organizations list-available-policy-types",{"type":48,"value":211}," or ",{"type":42,"tag":85,"props":213,"children":217},{"href":214,"rel":215},"https:\u002F\u002Fdocs.aws.amazon.com\u002Forganizations\u002Flatest\u002FAPIReference\u002FAPI_ListPolicies.html",[216],"nofollow",[218],{"type":48,"value":219},"the Organizations API reference",{"type":48,"value":221},".",{"type":42,"tag":58,"props":223,"children":224},{},[225],{"type":42,"tag":104,"props":226,"children":227},{},[228],{"type":48,"value":229},"SDK Specifics:",{"type":42,"tag":75,"props":231,"children":232},{},[233,246,281,294],{"type":42,"tag":79,"props":234,"children":235},{},[236,238,244],{"type":48,"value":237},"Organizations: ",{"type":42,"tag":139,"props":239,"children":241},{"className":240},[],[242],{"type":48,"value":243},"DuplicatePolicyAttachmentException",{"type":48,"value":245}," (not PolicyAlreadyAttachedException).",{"type":42,"tag":79,"props":247,"children":248},{},[249,251,257,259,265,266,272,274,280],{"type":48,"value":250},"Boto3 IAM AccessKey: methods are ",{"type":42,"tag":139,"props":252,"children":254},{"className":253},[],[255],{"type":48,"value":256},"activate()",{"type":48,"value":258},", ",{"type":42,"tag":139,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":264},"deactivate()",{"type":48,"value":258},{"type":42,"tag":139,"props":267,"children":269},{"className":268},[],[270],{"type":48,"value":271},"delete()",{"type":48,"value":273}," — NO ",{"type":42,"tag":139,"props":275,"children":277},{"className":276},[],[278],{"type":48,"value":279},"update()",{"type":48,"value":221},{"type":42,"tag":79,"props":282,"children":283},{},[284,286,292],{"type":48,"value":285},"Instance profiles: waiter + ",{"type":42,"tag":139,"props":287,"children":289},{"className":288},[],[290],{"type":48,"value":291},"time.sleep(10)",{"type":48,"value":293}," pattern.",{"type":42,"tag":79,"props":295,"children":296},{},[297],{"type":48,"value":298},"Managed policy max versions: 5.",{"type":42,"tag":58,"props":300,"children":301},{},[302],{"type":42,"tag":104,"props":303,"children":304},{},[305],{"type":48,"value":306},"SAML:",{"type":42,"tag":75,"props":308,"children":309},{},[310,322],{"type":42,"tag":79,"props":311,"children":312},{},[313,315,321],{"type":48,"value":314},"Encrypted assertions URL: ",{"type":42,"tag":139,"props":316,"children":318},{"className":317},[],[319],{"type":48,"value":320},"https:\u002F\u002Fregion-code.signin.aws.amazon.com\u002Fsaml\u002Facs\u002FIdP-ID",{"type":48,"value":221},{"type":42,"tag":79,"props":323,"children":324},{},[325],{"type":48,"value":326},"Private key from IdP uploaded to IAM in .pem format.",{"type":42,"tag":58,"props":328,"children":329},{},[330],{"type":42,"tag":104,"props":331,"children":332},{},[333],{"type":48,"value":334},"Policy Evaluation:",{"type":42,"tag":75,"props":336,"children":337},{},[338,801,806,811],{"type":42,"tag":79,"props":339,"children":340},{},[341,343,349,351,357,359,364,366,372,374],{"type":48,"value":342},"ForAllValues with empty\u002Fmissing key: evaluates to true (vacuous truth). To avoid that, use a ",{"type":42,"tag":139,"props":344,"children":346},{"className":345},[],[347],{"type":48,"value":348},"Null",{"type":48,"value":350}," condition in addition to the ",{"type":42,"tag":139,"props":352,"children":354},{"className":353},[],[355],{"type":48,"value":356},"ForAllValues",{"type":48,"value":358}," on ",{"type":42,"tag":104,"props":360,"children":361},{},[362],{"type":48,"value":363},"the same context key",{"type":48,"value":365}," to require that key to be present and non-null. For example, when evaluating the ",{"type":42,"tag":139,"props":367,"children":369},{"className":368},[],[370],{"type":48,"value":371},"aws:TagKeys",{"type":48,"value":373}," context key:",{"type":42,"tag":375,"props":376,"children":381},"pre",{"className":377,"code":378,"language":379,"meta":380,"style":380},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"Version\": \"2012-10-17\",\n  \"Statement\": {\n    \"Effect\": \"Allow\",\n    \"Action\": \"ec2:RunInstances\",\n    \"Resource\": \"*\",\n    \"Condition\": {\n      \"ForAllValues:StringEquals\": {\n        \"aws:TagKeys\": [\"Alpha\", \"Beta\"]\n      },\n      \"Null\": {\n        \"aws:TagKeys\": \"false\"\n      }\n    }\n  }\n}\n","json","",[382],{"type":42,"tag":139,"props":383,"children":384},{"__ignoreMap":380},[385,396,441,467,507,545,583,608,635,698,707,731,765,774,783,792],{"type":42,"tag":386,"props":387,"children":389},"span",{"class":388,"line":37},"line",[390],{"type":42,"tag":386,"props":391,"children":393},{"style":392},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[394],{"type":48,"value":395},"{\n",{"type":42,"tag":386,"props":397,"children":399},{"class":388,"line":398},2,[400,405,411,416,421,426,432,436],{"type":42,"tag":386,"props":401,"children":402},{"style":392},[403],{"type":48,"value":404},"  \"",{"type":42,"tag":386,"props":406,"children":408},{"style":407},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[409],{"type":48,"value":410},"Version",{"type":42,"tag":386,"props":412,"children":413},{"style":392},[414],{"type":48,"value":415},"\"",{"type":42,"tag":386,"props":417,"children":418},{"style":392},[419],{"type":48,"value":420},":",{"type":42,"tag":386,"props":422,"children":423},{"style":392},[424],{"type":48,"value":425}," \"",{"type":42,"tag":386,"props":427,"children":429},{"style":428},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[430],{"type":48,"value":431},"2012-10-17",{"type":42,"tag":386,"props":433,"children":434},{"style":392},[435],{"type":48,"value":415},{"type":42,"tag":386,"props":437,"children":438},{"style":392},[439],{"type":48,"value":440},",\n",{"type":42,"tag":386,"props":442,"children":444},{"class":388,"line":443},3,[445,449,454,458,462],{"type":42,"tag":386,"props":446,"children":447},{"style":392},[448],{"type":48,"value":404},{"type":42,"tag":386,"props":450,"children":451},{"style":407},[452],{"type":48,"value":453},"Statement",{"type":42,"tag":386,"props":455,"children":456},{"style":392},[457],{"type":48,"value":415},{"type":42,"tag":386,"props":459,"children":460},{"style":392},[461],{"type":48,"value":420},{"type":42,"tag":386,"props":463,"children":464},{"style":392},[465],{"type":48,"value":466}," {\n",{"type":42,"tag":386,"props":468,"children":470},{"class":388,"line":469},4,[471,476,482,486,490,494,499,503],{"type":42,"tag":386,"props":472,"children":473},{"style":392},[474],{"type":48,"value":475},"    \"",{"type":42,"tag":386,"props":477,"children":479},{"style":478},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[480],{"type":48,"value":481},"Effect",{"type":42,"tag":386,"props":483,"children":484},{"style":392},[485],{"type":48,"value":415},{"type":42,"tag":386,"props":487,"children":488},{"style":392},[489],{"type":48,"value":420},{"type":42,"tag":386,"props":491,"children":492},{"style":392},[493],{"type":48,"value":425},{"type":42,"tag":386,"props":495,"children":496},{"style":428},[497],{"type":48,"value":498},"Allow",{"type":42,"tag":386,"props":500,"children":501},{"style":392},[502],{"type":48,"value":415},{"type":42,"tag":386,"props":504,"children":505},{"style":392},[506],{"type":48,"value":440},{"type":42,"tag":386,"props":508,"children":510},{"class":388,"line":509},5,[511,515,520,524,528,532,537,541],{"type":42,"tag":386,"props":512,"children":513},{"style":392},[514],{"type":48,"value":475},{"type":42,"tag":386,"props":516,"children":517},{"style":478},[518],{"type":48,"value":519},"Action",{"type":42,"tag":386,"props":521,"children":522},{"style":392},[523],{"type":48,"value":415},{"type":42,"tag":386,"props":525,"children":526},{"style":392},[527],{"type":48,"value":420},{"type":42,"tag":386,"props":529,"children":530},{"style":392},[531],{"type":48,"value":425},{"type":42,"tag":386,"props":533,"children":534},{"style":428},[535],{"type":48,"value":536},"ec2:RunInstances",{"type":42,"tag":386,"props":538,"children":539},{"style":392},[540],{"type":48,"value":415},{"type":42,"tag":386,"props":542,"children":543},{"style":392},[544],{"type":48,"value":440},{"type":42,"tag":386,"props":546,"children":548},{"class":388,"line":547},6,[549,553,558,562,566,570,575,579],{"type":42,"tag":386,"props":550,"children":551},{"style":392},[552],{"type":48,"value":475},{"type":42,"tag":386,"props":554,"children":555},{"style":478},[556],{"type":48,"value":557},"Resource",{"type":42,"tag":386,"props":559,"children":560},{"style":392},[561],{"type":48,"value":415},{"type":42,"tag":386,"props":563,"children":564},{"style":392},[565],{"type":48,"value":420},{"type":42,"tag":386,"props":567,"children":568},{"style":392},[569],{"type":48,"value":425},{"type":42,"tag":386,"props":571,"children":572},{"style":428},[573],{"type":48,"value":574},"*",{"type":42,"tag":386,"props":576,"children":577},{"style":392},[578],{"type":48,"value":415},{"type":42,"tag":386,"props":580,"children":581},{"style":392},[582],{"type":48,"value":440},{"type":42,"tag":386,"props":584,"children":586},{"class":388,"line":585},7,[587,591,596,600,604],{"type":42,"tag":386,"props":588,"children":589},{"style":392},[590],{"type":48,"value":475},{"type":42,"tag":386,"props":592,"children":593},{"style":478},[594],{"type":48,"value":595},"Condition",{"type":42,"tag":386,"props":597,"children":598},{"style":392},[599],{"type":48,"value":415},{"type":42,"tag":386,"props":601,"children":602},{"style":392},[603],{"type":48,"value":420},{"type":42,"tag":386,"props":605,"children":606},{"style":392},[607],{"type":48,"value":466},{"type":42,"tag":386,"props":609,"children":611},{"class":388,"line":610},8,[612,617,623,627,631],{"type":42,"tag":386,"props":613,"children":614},{"style":392},[615],{"type":48,"value":616},"      \"",{"type":42,"tag":386,"props":618,"children":620},{"style":619},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[621],{"type":48,"value":622},"ForAllValues:StringEquals",{"type":42,"tag":386,"props":624,"children":625},{"style":392},[626],{"type":48,"value":415},{"type":42,"tag":386,"props":628,"children":629},{"style":392},[630],{"type":48,"value":420},{"type":42,"tag":386,"props":632,"children":633},{"style":392},[634],{"type":48,"value":466},{"type":42,"tag":386,"props":636,"children":638},{"class":388,"line":637},9,[639,644,649,653,657,662,666,671,675,680,684,689,693],{"type":42,"tag":386,"props":640,"children":641},{"style":392},[642],{"type":48,"value":643},"        \"",{"type":42,"tag":386,"props":645,"children":647},{"style":646},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[648],{"type":48,"value":371},{"type":42,"tag":386,"props":650,"children":651},{"style":392},[652],{"type":48,"value":415},{"type":42,"tag":386,"props":654,"children":655},{"style":392},[656],{"type":48,"value":420},{"type":42,"tag":386,"props":658,"children":659},{"style":392},[660],{"type":48,"value":661}," [",{"type":42,"tag":386,"props":663,"children":664},{"style":392},[665],{"type":48,"value":415},{"type":42,"tag":386,"props":667,"children":668},{"style":428},[669],{"type":48,"value":670},"Alpha",{"type":42,"tag":386,"props":672,"children":673},{"style":392},[674],{"type":48,"value":415},{"type":42,"tag":386,"props":676,"children":677},{"style":392},[678],{"type":48,"value":679},",",{"type":42,"tag":386,"props":681,"children":682},{"style":392},[683],{"type":48,"value":425},{"type":42,"tag":386,"props":685,"children":686},{"style":428},[687],{"type":48,"value":688},"Beta",{"type":42,"tag":386,"props":690,"children":691},{"style":392},[692],{"type":48,"value":415},{"type":42,"tag":386,"props":694,"children":695},{"style":392},[696],{"type":48,"value":697},"]\n",{"type":42,"tag":386,"props":699,"children":701},{"class":388,"line":700},10,[702],{"type":42,"tag":386,"props":703,"children":704},{"style":392},[705],{"type":48,"value":706},"      },\n",{"type":42,"tag":386,"props":708,"children":710},{"class":388,"line":709},11,[711,715,719,723,727],{"type":42,"tag":386,"props":712,"children":713},{"style":392},[714],{"type":48,"value":616},{"type":42,"tag":386,"props":716,"children":717},{"style":619},[718],{"type":48,"value":348},{"type":42,"tag":386,"props":720,"children":721},{"style":392},[722],{"type":48,"value":415},{"type":42,"tag":386,"props":724,"children":725},{"style":392},[726],{"type":48,"value":420},{"type":42,"tag":386,"props":728,"children":729},{"style":392},[730],{"type":48,"value":466},{"type":42,"tag":386,"props":732,"children":734},{"class":388,"line":733},12,[735,739,743,747,751,755,760],{"type":42,"tag":386,"props":736,"children":737},{"style":392},[738],{"type":48,"value":643},{"type":42,"tag":386,"props":740,"children":741},{"style":646},[742],{"type":48,"value":371},{"type":42,"tag":386,"props":744,"children":745},{"style":392},[746],{"type":48,"value":415},{"type":42,"tag":386,"props":748,"children":749},{"style":392},[750],{"type":48,"value":420},{"type":42,"tag":386,"props":752,"children":753},{"style":392},[754],{"type":48,"value":425},{"type":42,"tag":386,"props":756,"children":757},{"style":428},[758],{"type":48,"value":759},"false",{"type":42,"tag":386,"props":761,"children":762},{"style":392},[763],{"type":48,"value":764},"\"\n",{"type":42,"tag":386,"props":766,"children":768},{"class":388,"line":767},13,[769],{"type":42,"tag":386,"props":770,"children":771},{"style":392},[772],{"type":48,"value":773},"      }\n",{"type":42,"tag":386,"props":775,"children":777},{"class":388,"line":776},14,[778],{"type":42,"tag":386,"props":779,"children":780},{"style":392},[781],{"type":48,"value":782},"    }\n",{"type":42,"tag":386,"props":784,"children":786},{"class":388,"line":785},15,[787],{"type":42,"tag":386,"props":788,"children":789},{"style":392},[790],{"type":48,"value":791},"  }\n",{"type":42,"tag":386,"props":793,"children":795},{"class":388,"line":794},16,[796],{"type":42,"tag":386,"props":797,"children":798},{"style":392},[799],{"type":48,"value":800},"}\n",{"type":42,"tag":79,"props":802,"children":803},{},[804],{"type":48,"value":805},"Resource-based policies granting to IAM user ARN bypass permissions boundaries in same account.",{"type":42,"tag":79,"props":807,"children":808},{},[809],{"type":48,"value":810},"8 privilege escalation actions via direct IAM policy manipulation: PutGroupPolicy, PutRolePolicy, PutUserPolicy, CreatePolicy, CreatePolicyVersion, AttachGroupPolicy, AttachRolePolicy, AttachUserPolicy.",{"type":42,"tag":79,"props":812,"children":813},{},[814,820,822,828,830,836,838,844,846,852,854,860,862,867,869,875,877,883,885,892],{"type":42,"tag":139,"props":815,"children":817},{"className":816},[],[818],{"type":48,"value":819},"iam:PassRole",{"type":48,"value":821}," with ",{"type":42,"tag":139,"props":823,"children":825},{"className":824},[],[826],{"type":48,"value":827},"Resource: \"*\"",{"type":48,"value":829}," + create\u002Fupdate on a compute service (EC2 ",{"type":42,"tag":139,"props":831,"children":833},{"className":832},[],[834],{"type":48,"value":835},"RunInstances",{"type":48,"value":837},", Lambda ",{"type":42,"tag":139,"props":839,"children":841},{"className":840},[],[842],{"type":48,"value":843},"CreateFunction",{"type":48,"value":845},"\u002F",{"type":42,"tag":139,"props":847,"children":849},{"className":848},[],[850],{"type":48,"value":851},"UpdateFunctionConfiguration",{"type":48,"value":853},", ECS ",{"type":42,"tag":139,"props":855,"children":857},{"className":856},[],[858],{"type":48,"value":859},"RegisterTaskDefinition",{"type":48,"value":861},", Glue, SageMaker, CloudFormation, etc.) = privilege escalation to any passable role in the account, including Administrator. Scope ",{"type":42,"tag":139,"props":863,"children":865},{"className":864},[],[866],{"type":48,"value":557},{"type":48,"value":868}," to specific role ARNs or an IAM path; optionally constrain with ",{"type":42,"tag":139,"props":870,"children":872},{"className":871},[],[873],{"type":48,"value":874},"iam:PassedToService",{"type":48,"value":876}," \u002F ",{"type":42,"tag":139,"props":878,"children":880},{"className":879},[],[881],{"type":48,"value":882},"iam:AssociatedResourceArn",{"type":48,"value":884},". See ",{"type":42,"tag":85,"props":886,"children":889},{"href":887,"rel":888},"https:\u002F\u002Fdocs.aws.amazon.com\u002FIAM\u002Flatest\u002FUserGuide\u002Fid_roles_use_passrole.html",[216],[890],{"type":48,"value":891},"IAM User Guide — Grant a user permissions to pass a role",{"type":48,"value":221},{"type":42,"tag":58,"props":894,"children":895},{},[896],{"type":42,"tag":104,"props":897,"children":898},{},[899],{"type":48,"value":900},"MFA:",{"type":42,"tag":75,"props":902,"children":903},{},[904,909],{"type":42,"tag":79,"props":905,"children":906},{},[907],{"type":48,"value":908},"Unassigned virtual MFA devices auto-deleted when adding new ones.",{"type":42,"tag":79,"props":910,"children":911},{},[912],{"type":48,"value":913},"MFA resync-only policy NotAction needs exactly: iam:ListMFADevices, iam:ListVirtualMFADevices, iam:ResyncMFADevice.",{"type":42,"tag":58,"props":915,"children":916},{},[917],{"type":42,"tag":104,"props":918,"children":919},{},[920],{"type":48,"value":921},"SigV4:",{"type":42,"tag":75,"props":923,"children":924},{},[925],{"type":42,"tag":79,"props":926,"children":927},{},[928],{"type":48,"value":929},"IncompleteSignatureException includes SHA-256 hash of Authorization header for transit modification diagnosis.",{"type":42,"tag":58,"props":931,"children":932},{},[933],{"type":42,"tag":104,"props":934,"children":935},{},[936],{"type":48,"value":937},"Service-Specific Roles:",{"type":42,"tag":75,"props":939,"children":940},{},[941,970],{"type":42,"tag":79,"props":942,"children":943},{},[944,946,952,954,960,962,968],{"type":48,"value":945},"Redshift Serverless trust policy: include BOTH ",{"type":42,"tag":139,"props":947,"children":949},{"className":948},[],[950],{"type":48,"value":951},"redshift-serverless.amazonaws.com",{"type":48,"value":953}," AND ",{"type":42,"tag":139,"props":955,"children":957},{"className":956},[],[958],{"type":48,"value":959},"redshift.amazonaws.com",{"type":48,"value":961}," as service principals (per AWS docs; omitting serverless causes ",{"type":42,"tag":139,"props":963,"children":965},{"className":964},[],[966],{"type":48,"value":967},"Not authorized to get credentials of role",{"type":48,"value":969}," on COPY).",{"type":42,"tag":79,"props":971,"children":972},{},[973],{"type":48,"value":974},"IAM OIDC providers: thumbprints are not required for most providers (AWS verifies via trusted CAs).",{"type":42,"tag":58,"props":976,"children":977},{},[978],{"type":42,"tag":104,"props":979,"children":980},{},[981],{"type":48,"value":982},"Policy Summary Display:",{"type":42,"tag":75,"props":984,"children":985},{},[986],{"type":42,"tag":79,"props":987,"children":988},{},[989,991,997,998,1004],{"type":48,"value":990},"Single statement with multi-service wildcard actions (e.g. ",{"type":42,"tag":139,"props":992,"children":994},{"className":993},[],[995],{"type":48,"value":996},"codebuild:*",{"type":48,"value":258},{"type":42,"tag":139,"props":999,"children":1001},{"className":1000},[],[1002],{"type":48,"value":1003},"codecommit:*",{"type":48,"value":1005},") + service-specific resource ARNs: each resource appears ONLY under its matching service's summary (CodeBuild ARN under CodeBuild, etc.). A resource whose service prefix matches NO action in the statement is the only case where it appears in all action summaries (\"mismatched resource\").",{"type":42,"tag":1007,"props":1008,"children":1009},"style",{},[1010],{"type":48,"value":1011},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1013,"total":1115},[1014,1031,1046,1061,1076,1086,1099],{"slug":1015,"name":1015,"fn":1016,"description":1017,"org":1018,"tags":1019,"stars":24,"repoUrl":25,"updatedAt":1030},"agents-build","add capabilities to existing agent projects","Use when adding capabilities to an existing agent project — memory, app integration, VPC, multi-agent, migration, model changes, browser, code interpreter, or resource removal. Triggers on: \"add memory\", \"remember across sessions\", \"call agent from app\", \"invoke agent from code\", \"auth to call agent\", \"streaming responses\", \"VPC\", \"VPC connectivity\", \"VPC error\", \"can't reach from VPC\", \"multi-agent\", \"A2A\", \"A2A auth\", \"orchestrator not delegating\", \"specialist not called\", \"migrate Bedrock Agent\", \"after import\", \"migration issue\", \"framework for migration\", \"change model\", \"browser tool\", \"code interpreter\", \"delete agent\", \"tear down\", \"agentcore remove\", \"cross-account memory\", \"resource-based policy on memory\", \"pay for x402 content\", \"402 Payment Required\", \"microtransactions\", \"paid API or tool\". Not for connecting to external APIs via Gateway — use agents-connect. Not for scaffolding a new project — use agents-get-started. Not for CLI\u002Fdev server errors — use agents-debug. Strands vs LangGraph in a migration context routes here.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1020,1023,1026,1027],{"name":1021,"slug":1022,"type":15},"Agents","agents",{"name":1024,"slug":1025,"type":15},"Automation","automation",{"name":23,"slug":8,"type":15},{"name":1028,"slug":1029,"type":15},"Engineering","engineering","2026-07-12T08:42:53.812877",{"slug":1032,"name":1032,"fn":1033,"description":1034,"org":1035,"tags":1036,"stars":24,"repoUrl":25,"updatedAt":1045},"agents-connect","connect agents to external services","Use when connecting your agent to external APIs, tools, or services via Gateway, or restricting tool access with Cedar policies. Handles gateway setup, target types, outbound auth (OAuth, API key, IAM), credentials, and Cedar policy authoring. Triggers on: \"connect to API\", \"add gateway\", \"connect to MCP server\", \"Lambda tools\", \"OpenAPI\", \"gateway target\", \"Cedar policy\", \"restrict tools\", \"policy engine\", \"gateway auth error\", \"store API key\", \"outbound credential\", \"env var API key\", \"API key None after deploy\", \"credential not available after deploy\", \"should this be a gateway target\", \"give my agent tools\", \"add tools to agent\". Not for inbound auth (who can call your agent) — use agents-harden. Not for debugging agent behavior — use agents-debug. Not for VPC networking errors (agent can't reach APIs due to VPC) — use agents-build. Not for creating or hosting a new MCP server project — use agents-get-started.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1037,1038,1041,1044],{"name":1021,"slug":1022,"type":15},{"name":1039,"slug":1040,"type":15},"API Development","api-development",{"name":1042,"slug":1043,"type":15},"Authentication","authentication",{"name":23,"slug":8,"type":15},"2026-07-16T06:00:38.866147",{"slug":1047,"name":1047,"fn":1048,"description":1049,"org":1050,"tags":1051,"stars":24,"repoUrl":25,"updatedAt":1060},"agents-debug","debug agent and environment issues","Use when your agent or environment is broken — wrong answers, errors, timeouts, tool failures, or CLI issues. Reads traces and logs to diagnose root causes. Also checks prerequisites when the CLI itself isn't working. Triggers on: \"agent not working\", \"wrong answer\", \"agent error\", \"tool call failing\", \"debug agent\", \"check logs\", \"read traces\", \"broken\", \"500 error\", \"424 error\", \"model access denied\", \"command not found\", \"stuck in DELETING\", \"maxVms exceeded\", \"cold start diagnosis\", \"cold start slow\", \"agentcore create error\", \"create failed\", \"exit code 7\", \"connection refused local dev\". Not for deploy failures — use agents-deploy. Not for performance tuning without errors — use agents-optimize. Not for VPC configuration — use agents-build. Not for observability setup or missing logs — use agents-optimize.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1052,1053,1054,1057],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1055,"slug":1056,"type":15},"Debugging","debugging",{"name":1058,"slug":1059,"type":15},"Observability","observability","2026-07-16T06:00:44.679093",{"slug":1062,"name":1062,"fn":1063,"description":1064,"org":1065,"tags":1066,"stars":24,"repoUrl":25,"updatedAt":1075},"agents-deploy","deploy AI agents to AWS","Use when deploying your agent to AWS, or when a deploy has failed. Handles pre-flight validation, CDK\u002FIAM\u002Fquota error diagnosis, version management, rollback, and canary deployments. Triggers on: \"deploy my agent\", \"agentcore deploy\", \"deploy failed\", \"CDK error\", \"rollback\", \"canary deploy\", \"pin version\", \"redeploy\", \"deploy stuck\". Not for production hardening — use agents-harden. Not for adding capabilities before deploy — use agents-build or agents-connect. Not for VPC configuration errors — use agents-build.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1067,1068,1069,1072],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1070,"slug":1071,"type":15},"CI\u002FCD","ci-cd",{"name":1073,"slug":1074,"type":15},"Deployment","deployment","2026-07-12T08:42:55.059577",{"slug":1077,"name":1077,"fn":1078,"description":1079,"org":1080,"tags":1081,"stars":24,"repoUrl":25,"updatedAt":1085},"agents-get-started","scaffold and deploy new agent projects","Use when a developer wants to create a new agent project or get started with AgentCore. Handles framework selection, project scaffolding, first deploy, and first invocation. Triggers on: \"build an agent\", \"create an agent\", \"get started\", \"new project\", \"agentcore create\", \"which framework\", \"Strands vs LangGraph\", \"hello world agent\", \"first agent\", \"create MCP server\", \"host MCP server\", \"agentcore dev\", \"dev server\", \"what port\", \"local development\". Not for adding capabilities to existing projects — use agents-build or agents-connect. Strands vs LangGraph in a migration context routes to agents-build, not here. Connecting to an existing MCP server routes to agents-connect, not here.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1082,1083,1084],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1073,"slug":1074,"type":15},"2026-07-12T08:42:51.963247",{"slug":1087,"name":1087,"fn":1088,"description":1089,"org":1090,"tags":1091,"stars":24,"repoUrl":25,"updatedAt":1098},"agents-harden","harden agents for production","Use when preparing your agent for production — IAM scoping, inbound auth (JWT, SigV4), secrets management, cold start optimization, session lifecycle, rate limiting, input validation, and quota guidance. Triggers on: \"production checklist\", \"harden agent\", \"production ready\", \"secure agent\", \"inbound auth\", \"going live\", \"cold start optimization\", \"session lifecycle\", \"StopRuntimeSession\", \"quota\", \"throttling\", \"maxVms\", \"rate limit\", \"security audit of outbound API calls\", \"gateway target audit for production\", \"restrict who can call\", \"lock down endpoint\", \"only our app can call\". Not for Cedar tool-restriction policies — use agents-connect. Not for quality measurement — use agents-optimize. Not for outbound credential storage or API key wiring — use agents-connect. Not for A2A agent-to-agent auth — use agents-build. Cold start observation and diagnosis (not optimization) routes to agents-debug.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1092,1093,1094,1097],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1095,"slug":1096,"type":15},"Best Practices","best-practices",{"name":13,"slug":14,"type":15},"2026-07-16T06:00:42.174705",{"slug":1100,"name":1100,"fn":1101,"description":1102,"org":1103,"tags":1104,"stars":24,"repoUrl":25,"updatedAt":1114},"agents-optimize","optimize agent quality and performance","Use when measuring or improving agent quality and performance — set up evaluators, online monitoring, CI\u002FCD quality gates, observability, or cost optimization. Triggers on: \"evaluate my agent\", \"add evaluator\", \"measure quality\", \"quality gate\", \"run evals\", \"agent too slow\", \"why is it slow\", \"reduce latency\", \"set up observability\", \"CloudWatch dashboard\", \"how much does my agent cost\", \"cost optimization\", \"logs not showing up\", \"logs missing\", \"spans not found\", \"eval failing\", \"eval error\", \"dev traces\", \"local traces\", \"agentcore dev traces\", \"traces to CloudWatch\". Not for debugging errors or crashes — use agents-debug. Slow but correct routes here; broken routes to debug.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1105,1106,1107,1110,1111],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1108,"slug":1109,"type":15},"Evals","evals",{"name":1058,"slug":1059,"type":15},{"name":1112,"slug":1113,"type":15},"Performance","performance","2026-07-12T08:42:56.488105",114,{"items":1117,"total":1234},[1118,1125,1132,1139,1146,1152,1159,1167,1184,1197,1209,1224],{"slug":1015,"name":1015,"fn":1016,"description":1017,"org":1119,"tags":1120,"stars":24,"repoUrl":25,"updatedAt":1030},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1121,1122,1123,1124],{"name":1021,"slug":1022,"type":15},{"name":1024,"slug":1025,"type":15},{"name":23,"slug":8,"type":15},{"name":1028,"slug":1029,"type":15},{"slug":1032,"name":1032,"fn":1033,"description":1034,"org":1126,"tags":1127,"stars":24,"repoUrl":25,"updatedAt":1045},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1128,1129,1130,1131],{"name":1021,"slug":1022,"type":15},{"name":1039,"slug":1040,"type":15},{"name":1042,"slug":1043,"type":15},{"name":23,"slug":8,"type":15},{"slug":1047,"name":1047,"fn":1048,"description":1049,"org":1133,"tags":1134,"stars":24,"repoUrl":25,"updatedAt":1060},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1135,1136,1137,1138],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1055,"slug":1056,"type":15},{"name":1058,"slug":1059,"type":15},{"slug":1062,"name":1062,"fn":1063,"description":1064,"org":1140,"tags":1141,"stars":24,"repoUrl":25,"updatedAt":1075},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1142,1143,1144,1145],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1070,"slug":1071,"type":15},{"name":1073,"slug":1074,"type":15},{"slug":1077,"name":1077,"fn":1078,"description":1079,"org":1147,"tags":1148,"stars":24,"repoUrl":25,"updatedAt":1085},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1149,1150,1151],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1073,"slug":1074,"type":15},{"slug":1087,"name":1087,"fn":1088,"description":1089,"org":1153,"tags":1154,"stars":24,"repoUrl":25,"updatedAt":1098},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1155,1156,1157,1158],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1095,"slug":1096,"type":15},{"name":13,"slug":14,"type":15},{"slug":1100,"name":1100,"fn":1101,"description":1102,"org":1160,"tags":1161,"stars":24,"repoUrl":25,"updatedAt":1114},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1162,1163,1164,1165,1166],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1108,"slug":1109,"type":15},{"name":1058,"slug":1059,"type":15},{"name":1112,"slug":1113,"type":15},{"slug":1168,"name":1168,"fn":1169,"description":1170,"org":1171,"tags":1172,"stars":24,"repoUrl":25,"updatedAt":1183},"amazon-aurora-mysql","manage Amazon Aurora MySQL clusters","Amazon Aurora MySQL — creates, modifies, and advises on Aurora MySQL clusters specifically (MySQL-compatible engine, Aurora serverless, parallel query). Trigger for Aurora MySQL cluster operations, ACU sizing, I\u002FO-Optimized storage, commitment pricing, or MySQL upgrade planning. Aurora MySQL uses full (VPC-based) configuration — express configuration is PostgreSQL-only. For Aurora PostgreSQL, use amazon-aurora-postgresql instead. Contains safety guardrails and response templates that override defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1173,1174,1177,1180],{"name":23,"slug":8,"type":15},{"name":1175,"slug":1176,"type":15},"Database","database",{"name":1178,"slug":1179,"type":15},"MySQL","mysql",{"name":1181,"slug":1182,"type":15},"Serverless","serverless","2026-07-12T08:43:13.27939",{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1188,"tags":1189,"stars":24,"repoUrl":25,"updatedAt":1196},"amazon-aurora-postgresql","configure Amazon Aurora PostgreSQL clusters","Amazon Aurora PostgreSQL — creates, modifies, and advises on Aurora PostgreSQL clusters specifically (PostgreSQL-compatible engine, Aurora serverless, express configuration, pgvector, Babelfish). Trigger for Aurora PostgreSQL cluster operations, express-configuration quick-start, ACU sizing, I\u002FO-Optimized storage, commitment pricing, or PostgreSQL upgrade planning. For Aurora MySQL, use amazon-aurora-mysql instead. Contains safety guardrails, express-first routing, and response templates that override defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1190,1191,1192,1195],{"name":23,"slug":8,"type":15},{"name":1175,"slug":1176,"type":15},{"name":1193,"slug":1194,"type":15},"PostgreSQL","postgresql",{"name":1181,"slug":1182,"type":15},"2026-07-16T06:00:34.789624",{"slug":1198,"name":1198,"fn":1199,"description":1200,"org":1201,"tags":1202,"stars":24,"repoUrl":25,"updatedAt":1208},"amazon-bedrock","build generative AI apps with Amazon Bedrock","Builds generative AI applications on Amazon Bedrock. Covers model invocation (Converse API, InvokeModel), RAG with Knowledge Bases, Bedrock Agents, Guardrails, and AgentCore. Use when invoking models, setting up Knowledge Bases, creating agents, applying guardrails, deploying to AgentCore, migrating\u002Fporting\u002Fconverting a Bedrock Agent (including inline agents) to an AgentCore Harness, troubleshooting Bedrock errors (ThrottlingException, AccessDeniedException), or choosing models (Claude, Llama, Nova, Titan). ALSO USE for prompt caching setup and debugging, quota health checks and throttling diagnosis, cost attribution and tracking, migrating between Claude model generations (4.5 to 4.6 to 4.7), chunking strategies, API selection (Converse vs InvokeModel), guardrail capabilities, and model selection. Also covers AgentCore Payments setup (x402, microtransactions, Payment Manager, Connector, Instrument, Coinbase CDP, Stripe Privy, 402 Payment Required, pay for content, paid endpoint, agent payments). NOT for custom model training, Rekognition, or Comprehend.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1203,1204,1205],{"name":1021,"slug":1022,"type":15},{"name":23,"slug":8,"type":15},{"name":1206,"slug":1207,"type":15},"LLM","llm","2026-07-25T05:30:35.20899",{"slug":1210,"name":1210,"fn":1211,"description":1212,"org":1213,"tags":1214,"stars":24,"repoUrl":25,"updatedAt":1223},"amazon-documentdb","manage Amazon DocumentDB clusters","Manages Amazon DocumentDB end-to-end — serverless-on-8.0 cluster setup, TLS\u002FVPC\u002Fdriver config, flexible-schema and vector-search data modeling, MongoDB compatibility assessment, DMS-based migration, slow-query diagnosis, major version upgrades (4.0→5.0→8.0), Well-Architected reviews (41-check wa_review.py), cost estimation, and security hardening. Retrieve for every DocumentDB question and when the user asks to set up or migrate MongoDB to AWS — DocumentDB is AWS's MongoDB-compatible managed database. Triggers: JSON document store, document database, MongoDB on AWS, Nested fields, Lambda cannot connect, TLS handshake, VPC port 27017, IAM auth, Secrets Manager, encryption at rest, $graphLookup, flexible schema, COLLSCAN, compound index, DMS migration, CDC cutover, $vectorSearch, RAG, Global Clusters, DR replication, cost sizing, audit, health check, production-readiness.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1215,1216,1217,1220],{"name":23,"slug":8,"type":15},{"name":1175,"slug":1176,"type":15},{"name":1218,"slug":1219,"type":15},"MongoDB","mongodb",{"name":1221,"slug":1222,"type":15},"NoSQL","nosql","2026-07-12T08:43:00.455878",{"slug":1225,"name":1225,"fn":1226,"description":1227,"org":1228,"tags":1229,"stars":24,"repoUrl":25,"updatedAt":1233},"amazon-dynamodb","design and debug DynamoDB data layers","Designs, reviews, and debugs DynamoDB data layers from design axioms — enumerates access patterns, chooses partition\u002Fsort keys and GSIs, decides single-table vs. multi-table, configures Streams, Global Tables, TTL, and zero-ETL integrations to OpenSearch\u002FRedshift\u002FSageMaker Lakehouse, and produces a defensible data-layer design with a monthly cost estimate and optional live validation. Applies whenever a user is designing, reviewing, or refactoring anything backed by DynamoDB — schemas, access patterns, GSIs, single- vs. multi-table choices, Streams consumers, transactional outboxes, Global Tables, zero-ETL pipelines — even when they don't say \"axioms\" or \"design review.\" Also applies when debugging hot partitions, throttling, unbounded Scans, LWW conflicts, or surprise bills on DynamoDB workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1230,1231,1232],{"name":23,"slug":8,"type":15},{"name":1175,"slug":1176,"type":15},{"name":1221,"slug":1222,"type":15},"2026-07-16T06:00:37.690386",115]