Method
__init__
(self, project_root: Path)
Source from the content-addressed store, hash-verified
| 634 | SCHEMA_VERSION = "1.0" |
| 635 | |
| 636 | def __init__(self, project_root: Path) -> None: |
| 637 | self.project_root = project_root |
| 638 | self.steps_dir = project_root / ".specify" / "workflows" / "steps" |
| 639 | self.registry_path = self.steps_dir / self.REGISTRY_FILE |
| 640 | self.data = self._load() |
| 641 | |
| 642 | def _has_symlinked_parent(self) -> bool: |
| 643 | """Return True if any directory under .specify/workflows/steps is a symlink.""" |
Callers
nothing calls this directly
Tested by
no test coverage detected