.github/skills/readme-resource-table/SKILL.md
Update the resource status table in README.md to reflect current resource support. Adds new rows, updates existing entries, and marks support status. Triggers on: after adding/updating resources in resourceDefinition.json.
npx skillsauth add aztfmod/terraform-provider-azurecaf readme-resource-tableInstall 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.
Locate the resource status table in README.md. It is typically inside a <details> block or a markdown table listing supported resource types with their slugs and status.
grep -n "resource_type\|slug\|azurerm_" README.md | head -40
Extract all resource names from resourceDefinition.json:
grep '"name":' resourceDefinition.json | sed 's/.*"name": "//;s/".*//' | sort
Cross-reference the README table against resourceDefinition.json. Identify:
For each new or changed resource, format the row following the existing table structure in README.md. Maintain alphabetical ordering within each category.
After updating, ensure:
resourceDefinition.json entry countdevelopment
Analyze test failure output to identify root cause and suggest fixes. Use when build or test failures occur. Triggers on: test failures, build errors, CI failures.
development
Validate a resource definition end-to-end using terraform test with mock_provider azurerm. Proves the CAF-generated name is accepted by the azurerm provider schema without Azure credentials. Use after provider-build-test succeeds to run the mocked azurerm integration test.
documentation
Analyze changes since the last release tag and determine the appropriate semantic version bump (patch/minor/major) based on CHANGELOG entries and commit types. Triggers on: release preparation, version planning.
testing
Compare two versions of resourceDefinition.json (e.g., branch vs main) and produce a structured change summary. Triggers on: PR review, audit, before/after comparison.