Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Enumerate AWS IAM policies, detect privilege escalation paths per Rhino Security Labs canonical 21 primitives.
aws sts get-caller-identity
aws iam get-account-summary
aws iam list-attached-user-policies --user-name ME --output json > /tmp/attached.json
aws iam list-user-policies --user-name ME --output json > /tmp/inline.json
aws iam list-groups-for-user --user-name ME --output json > /tmp/groups.json
For each attached policy ARN:
aws iam get-policy --policy-arn ARN --query 'Policy.DefaultVersionId'
aws iam get-policy-version --policy-arn ARN --version-id VID > /tmp/policy.json
Then:
iam_policy_audit(open("/tmp/policy.json").read())
Rhino Security's canonical 21 paths — any Allow on these is a chain step:
npx skills add PurpleAILAB/Decepticon --skill aws-iam-enumHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.