File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed
Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 2727
2828- chore: bump version to 0.3.1
2929- docs: add greenfield Spring Boot pirate-speak preset demo to README (#1878 )
30- - fix(ai-skills): exclude non-speckit copilot agent markdown from skill… (#1867 )
30+ - fix(ai-skills): exclude non-speckit copilot agent markdown from skills (#1867 )
3131- feat: add Trae IDE support as a new agent (#1817 )
3232- feat(cli): polite deep merge for settings.json and support JSONC (#1874 )
3333- feat(extensions,presets): add priority-based resolution ordering (#1855 )
282282
283283- Add pytest and Python linting (ruff) to CI (#1637 )
284284- feat: add pull request template for better contribution guidelines (#1634 )
285-
286- ## [ 0.0.99] - 2026-02-19
287-
288- - Feat/ai skills (#1632 )
Original file line number Diff line number Diff line change @@ -1927,18 +1927,12 @@ def init(
19271927
19281928 # Determine whether to use bundled assets or download from GitHub (default).
19291929 # --offline opts in to bundled assets; without it, always use GitHub.
1930+ # When --offline is set, scaffold_from_core_pack() will try the wheel's
1931+ # core_pack/ first, then fall back to source-checkout paths. If neither
1932+ # location has the required assets it returns False and we error out.
19301933 _core = _locate_core_pack ()
19311934
1932- if offline and _core is None :
1933- console .print (
1934- "\n [red]Error:[/red] --offline requires a wheel install with bundled assets.\n "
1935- " Install the specify-cli wheel (it must contain core_pack/).\n "
1936- " See: docs/installation.md → Enterprise / Air-Gapped Installation\n "
1937- "Remove --offline to download from GitHub instead."
1938- )
1939- raise typer .Exit (1 )
1940-
1941- use_github = not (offline and _core is not None )
1935+ use_github = not offline
19421936
19431937 if use_github and _core is not None :
19441938 console .print (
You can’t perform that action at this time.
0 commit comments