Skip to content

Commit 82ff180

Browse files
committed
✨ Update quick start prompt to include guidelines for git commit user stories and conventional commit message format
1 parent a374652 commit 82ff180

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/extension.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@ function buildQuickStartPrompt(userGoal: string, workspaceRoot: string): string
969969
`- Each user story should be granular enough to be independently executable and verifiable.`,
970970
`- Number user stories sequentially starting from "US-001".`,
971971
`- Do NOT include "passes" or "notes" fields in the user stories. Progress is tracked separately.`,
972+
`- After EVERY user story, insert a git commit user story. This story should stage all changes and commit them with a meaningful message describing what was done in the preceding user story. For example: { "id": "US-002", "title": "Git Commit: Setup Project Structure", "description": "Stage all changes and commit to git with message: 'feat: setup project structure and enums'", "acceptanceCriteria": ["All changes are staged", "Changes are committed with a descriptive message"], "priority": 2 }.`,
973+
`- The git commit stories must use conventional commit message format (feat:, fix:, refactor:, docs:, chore:, etc.).`,
972974
``,
973975
`IMPORTANT:`,
974976
`- DO NOT use any absolute, user-specific, or local system-specific paths, directories, namespaces, or usernames in any command or file path.`,

0 commit comments

Comments
 (0)