cclaw-cli 0.48.26 → 0.48.28
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/dist/content/contracts.js +3 -2
- package/dist/content/stage-schema.d.ts +3 -3
- package/dist/content/stage-schema.js +106 -4
- package/dist/content/stages/_lint-metadata/index.d.ts +2 -0
- package/dist/content/stages/_lint-metadata/index.js +79 -0
- package/dist/content/stages/brainstorm.js +141 -139
- package/dist/content/stages/design.js +244 -242
- package/dist/content/stages/plan.js +0 -1
- package/dist/content/stages/review.js +0 -1
- package/dist/content/stages/schema-types.d.ts +68 -2
- package/dist/content/stages/scope.js +216 -207
- package/dist/content/stages/ship.js +0 -7
- package/dist/content/stages/spec.js +0 -1
- package/dist/content/stages/tdd.d.ts +2 -2
- package/dist/content/stages/tdd.js +0 -2
- package/package.json +1 -1
|
@@ -100,7 +100,6 @@ export const TDD = {
|
|
|
100
100
|
"No full-suite GREEN evidence",
|
|
101
101
|
"Multiple tasks implemented in one pass without justification"
|
|
102
102
|
],
|
|
103
|
-
policyNeedles: ["RED", "GREEN", "REFACTOR", "failing test", "full test suite", "acceptance criteria", "traceable to plan slice"],
|
|
104
103
|
artifactFile: "06-tdd.md",
|
|
105
104
|
next: "review",
|
|
106
105
|
reviewSections: [
|
|
@@ -216,7 +215,6 @@ function tddQuickTrackVariant() {
|
|
|
216
215
|
requiredEvidence: TDD.requiredEvidence.map(quickTrackText),
|
|
217
216
|
inputs: TDD.inputs.map(quickTrackText),
|
|
218
217
|
requiredContext: ["spec artifact", "existing test patterns"],
|
|
219
|
-
policyNeedles: TDD.policyNeedles.map(quickTrackText),
|
|
220
218
|
reviewSections: TDD.reviewSections.map((section) => ({
|
|
221
219
|
...section,
|
|
222
220
|
evaluationPoints: section.evaluationPoints.map(quickTrackText)
|