.claude/skills/cur-data/SKILL.md
Knowledge about AWS Cost and Usage Report data structure, column formats, and analysis patterns
npx skillsauth add t-klug/aws-cur-report-generator cur-dataInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The project supports three CUR file formats:
AWS CUR has two naming conventions. The data processor handles both:
| Canonical Name | Old Format | New Format |
|----------------|------------|------------|
| cost | lineItem/UnblendedCost | line_item_unblended_cost |
| account_id | lineItem/UsageAccountId | line_item_usage_account_id |
| service | product/ProductName | product_product_name |
| date | lineItem/UsageStartDate | line_item_usage_start_date |
| region | product/Region | product_region |
| line_item_type | lineItem/LineItemType | line_item_line_item_type |
# Unblended cost - actual cost before discounts
line_item_unblended_cost
# Blended cost - averaged across organization
line_item_blended_cost
# Net cost - after discounts applied
line_item_net_unblended_cost
# Usage amount
line_item_usage_amount
LINE_ITEM_TYPES = {
'Usage': 'Normal usage charges',
'Tax': 'Tax charges',
'Fee': 'AWS fees',
'Refund': 'Refunds/credits',
'Credit': 'Applied credits',
'RIFee': 'Reserved Instance fees',
'DiscountedUsage': 'RI/SP discounted usage',
'SavingsPlanCoveredUsage': 'Savings Plan usage',
'SavingsPlanNegation': 'SP cost adjustment',
'SavingsPlanUpfrontFee': 'SP upfront payment',
'SavingsPlanRecurringFee': 'SP monthly fee',
'BundledDiscount': 'Free tier/bundled',
'EdpDiscount': 'Enterprise discount',
}
To identify discounts and credits:
discount_types = ['Credit', 'Refund', 'EdpDiscount', 'BundledDiscount']
discounts = df[df['line_item_type'].isin(discount_types)]
Key columns for savings plans:
savings_plan_columns = [
'savings_plan_savings_plan_arn',
'savings_plan_savings_plan_rate',
'savings_plan_used_commitment',
'savings_plan_total_commitment_to_date',
]
# Cost by service
df.groupby('service').agg({'cost': 'sum'}).sort_values('cost', ascending=False)
# Cost by account and service
df.groupby(['account_id', 'service']).agg({'cost': 'sum'})
# Daily trends
df.groupby(df['date'].dt.date).agg({'cost': 'sum'})
# Monthly summary
df.groupby(df['date'].dt.to_period('M')).agg({'cost': 'sum'})
The project uses z-score based detection:
mean = daily_costs.mean()
std = daily_costs.std()
z_scores = (daily_costs - mean) / std
anomalies = daily_costs[abs(z_scores) > 2] # 2 std deviations
Test fixtures provide 6 months of data:
development
Knowledge about pyecharts chart creation, HTML report generation, and visualization best practices
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.