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.
@@ -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
- If the PRD passes every check above, respond with **exactly**:
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
- Issues:
83
- - [Section name]: [Specific problem] — Fix: [What the author must change]
84
- - [Section name]: [Another problem] — Fix: [What the author must change]
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. Do not list items that passed.
90
+ List only real failures in `issues`. Do not list items that passed.