specflow-cc 1.7.0 → 1.7.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/CHANGELOG.md +8 -0
- package/agents/spec-auditor.md +22 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ 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.1] - 2026-01-30
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- `/sf:audit` now shows `/sf:revise` option when recommendations exist (previously only showed `/sf:run`)
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
8
16
|
## [1.7.0] - 2026-01-28
|
|
9
17
|
|
|
10
18
|
### 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>
|