From 236bcb39877c29cf3dda082a0036bca76f37f0fe Mon Sep 17 00:00:00 2001 From: Satya Deep Maheshwari Date: Thu, 4 Dec 2025 18:05:07 +0530 Subject: [PATCH] docs: Add existing project initialization to getting started Add commands for initializing Spec Kit in existing projects directly in the installation section. Shows both `specify init .` and `specify init --here` options to make brownfield usage immediately discoverable. Fixes #1285 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d10860a0..27ab8372 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,15 @@ uv tool install specify-cli --from git+https://github.com/github/spec-kit.git Then use the tool directly: ```bash +# Create new project specify init + +# Or initialize in existing project +specify init . --ai claude +# or +specify init --here --ai claude + +# Check installed tools specify check ```