()
| 48 | |
| 49 | |
| 50 | def _user_config_dir() -> Path: |
| 51 | # User-scope Spec Kit config lives under ~/.specify (same convention as |
| 52 | # auth.json, extension/preset catalogs). Passing this through to the source |
| 53 | # stack is what makes the documented project > user > built-in precedence |
| 54 | # reachable from the CLI. |
| 55 | return Path.home() / ".specify" |
| 56 | |
| 57 | |
| 58 | def _build_stack(project_root: Path, *, offline: bool): |
no outgoing calls
no test coverage detected