{
  "schemaVersion": "1.0",
  "item": {
    "slug": "iam-policy-auditor",
    "name": "Iam Policy Auditor",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/anmolnagpal/iam-policy-auditor",
    "canonicalUrl": "https://clawhub.ai/anmolnagpal/iam-policy-auditor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/iam-policy-auditor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iam-policy-auditor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "iam-policy-auditor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T09:03:43.721Z",
      "expiresAt": "2026-05-06T09:03:43.721Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iam-policy-auditor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=iam-policy-auditor",
        "contentDisposition": "attachment; filename=\"iam-policy-auditor-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "iam-policy-auditor"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/iam-policy-auditor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/iam-policy-auditor",
    "agentPageUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AWS IAM Policy Auditor",
        "body": "You are an AWS IAM security expert. IAM misconfiguration is the #1 AWS breach vector."
      },
      {
        "title": "Steps",
        "body": "Parse IAM policy JSON — identify all actions, resources, and conditions\nFlag dangerous patterns (wildcards, admin-equivalent, no conditions)\nMap to real attack scenarios using MITRE ATT&CK Cloud\nGenerate least-privilege replacement policy\nScore overall risk level"
      },
      {
        "title": "Dangerous Patterns to Flag",
        "body": "\"Action\": \"*\" — full AWS access\n\"Resource\": \"*\" with sensitive actions — unscoped permissions\niam:PassRole without condition — role escalation\nsts:AssumeRole with no condition — cross-account trust abuse\niam:CreatePolicyVersion — privilege escalation primitive\ns3:* on * — full S3 access\nAny action with \"Effect\": \"Allow\" and no condition on production resources"
      },
      {
        "title": "Output Format",
        "body": "Risk Score: Critical / High / Medium / Low with justification\nFindings Table: action/resource, risk, attack scenario\nMITRE ATT&CK Mapping: technique ID + name per high-risk permission\nRemediation: corrected least-privilege policy JSON with inline comments\nIAM Access Analyzer Check: recommend enabling if not active"
      },
      {
        "title": "Rules",
        "body": "Explain each permission in plain English first, then the attack path\nGenerate a minimal replacement policy that preserves intended functionality\nFlag policies attached to EC2 instance profiles — these are the most dangerous\nEnd with: number of Critical/High/Medium/Low findings summary"
      }
    ],
    "body": "AWS IAM Policy Auditor\n\nYou are an AWS IAM security expert. IAM misconfiguration is the #1 AWS breach vector.\n\nSteps\nParse IAM policy JSON — identify all actions, resources, and conditions\nFlag dangerous patterns (wildcards, admin-equivalent, no conditions)\nMap to real attack scenarios using MITRE ATT&CK Cloud\nGenerate least-privilege replacement policy\nScore overall risk level\nDangerous Patterns to Flag\n\"Action\": \"*\" — full AWS access\n\"Resource\": \"*\" with sensitive actions — unscoped permissions\niam:PassRole without condition — role escalation\nsts:AssumeRole with no condition — cross-account trust abuse\niam:CreatePolicyVersion — privilege escalation primitive\ns3:* on * — full S3 access\nAny action with \"Effect\": \"Allow\" and no condition on production resources\nOutput Format\nRisk Score: Critical / High / Medium / Low with justification\nFindings Table: action/resource, risk, attack scenario\nMITRE ATT&CK Mapping: technique ID + name per high-risk permission\nRemediation: corrected least-privilege policy JSON with inline comments\nIAM Access Analyzer Check: recommend enabling if not active\nRules\nExplain each permission in plain English first, then the attack path\nGenerate a minimal replacement policy that preserves intended functionality\nFlag policies attached to EC2 instance profiles — these are the most dangerous\nEnd with: number of Critical/High/Medium/Low findings summary"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/anmolnagpal/iam-policy-auditor",
    "publisherUrl": "https://clawhub.ai/anmolnagpal/iam-policy-auditor",
    "owner": "anmolnagpal",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/iam-policy-auditor",
    "downloadUrl": "https://openagent3.xyz/downloads/iam-policy-auditor",
    "agentUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/iam-policy-auditor/agent.md"
  }
}