Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c0e7d14d5 | ||
|
|
55555eb39e | ||
|
|
df3e4930cc | ||
|
|
f3d55cff84 | ||
|
|
c6051a0b8a | ||
|
|
04cb5f00d4 | ||
|
|
e924a73625 | ||
|
|
e642acaea4 |
@@ -80,7 +80,7 @@ fi
|
|||||||
FEATURE_DIR="$SPECS_DIR/$BRANCH_NAME"
|
FEATURE_DIR="$SPECS_DIR/$BRANCH_NAME"
|
||||||
mkdir -p "$FEATURE_DIR"
|
mkdir -p "$FEATURE_DIR"
|
||||||
|
|
||||||
TEMPLATE="$REPO_ROOT/templates/spec-template.md"
|
TEMPLATE="$REPO_ROOT/.specify/templates/spec-template.md"
|
||||||
SPEC_FILE="$FEATURE_DIR/spec.md"
|
SPEC_FILE="$FEATURE_DIR/spec.md"
|
||||||
if [ -f "$TEMPLATE" ]; then cp "$TEMPLATE" "$SPEC_FILE"; else touch "$SPEC_FILE"; fi
|
if [ -f "$TEMPLATE" ]; then cp "$TEMPLATE" "$SPEC_FILE"; else touch "$SPEC_FILE"; fi
|
||||||
|
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ if ($hasGit) {
|
|||||||
$featureDir = Join-Path $specsDir $branchName
|
$featureDir = Join-Path $specsDir $branchName
|
||||||
New-Item -ItemType Directory -Path $featureDir -Force | Out-Null
|
New-Item -ItemType Directory -Path $featureDir -Force | Out-Null
|
||||||
|
|
||||||
$template = Join-Path $repoRoot 'templates/spec-template.md'
|
$template = Join-Path $repoRoot '.specify/templates/spec-template.md'
|
||||||
$specFile = Join-Path $featureDir 'spec.md'
|
$specFile = Join-Path $featureDir 'spec.md'
|
||||||
if (Test-Path $template) {
|
if (Test-Path $template) {
|
||||||
Copy-Item $template $specFile -Force
|
Copy-Item $template $specFile -Force
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ scripts:
|
|||||||
1. Load feature spec from Input path
|
1. Load feature spec from Input path
|
||||||
→ If not found: ERROR "No feature spec at {path}"
|
→ If not found: ERROR "No feature spec at {path}"
|
||||||
2. Fill Technical Context (scan for NEEDS CLARIFICATION)
|
2. Fill Technical Context (scan for NEEDS CLARIFICATION)
|
||||||
→ Detect Project Type from context (web=frontend+backend, mobile=app+api)
|
→ Detect Project Type from file system structure or context (web=frontend+backend, mobile=app+api)
|
||||||
→ Set Structure Decision based on project type
|
→ Set Structure Decision based on project type
|
||||||
3. Fill the Constitution Check section based on the content of the constitution document.
|
3. Fill the Constitution Check section based on the content of the constitution document.
|
||||||
4. Evaluate Constitution Check section below
|
4. Evaluate Constitution Check section below
|
||||||
@@ -69,8 +69,14 @@ specs/[###-feature]/
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Source Code (repository root)
|
### Source Code (repository root)
|
||||||
|
<!--
|
||||||
|
ACTION REQUIRED: Replace the placeholder tree below with the concrete layout
|
||||||
|
for this feature. Delete unused options and expand the chosen structure with
|
||||||
|
real paths (e.g., apps/admin, packages/something). The delivered plan must
|
||||||
|
not include Option labels.
|
||||||
|
-->
|
||||||
```
|
```
|
||||||
# Option 1: Single project (DEFAULT)
|
# [REMOVE IF UNUSED] Option 1: Single project (DEFAULT)
|
||||||
src/
|
src/
|
||||||
├── models/
|
├── models/
|
||||||
├── services/
|
├── services/
|
||||||
@@ -82,7 +88,7 @@ tests/
|
|||||||
├── integration/
|
├── integration/
|
||||||
└── unit/
|
└── unit/
|
||||||
|
|
||||||
# Option 2: Web application (when "frontend" + "backend" detected)
|
# [REMOVE IF UNUSED] Option 2: Web application (when "frontend" + "backend" detected)
|
||||||
backend/
|
backend/
|
||||||
├── src/
|
├── src/
|
||||||
│ ├── models/
|
│ ├── models/
|
||||||
@@ -97,15 +103,16 @@ frontend/
|
|||||||
│ └── services/
|
│ └── services/
|
||||||
└── tests/
|
└── tests/
|
||||||
|
|
||||||
# Option 3: Mobile + API (when "iOS/Android" detected)
|
# [REMOVE IF UNUSED] Option 3: Mobile + API (when "iOS/Android" detected)
|
||||||
api/
|
api/
|
||||||
└── [same as backend above]
|
└── [same as backend above]
|
||||||
|
|
||||||
ios/ or android/
|
ios/ or android/
|
||||||
└── [platform-specific structure]
|
└── [platform-specific structure: feature modules, UI flows, platform tests]
|
||||||
```
|
```
|
||||||
|
|
||||||
**Structure Decision**: [DEFAULT to Option 1 unless Technical Context indicates web/mobile app]
|
**Structure Decision**: [Document the selected structure and reference the real
|
||||||
|
directories captured above]
|
||||||
|
|
||||||
## Phase 0: Outline & Research
|
## Phase 0: Outline & Research
|
||||||
1. **Extract unknowns from Technical Context** above:
|
1. **Extract unknowns from Technical Context** above:
|
||||||
|
|||||||
Reference in New Issue
Block a user