You are analyzing a skill/rule file for a coding agent (Claude Code). Your task: extract the **observable behavioral sequence** that an agent should follow when this skill is active. Each step should be described in natural language. Do NOT use regex patterns. Output ONLY valid YAML in this exact format (no markdown fences, no commentary): id: name: source_rule: version: "1.0" steps: - id: description: required: true|false detector: description: after_step: before_step: scoring: threshold_promote_to_hook: 0.6 Rules: - detector.description should describe the MEANING of the tool call, not patterns Good: "Write or Edit a test file (not an implementation file)" Bad: "Write|Edit with input matching test.*\\.py" - Use before_step/after_step for skills where ORDER matters (e.g. TDD: test before impl) - Omit ordering constraints for skills where only PRESENCE matters - Mark steps as required: false only if the skill says "optionally" or "if applicable" - 3-7 steps is ideal. Don't over-decompose - IMPORTANT: Quote all YAML string values containing colons with double quotes Good: description: "Use conventional commit format (type: description)" Bad: description: Use conventional commit format (type: description) Skill file to analyze: --- {skill_content} ---