docs: add prerequisites and troubleshooting to SKILL.md

This commit is contained in:
Toru Makabe
2026-02-02 08:58:51 +09:00
parent 1b9ff37cf9
commit a6f3cde999

View File

@@ -20,6 +20,12 @@ Terraform's Set type compares by position rather than by key, so when adding or
These "false-positive diffs" don't actually affect the resources, but they make reviewing terraform plan output difficult.
## Prerequisites
- Python 3.8+
If Python is unavailable, install via your package manager (e.g., `apt install python3`, `brew install python3`) or from [python.org](https://www.python.org/downloads/).
## Basic Usage
```bash
@@ -31,6 +37,11 @@ terraform show -json plan.tfplan > plan.json
python scripts/analyze_plan.py plan.json
```
## Troubleshooting
- **`python: command not found`**: Use `python3` instead, or install Python
- **`ModuleNotFoundError`**: Script uses only standard library; ensure Python 3.8+
## Detailed Documentation
- [scripts/README.md](scripts/README.md) - All options, output formats, exit codes, CI/CD examples