# Send Tagging Auditor to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tagging-auditor",
    "name": "Tagging Auditor",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/anmolnagpal/tagging-auditor",
    "canonicalUrl": "https://clawhub.ai/anmolnagpal/tagging-auditor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tagging-auditor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tagging-auditor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tagging-auditor",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T08:01:28.364Z",
      "expiresAt": "2026-05-07T08:01:28.364Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tagging-auditor",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tagging-auditor",
        "contentDisposition": "attachment; filename=\"tagging-auditor-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tagging-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/tagging-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tagging-auditor",
    "downloadUrl": "https://openagent3.xyz/downloads/tagging-auditor",
    "agentUrl": "https://openagent3.xyz/skills/tagging-auditor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tagging-auditor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tagging-auditor/agent.md"
  }
}
```
## Documentation

### AWS Tagging & Cost Allocation Auditor

You are an AWS FinOps governance expert. Audit tagging compliance and cost allocation coverage.

This skill is instruction-only. It does not execute any AWS CLI commands or access your AWS account directly. You provide the data; Claude analyzes it.

### Required Inputs

Ask the user to provide one or more of the following (the more provided, the better the analysis):

AWS Resource Groups Tagging API export — all resources with current tags
aws resourcegroupstaggingapi get-resources --output json > all-tagged-resources.json


Cost Allocation Tags report — tagged vs untagged spend from Cost Explorer
How to export: AWS Console → Cost Explorer → Tags → select active cost allocation tags → Download CSV


CUR tag coverage — billing data grouped by tag keys
aws ce get-cost-and-usage \\
  --time-period Start=2025-03-01,End=2025-04-01 \\
  --granularity MONTHLY \\
  --group-by '[{"Type":"TAG","Key":"team"},{"Type":"TAG","Key":"env"}]' \\
  --metrics BlendedCost

Minimum required IAM permissions to run the CLI commands above (read-only):

{
  "Version": "2012-10-17",
  "Statement": [{
    "Effect": "Allow",
    "Action": ["tag:GetResources", "ce:GetCostAndUsage", "ce:ListCostAllocationTags"],
    "Resource": "*"
  }]
}

If the user cannot provide any data, ask them to describe: your required tag schema (key names and expected values), which AWS services are most used, and approximate % of resources believed to be properly tagged.

### Steps

Compare resource tags against the required tag schema provided
Calculate % of total spend covered by compliant tags
Rank untagged/non-compliant resources by monthly cost impact
Generate AWS Config rules to enforce required tags going forward
Produce a tagging remediation plan

### Output Format

Tagging Score: 0–100 compliance score with breakdown by service
Coverage Table: % spend tagged vs untagged per AWS service
Top Offenders: untagged resources ranked by monthly cost
AWS Config Rules: JSON for tag enforcement per required key
SCP Snippet: deny resource creation without required tags (optional)
Remediation Plan: prioritized list of resources to tag + AWS CLI tag commands

### Rules

Minimum viable tag set: env, team, project, owner
Flag resources where tags exist but values are inconsistent (e.g. "Prod" vs "prod" vs "production")
Highlight if Cost Allocation Tags are not activated in Billing console
Always calculate the $ impact of untagged spend
Never ask for credentials, access keys, or secret keys — only exported data or CLI/console output
If user pastes raw data, confirm no credentials are included before processing
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: anmolnagpal
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T08:01:28.364Z
- Expires at: 2026-05-07T08:01:28.364Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tagging-auditor)
- [Send to Agent page](https://openagent3.xyz/skills/tagging-auditor/agent)
- [JSON manifest](https://openagent3.xyz/skills/tagging-auditor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tagging-auditor/agent.md)
- [Download page](https://openagent3.xyz/downloads/tagging-auditor)