opencastle 0.31.3 → 0.31.4
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/cli/convoy/spec-builder.d.ts.map +1 -1
- package/dist/cli/convoy/spec-builder.js +66 -1
- package/dist/cli/convoy/spec-builder.js.map +1 -1
- package/dist/cli/convoy/spec-builder.test.js +99 -2
- package/dist/cli/convoy/spec-builder.test.js.map +1 -1
- package/dist/cli/pipeline.d.ts +5 -0
- package/dist/cli/pipeline.d.ts.map +1 -1
- package/dist/cli/pipeline.js +204 -79
- package/dist/cli/pipeline.js.map +1 -1
- package/dist/cli/pipeline.test.js +122 -1
- package/dist/cli/pipeline.test.js.map +1 -1
- package/dist/cli/plan.d.ts.map +1 -1
- package/dist/cli/plan.js +27 -4
- package/dist/cli/plan.js.map +1 -1
- package/dist/cli/run.d.ts.map +1 -1
- package/dist/cli/run.js +88 -18
- package/dist/cli/run.js.map +1 -1
- package/package.json +1 -1
- package/src/cli/convoy/spec-builder.test.ts +108 -2
- package/src/cli/convoy/spec-builder.ts +66 -1
- package/src/cli/pipeline.test.ts +130 -1
- package/src/cli/pipeline.ts +224 -89
- package/src/cli/plan.ts +29 -4
- package/src/cli/run.ts +84 -18
- package/src/dashboard/node_modules/.vite/deps/_metadata.json +6 -6
- package/src/orchestrator/prompts/validate-convoy.prompt.md +14 -11
- package/src/orchestrator/prompts/validate-prd.prompt.md +14 -11
|
@@ -68,20 +68,23 @@ Evaluate **every item** below. If ALL items pass, respond `VALID`. If ANY item f
|
|
|
68
68
|
|
|
69
69
|
## Output Format
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
Your entire response must be a single fenced JSON block — no text before or after:
|
|
72
72
|
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"valid": true
|
|
76
|
+
}
|
|
73
77
|
```
|
|
74
|
-
VALID
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
If the PRD fails one or more checks, respond with:
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
INVALID
|
|
79
|
+
Or if any check fails:
|
|
81
80
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"valid": false,
|
|
84
|
+
"issues": [
|
|
85
|
+
"[Section name]: [Specific problem] — Fix: [What to change]"
|
|
86
|
+
]
|
|
87
|
+
}
|
|
85
88
|
```
|
|
86
89
|
|
|
87
|
-
List only real failures
|
|
90
|
+
List only real failures in `issues`. Do not list items that passed.
|