You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/commands/plan.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,8 +62,6 @@ You **MUST** consider the user input before proceeding (if not empty).
62
62
63
63
1. **Setup**: Run `{SCRIPT}` from repo root and parse JSON for FEATURE_SPEC, IMPL_PLAN, SPECS_DIR, BRANCH, and NESTED_REPOS. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'\''m Groot' (or double-quote if possible: "I'm Groot").
64
64
65
-
**Nested repo scan depth**: Check `.specify/init-options.json` for `nested_repo_scan_depth`. If present, pass `--scan-depth N` (Bash) or `-ScanDepth N` (PowerShell) to the script.
Copy file name to clipboardExpand all lines: templates/commands/specify.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,6 @@ Given that feature description, do this:
106
106
- You must only create one feature per `/speckit.specify` invocation
107
107
- The spec directory name and the git branch name are independent — they may be the same but that is the user's choice
108
108
- The spec directory and file are always created by this command, never by the hook
109
-
- **Note**: Nested git repository branching is handled during the `/speckit.plan` and `/speckit.tasks` phases, not here. The plan identifies affected repos and tasks generates a setup task for branch creation.
110
109
111
110
4. Load `templates/spec-template.md` to understand required sections.
Copy file name to clipboardExpand all lines: templates/commands/tasks.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ You **MUST** consider the user input before proceeding (if not empty).
68
68
3. **Execute task generation workflow**:
69
69
- Load plan.md and extract tech stack, libraries, project structure
70
70
- Load spec.md and extract user stories with their priorities (P1, P2, P3, etc.)
71
-
- If plan.md contains an "Affected Nested Repositories" section: extract the repo paths and reasons. Generate a setup task (in Phase 1) to create the feature branch in each affected nested repo using `git -C <repo_path> checkout -b <BRANCH_NAME>`. The branch name comes from the current feature branch.
71
+
- If plan.md contains an "Affected Nested Repositories" section: extract the repo paths and reasons. Generate a setup task (in Phase 1) to create the feature branch in each affected nested repo using `git -C "<repo_path>" checkout -b "<BRANCH_NAME>"`. The branch name comes from the current feature branch.
72
72
- If data-model.md exists: Extract entities and map to user stories
73
73
- If contracts/ exists: Map interface contracts to user stories
74
74
- If research.md exists: Extract decisions for setup tasks
0 commit comments