jdd-sprint-kit 0.4.0 → 0.4.1
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.
package/package.json
CHANGED
|
@@ -78,7 +78,12 @@ Parse `$ARGUMENTS` — 2 entry points, 1 pipeline:
|
|
|
78
78
|
3. **Verify specs/{feature_name}/ exists**:
|
|
79
79
|
If missing → auto-create + guide:
|
|
80
80
|
a. Create `specs/{feature_name}/inputs/`
|
|
81
|
-
b. Generate `specs/{feature_name}/inputs/brief.md` template:
|
|
81
|
+
b. Generate `specs/{feature_name}/inputs/brief.md` template (in {document_output_language}):
|
|
82
|
+
Section headings and placeholder text must be written in {document_output_language}.
|
|
83
|
+
HTML comments (guidance for the user) are written in {communication_language}.
|
|
84
|
+
The `## Reference Sources` section heading and sub-section headings are always in English (machine-parseable).
|
|
85
|
+
|
|
86
|
+
Example (when document_output_language=Korean, communication_language=Korean):
|
|
82
87
|
```markdown
|
|
83
88
|
# {feature_name}
|
|
84
89
|
|
|
@@ -88,7 +93,7 @@ Parse `$ARGUMENTS` — 2 entry points, 1 pipeline:
|
|
|
88
93
|
## 만들어야 할 기능
|
|
89
94
|
(구체적인 기능을 설명하세요)
|
|
90
95
|
|
|
91
|
-
##
|
|
96
|
+
## Reference Sources
|
|
92
97
|
|
|
93
98
|
### GitHub
|
|
94
99
|
<!-- 기존 서비스 코드가 있으면 URL과 탐색 힌트를 작성하세요 -->
|
|
@@ -99,11 +104,11 @@ Parse `$ARGUMENTS` — 2 entry points, 1 pipeline:
|
|
|
99
104
|
<!-- Figma 디자인 URL이 있으면 작성하세요 -->
|
|
100
105
|
<!-- - https://figma.com/design/{fileKey}/... -->
|
|
101
106
|
|
|
102
|
-
###
|
|
107
|
+
### Policy Docs
|
|
103
108
|
<!-- Scanner가 우선 탐색할 정책/도메인 문서명 -->
|
|
104
109
|
<!-- - document-name.md -->
|
|
105
110
|
|
|
106
|
-
###
|
|
111
|
+
### Scan Notes
|
|
107
112
|
<!-- Brownfield 탐색 시 참고할 자유 형식 메모 -->
|
|
108
113
|
```
|
|
109
114
|
c. Message (in {communication_language}):
|
|
@@ -281,16 +286,16 @@ See `_bmad/docs/sprint-input-format.md` for reference analysis format.
|
|
|
281
286
|
- 5 or fewer: include all (default: included in Sprint scope)
|
|
282
287
|
- Over 5: include top 3, rest as "next Sprint candidates"
|
|
283
288
|
4. **Contradiction detection**: Record contradictions between Brief and references in Detected Contradictions (no auto-resolution)
|
|
284
|
-
5. **Parse
|
|
285
|
-
- Detect heading: `##
|
|
286
|
-
- Parse sub-sections:
|
|
287
|
-
- `### GitHub`: extract URLs + per-URL notes (indented text below URL)
|
|
289
|
+
5. **Parse Reference Sources section from brief.md** (if exists):
|
|
290
|
+
- Detect heading (canonical → fallback): `## Reference Sources` / `## 참고 소스` / `## References`
|
|
291
|
+
- Parse sub-sections (canonical → fallback):
|
|
292
|
+
- `### GitHub` / `### GitHub`: extract URLs + per-URL notes (indented text below URL)
|
|
288
293
|
- URL pattern: `https://github.com/{owner}/{repo}` (`.git` suffix auto-strip)
|
|
289
294
|
- Notes: non-URL indented lines below each URL
|
|
290
|
-
- `### Figma`: extract URLs + notes
|
|
295
|
+
- `### Figma` / `### Figma`: extract URLs + notes
|
|
291
296
|
- URL pattern: `https://figma.com/design/{fileKey}/...` or `.../file/{fileKey}/...`
|
|
292
|
-
- `###
|
|
293
|
-
- `###
|
|
297
|
+
- `### Policy Docs` / `### 정책 문서`: collect document names (line items)
|
|
298
|
+
- `### Scan Notes` / `### 탐색 메모`: collect as free-text
|
|
294
299
|
- 참고 소스 섹션의 GitHub repos는 사용자 명시 의도 → AskUserQuestion 없이 다운로드 대상 확정
|
|
295
300
|
- 섹션이 없거나 비어있으면 → skip (기존 auto-detect만 사용)
|
|
296
301
|
- HTML 주석으로 감싸인 라인 (`<!-- ... -->`)은 skip (템플릿 상태 그대로)
|