@su-record/vibe 2.5.18 → 2.5.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -131,33 +131,50 @@ vibe status # Check current settings
131
131
 
132
132
  ## Process
133
133
 
134
- ### 0. Git Branch Setup (Automatic)
134
+ ### 0. Git Branch Setup (MANDATORY - Execute First!)
135
135
 
136
- **CRITICAL: Always create feature branch before starting SPEC**
136
+ > ⚠️ **CRITICAL: You MUST execute this step FIRST before anything else!**
137
+ > This is NOT optional documentation - you must RUN these git commands.
138
+
139
+ **Step 0 is BLOCKING - do not proceed to Step 1 until branch is ready.**
140
+
141
+ **Execute these commands using Bash tool:**
137
142
 
138
143
  ```bash
139
- # Check current branch
140
- current=$(git branch --show-current 2>/dev/null || echo "main")
141
-
142
- # Sanitize feature name (spaces → hyphens, lowercase)
143
- branch_name="feature/$(echo "{feature-name}" | tr '[:upper:]' '[:lower:]' | tr ' ' '-')"
144
-
145
- # Create feature branch if on main/master
146
- if [[ "$current" == "main" || "$current" == "master" ]]; then
147
- git checkout -b "$branch_name"
148
- echo " Created and switched to: $branch_name"
149
- else
150
- echo "ℹ️ Already on feature branch: $current"
151
- echo " Continue on this branch? (Y/n)"
152
- # If user says no, create new branch
153
- fi
144
+ # 1. Check current branch
145
+ git branch --show-current
146
+ ```
147
+
148
+ **Then based on result:**
149
+
150
+ | Current Branch | Action |
151
+ |----------------|--------|
152
+ | `main` or `master` | **MUST** create feature branch: `git checkout -b feature/{feature-name}` |
153
+ | `feature/*` | Ask user: "Continue on this branch or create new?" |
154
+ | Other | Ask user to confirm |
155
+
156
+ **Example execution:**
157
+
158
+ ```
159
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
160
+ 🌿 GIT BRANCH SETUP
161
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
162
+
163
+ Current branch: main
164
+
165
+ Creating feature branch...
166
+ $ git checkout -b feature/login-page
167
+
168
+ ✅ Switched to new branch: feature/login-page
169
+
170
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
154
171
  ```
155
172
 
156
- **Rules:**
157
- - If on `main`/`master` → **Always** create `feature/{feature-name}` branch
158
- - If already on feature branch → Ask user to confirm or create new branch
159
- - Branch naming: `feature/passkey-auth`, `feature/dark-mode`, etc.
160
- - Git check BEFORE starting requirements gathering
173
+ **Branch naming rules:**
174
+ - Convert to lowercase: `Login Page` → `login-page`
175
+ - Replace spaces with hyphens
176
+ - Prefix with `feature/`
177
+ - Example: `feature/passkey-auth`, `feature/dark-mode`
161
178
 
162
179
  ### 1. Project Analysis
163
180
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.5.18",
3
+ "version": "2.5.19",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",