From 891736ffc8681bf61ef595f04a3229bc47a55481 Mon Sep 17 00:00:00 2001 From: "pengjiahan.pjh" Date: Mon, 3 Nov 2025 16:43:35 +0800 Subject: [PATCH] fix:download owner --- README.md | 8 ++++---- src/specify_cli/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dd202a70..e74ca355 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ The `specify` command supports the following options: | Command | Description | |-------------|----------------------------------------------------------------| | `init` | Initialize a new Specify project from the latest template | -| `check` | Check for installed tools (`git`, `claude`, `gemini`, `code`/`code-insiders`, `cursor-agent`, `windsurf`, `qwen`, `opencode`, `codex`) | +| `check` | Check for installed tools (`git`, `claude`, `gemini`, `code`/`code-insiders`, `cursor-agent`, `windsurf`, `qwen`, `opencode`, `codex`, `qoder`) | ### `specify init` Arguments & Options @@ -190,15 +190,15 @@ specify init my-project --ai claude # Initialize with Cursor support specify init my-project --ai cursor-agent +# Initialize with Qoder support +specify init my-project --ai qoder + # Initialize with Windsurf support specify init my-project --ai windsurf # Initialize with Amp support specify init my-project --ai amp -# Initialize with Qoder support -specify init my-project --ai qoder - # Initialize with PowerShell scripts (Windows/cross-platform) specify init my-project --ai copilot --script ps diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index 36d8a4f9..842594a4 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -565,7 +565,7 @@ def merge_json_files(existing_path: Path, new_content: dict, verbose: bool = Fal return merged def download_template_from_github(ai_assistant: str, download_dir: Path, *, script_type: str = "sh", verbose: bool = True, show_progress: bool = True, client: httpx.Client = None, debug: bool = False, github_token: str = None) -> Tuple[Path, dict]: - repo_owner = "KUTEJiang" + repo_owner = "github" repo_name = "spec-kit" if client is None: client = httpx.Client(verify=ssl_context)