From 42cb679a7044957d019c1d9442643aeba82a3489 Mon Sep 17 00:00:00 2001 From: Alex Bespoyasov Date: Thu, 3 Sep 2026 16:02:57 +0200 Subject: [PATCH] feat: init git repo if not present when scaffolding --- src/features/onboarding/steps/scaffold.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/onboarding/steps/scaffold.md b/src/features/onboarding/steps/scaffold.md index afc9c08..56b15bc 100644 --- a/src/features/onboarding/steps/scaffold.md +++ b/src/features/onboarding/steps/scaffold.md @@ -8,3 +8,4 @@ The project directory is empty. Generate a sample application for {{FRAMEWORK}}: - Create a runnable entry point with a main function or equivalent - Include at least one user-facing feature or behavior that can later be controlled by a feature flag (e.g. a greeting message, a theme, an output format, or a premium feature gate) - Include a README.md with a one-liner on how to run the app +- If the project directory is not already a git repository, initialize one (`git init` and an initial commit) so that IDE agents can operate in the project directory