specflow-cc 1.7.0 → 1.7.2
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/CHANGELOG.md +20 -0
- package/agents/spec-auditor.md +22 -2
- package/commands/sf/audit.md +5 -7
- package/commands/sf/done.md +11 -14
- package/commands/sf/fix.md +1 -1
- package/commands/sf/new.md +3 -5
- package/commands/sf/review.md +4 -4
- package/commands/sf/revise.md +3 -3
- package/commands/sf/run.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ All notable changes to SpecFlow will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.7.2] - 2026-01-30
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Standardized output format across all commands:
|
|
13
|
+
- Unified bullet points to `•` for options
|
|
14
|
+
- Unified "Next Step" section naming (singular)
|
|
15
|
+
- Unified file reference format with 📄 emoji
|
|
16
|
+
- Replaced `<sub>` tags with "Tip:" and "Note:" prefixes
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## [1.7.1] - 2026-01-30
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- `/sf:audit` now shows `/sf:revise` option when recommendations exist (previously only showed `/sf:run`)
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
8
28
|
## [1.7.0] - 2026-01-28
|
|
9
29
|
|
|
10
30
|
### Added
|
package/agents/spec-auditor.md
CHANGED
|
@@ -541,7 +541,8 @@ N+1. [recommendation]
|
|
|
541
541
|
## Step 8: Update STATE.md
|
|
542
542
|
|
|
543
543
|
Update status:
|
|
544
|
-
- If APPROVED: Status → "audited", Next Step → "/sf:run"
|
|
544
|
+
- If APPROVED (no recommendations): Status → "audited", Next Step → "/sf:run"
|
|
545
|
+
- If APPROVED (with recommendations): Status → "audited", Next Step → "/sf:run or /sf:revise"
|
|
545
546
|
- If NEEDS_DECOMPOSITION: Status → "needs_decomposition", Next Step → "/sf:split or /sf:run --parallel"
|
|
546
547
|
- If NEEDS_REVISION: Status → "revision_requested", Next Step → "/sf:revise"
|
|
547
548
|
|
|
@@ -609,7 +610,7 @@ Choose one:
|
|
|
609
610
|
|
|
610
611
|
---
|
|
611
612
|
|
|
612
|
-
{If APPROVED:}
|
|
613
|
+
{If APPROVED without recommendations:}
|
|
613
614
|
|
|
614
615
|
### Summary
|
|
615
616
|
|
|
@@ -618,6 +619,25 @@ Choose one:
|
|
|
618
619
|
### Next Step
|
|
619
620
|
|
|
620
621
|
`/sf:run` — implement specification
|
|
622
|
+
|
|
623
|
+
---
|
|
624
|
+
|
|
625
|
+
{If APPROVED with recommendations:}
|
|
626
|
+
|
|
627
|
+
### Summary
|
|
628
|
+
|
|
629
|
+
[Brief comment on spec quality]
|
|
630
|
+
|
|
631
|
+
### Recommendations (Optional)
|
|
632
|
+
|
|
633
|
+
N. [recommendation]
|
|
634
|
+
N+1. [recommendation]
|
|
635
|
+
|
|
636
|
+
### Next Steps
|
|
637
|
+
|
|
638
|
+
Choose one:
|
|
639
|
+
- `/sf:run` — implement specification as-is
|
|
640
|
+
- `/sf:revise` — apply optional recommendations first ({N} items)
|
|
621
641
|
```
|
|
622
642
|
|
|
623
643
|
</output>
|
package/commands/sf/audit.md
CHANGED
|
@@ -184,7 +184,7 @@ Options:
|
|
|
184
184
|
• `/sf:revise 1,2,5` — apply specific items
|
|
185
185
|
• `/sf:discuss SPEC-XXX` — discuss items before deciding
|
|
186
186
|
|
|
187
|
-
|
|
187
|
+
Note: External feedback should be critically evaluated, not blindly applied.
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
Exit.
|
|
@@ -357,7 +357,7 @@ fi
|
|
|
357
357
|
|
|
358
358
|
---
|
|
359
359
|
|
|
360
|
-
## Next
|
|
360
|
+
## Next Step
|
|
361
361
|
|
|
362
362
|
Choose one:
|
|
363
363
|
• `/sf:run` — implement specification as-is
|
|
@@ -394,11 +394,9 @@ Choose one:
|
|
|
394
394
|
`/sf:revise` — address critical issues
|
|
395
395
|
|
|
396
396
|
Options:
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
<sub>Optional: `/sf:discuss SPEC-XXX` — clarify requirements before revising</sub>
|
|
397
|
+
• `/sf:revise all` — apply all feedback
|
|
398
|
+
• `/sf:revise 1,2` — fix specific issues
|
|
399
|
+
• `/sf:revise [instructions]` — custom changes
|
|
402
400
|
```
|
|
403
401
|
|
|
404
402
|
</workflow>
|
package/commands/sf/done.md
CHANGED
|
@@ -337,30 +337,27 @@ git commit -m "docs(sf): complete SPEC-XXX
|
|
|
337
337
|
- **Audit cycles:** {count}
|
|
338
338
|
- **Review cycles:** {count}
|
|
339
339
|
|
|
340
|
-
### Archived To
|
|
341
|
-
|
|
342
|
-
`.specflow/archive/SPEC-XXX.md`
|
|
343
|
-
|
|
344
340
|
{If decisions extracted:}
|
|
345
341
|
### Decisions Recorded
|
|
346
342
|
|
|
347
|
-
|
|
348
|
-
|
|
343
|
+
• {decision 1}
|
|
344
|
+
• {decision 2}
|
|
349
345
|
|
|
350
346
|
---
|
|
351
347
|
|
|
352
|
-
|
|
348
|
+
📄 File: .specflow/archive/SPEC-XXX.md
|
|
353
349
|
|
|
354
|
-
|
|
355
|
-
**Next in queue:** SPEC-YYY — {title}
|
|
350
|
+
---
|
|
356
351
|
|
|
357
|
-
|
|
352
|
+
## Next Step
|
|
358
353
|
|
|
359
|
-
{If queue
|
|
360
|
-
|
|
354
|
+
{If queue has more specs:}
|
|
355
|
+
`/sf:next` — start next specification (SPEC-YYY)
|
|
361
356
|
|
|
362
|
-
|
|
363
|
-
|
|
357
|
+
{If queue is empty:}
|
|
358
|
+
Choose one:
|
|
359
|
+
• `/sf:new "task"` — create new specification
|
|
360
|
+
• `/sf:todos` — see pending ideas
|
|
364
361
|
```
|
|
365
362
|
|
|
366
363
|
</workflow>
|
package/commands/sf/fix.md
CHANGED
package/commands/sf/new.md
CHANGED
|
@@ -141,11 +141,11 @@ The agent will:
|
|
|
141
141
|
|
|
142
142
|
### Assumptions Made
|
|
143
143
|
|
|
144
|
-
|
|
144
|
+
• [List assumptions agent made]
|
|
145
145
|
|
|
146
146
|
---
|
|
147
147
|
|
|
148
|
-
📄
|
|
148
|
+
📄 File: .specflow/specs/SPEC-XXX.md
|
|
149
149
|
|
|
150
150
|
---
|
|
151
151
|
|
|
@@ -153,9 +153,7 @@ The agent will:
|
|
|
153
153
|
|
|
154
154
|
`/sf:audit` — audit specification before implementation
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
<sub>Optional: `/sf:discuss SPEC-XXX` — clarify assumptions before audit</sub>
|
|
156
|
+
Tip: `/clear` recommended — auditor needs fresh context
|
|
159
157
|
|
|
160
158
|
{If complexity is large:}
|
|
161
159
|
|
package/commands/sf/review.md
CHANGED
|
@@ -260,7 +260,7 @@ fi
|
|
|
260
260
|
|
|
261
261
|
---
|
|
262
262
|
|
|
263
|
-
## Next
|
|
263
|
+
## Next Step
|
|
264
264
|
|
|
265
265
|
Choose one:
|
|
266
266
|
• `/sf:done` — finalize and archive as-is
|
|
@@ -309,9 +309,9 @@ Choose one:
|
|
|
309
309
|
`/sf:fix` — address the issues
|
|
310
310
|
|
|
311
311
|
Options:
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
312
|
+
• `/sf:fix all` — apply all fixes
|
|
313
|
+
• `/sf:fix 1,2` — fix specific issues
|
|
314
|
+
• `/sf:fix [instructions]` — custom fixes
|
|
315
315
|
```
|
|
316
316
|
|
|
317
317
|
</workflow>
|
package/commands/sf/revise.md
CHANGED
|
@@ -360,7 +360,7 @@ The agent will:
|
|
|
360
360
|
|
|
361
361
|
`/sf:audit` — re-audit revised specification
|
|
362
362
|
|
|
363
|
-
|
|
363
|
+
Tip: `/clear` recommended — auditor needs fresh context
|
|
364
364
|
```
|
|
365
365
|
|
|
366
366
|
**For external audit:**
|
|
@@ -395,7 +395,7 @@ Items {N, M} require clarification before deciding.
|
|
|
395
395
|
|
|
396
396
|
---
|
|
397
397
|
|
|
398
|
-
## Next
|
|
398
|
+
## Next Step
|
|
399
399
|
|
|
400
400
|
{If items need discussion:}
|
|
401
401
|
`/sf:discuss SPEC-XXX` — clarify items {N, M}
|
|
@@ -404,7 +404,7 @@ Items {N, M} require clarification before deciding.
|
|
|
404
404
|
`/sf:audit` — re-audit with applied changes
|
|
405
405
|
|
|
406
406
|
{If deferred items exist:}
|
|
407
|
-
|
|
407
|
+
Note: Deferred items saved to `.specflow/todos/` for future consideration.
|
|
408
408
|
```
|
|
409
409
|
|
|
410
410
|
</workflow>
|
package/commands/sf/run.md
CHANGED