一键导入
parse-debug-logs
Parses massive Terraform debug logs into an easy-to-read outline of API delays, failures, and request payloads.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Parses massive Terraform debug logs into an easy-to-read outline of API delays, failures, and request payloads.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Skill for reviewing Magic Modules schemas. Currently covers the Enum vs. String decision via the knowledge base.
Opt resource into MMv1 list-resource generation by setting `generate_list_resource: true`, validate it locally, and open a one-resource PR against GoogleCloudPlatform/magic-modules. Invoke when the user asks to add list-resource support for a specific MMv1 resource or to enable `generate_list_resource` for an eligible resource.
Fallback workflow for general implementation and debugging tasks that do not involve creating a new resource.
Workflow specifically for creating a new resource, supporting both autogen and manual generation.
Create a Pull Request (PR) against GoogleCloudPlatform/magic-modules following repository standards, including branch management, commit formatting, mandatory release notes, pre-PR verification checks, and gh CLI commands.
Validate that changes to the generated providers don't introduce breaking changes or fields with missing tests or missing documentation. Use this skill when the user wants to check for breaking changes, missing tests, or missing documentation, or other problems in the downstream providers.
| name | parse-debug-logs |
| description | Parses massive Terraform debug logs into an easy-to-read outline of API delays, failures, and request payloads. |
parse-debug-logsNote to AI Agents: You MUST read the YAML frontmatter above first. Only read the rest of this file if the
descriptionmatches your current roadblock or required task.
run-acctests execution (e.g., test_output.log).Verify the log file exists.
# Replace /path/to/test_output.log with the actual path
ls -lh /path/to/test_output.log
Execute the tf_debug_parser.py script against the debug logs.
# Execute the parser to extract the outline
python3 <PATH_TO_MAGIC_MODULES>/.agents/scripts/tf_debug_parser.py /path/to/test_output.log --extract-dir <PATH_TO_MAGIC_MODULES>/debug_output
view_file tool to read the generated outline.txt INSIDE the output directory (or its subdirectory if the script creates one). It contains a compressed timeline of API requests/responses and Terraform state transitions.view_file on the specific JSON payload file referenced in outline.txt (e.g., 01_REQUEST_POST.json) found in that same directory..agents/skills/operations/troubleshooting_reference.md document to map the failure to a known fix strategy before invoking the fix workflow.