YAML commands use ``.yaml`` extension.
(self, template_name: str)
| 1072 | """ |
| 1073 | |
| 1074 | def command_filename(self, template_name: str) -> str: |
| 1075 | """YAML commands use ``.yaml`` extension.""" |
| 1076 | return f"speckit.{template_name}.yaml" |
| 1077 | |
| 1078 | @staticmethod |
| 1079 | def _extract_frontmatter(content: str) -> dict[str, Any]: |