You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Ensure POSIX .sh scripts under .specify/scripts (recursively) have execute bits (no-op on Windows)."""
764
811
ifos.name=="nt":
@@ -816,6 +863,9 @@ def init(
816
863
debug: bool=typer.Option(False, "--debug", help="Show verbose diagnostic output for network and extraction failures"),
817
864
github_token: str=typer.Option(None, "--github-token", help="GitHub token to use for API requests (or set GH_TOKEN or GITHUB_TOKEN environment variable)"),
818
865
team_ai_directives: str=typer.Option(None, "--team-ai-directive", "--team-ai-directives", help="Clone or update a team-ai-directives repository into .specify/memory"),
866
+
gateway_url: str=typer.Option(None, "--gateway-url", help="Optional central LLM gateway base URL (populates .specify/config/gateway.env)"),
867
+
gateway_token: str=typer.Option(None, "--gateway-token", help="Optional token used when calling the central LLM gateway"),
868
+
gateway_suppress_warning: bool=typer.Option(False, "--gateway-suppress-warning", help="Suppress gateway missing warnings for this project"),
819
869
):
820
870
"""
821
871
Initialize a new Specify project from the latest template.
@@ -848,6 +898,7 @@ def init(
848
898
specify init --here
849
899
specify init --here --force # Skip confirmation when current directory not empty
0 commit comments