From 39f30babe6e60b8674a65a1e78483786453e3c37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Den=20Delimarsky=20=F0=9F=8C=BA?= <53200638+localden@users.noreply.github.com> Date: Fri, 22 Aug 2025 10:07:28 -0700 Subject: [PATCH] Update project name --- README.md | 2 +- src/specify_cli/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c21fe82ce..dbb6352fb 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Spec-Driven Development **flips the script** on traditional software development Initialize your project depending on the coding agent you're using: ```bash -uvx --from git+https://github.com/localden/sdd.git specify init +uvx --from git+https://github.com/github/spec-kit.git specify init ``` ### 2. Create the spec diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index a63dd45dc..07103626a 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -389,8 +389,8 @@ def download_template_from_github(ai_assistant: str, download_dir: Path, *, verb """Download the latest template release from GitHub using HTTP requests. Returns (zip_path, metadata_dict) """ - repo_owner = "localden" - repo_name = "sdd" + repo_owner = "github" + repo_name = "spec-kit" if verbose: console.print("[cyan]Fetching latest release information...[/cyan]")