ralphctl 0.2.2 → 0.2.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/README.md +3 -3
- package/dist/{add-TGJTRHIF.mjs → add-3T225IX5.mjs} +3 -3
- package/dist/{add-SEDQ3VK7.mjs → add-6A5432U2.mjs} +4 -4
- package/dist/{chunk-XPDI4SYI.mjs → chunk-742XQ7FL.mjs} +3 -3
- package/dist/{chunk-XQHEKKDN.mjs → chunk-DUU5346E.mjs} +1 -1
- package/dist/{chunk-LG6B7QVO.mjs → chunk-EUNAUHC3.mjs} +1 -1
- package/dist/{chunk-ZDEVRTGY.mjs → chunk-IB6OCKZW.mjs} +24 -2
- package/dist/{chunk-KPTPKLXY.mjs → chunk-JRFOUFD3.mjs} +1 -1
- package/dist/{chunk-XXIHDQOH.mjs → chunk-U62BX47C.mjs} +508 -173
- package/dist/{chunk-Q3VWJARJ.mjs → chunk-UBPZHHCD.mjs} +2 -2
- package/dist/cli.mjs +105 -16
- package/dist/{create-DJHCP7LN.mjs → create-MYGOWO2F.mjs} +3 -3
- package/dist/{handle-CCTBNAJZ.mjs → handle-TA4MYNQJ.mjs} +1 -1
- package/dist/{project-ZYGNPVGL.mjs → project-YONEJICR.mjs} +2 -2
- package/dist/prompts/ideate-auto.md +9 -5
- package/dist/prompts/ideate.md +28 -12
- package/dist/prompts/plan-auto.md +26 -16
- package/dist/prompts/plan-common.md +67 -22
- package/dist/prompts/plan-interactive.md +26 -27
- package/dist/prompts/task-evaluation-resume.md +22 -0
- package/dist/prompts/task-evaluation.md +146 -24
- package/dist/prompts/task-execution.md +58 -36
- package/dist/prompts/ticket-refine.md +24 -20
- package/dist/{resolver-L52KR4GY.mjs → resolver-RXEY6EJE.mjs} +2 -2
- package/dist/{sprint-LUXAV3Q3.mjs → sprint-FGLWYWKX.mjs} +2 -2
- package/dist/{wizard-D7N5WZ5H.mjs → wizard-HWOH2HPV.mjs} +6 -6
- package/package.json +6 -6
- package/schemas/task-import.schema.json +7 -0
- package/schemas/tasks.schema.json +18 -1
|
@@ -24,6 +24,13 @@
|
|
|
24
24
|
"type": "string"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
|
+
"verificationCriteria": {
|
|
28
|
+
"type": "array",
|
|
29
|
+
"description": "Definition-of-done checks used to evaluate task completion",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
27
34
|
"ticketId": {
|
|
28
35
|
"type": "string",
|
|
29
36
|
"description": "Reference to parent ticket ID (e.g., TICKET-001)"
|
|
@@ -30,6 +30,14 @@
|
|
|
30
30
|
"type": "string"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
|
+
"verificationCriteria": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"default": [],
|
|
36
|
+
"description": "Definition-of-done checks used to evaluate task completion",
|
|
37
|
+
"items": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
33
41
|
"status": {
|
|
34
42
|
"type": "string",
|
|
35
43
|
"enum": ["todo", "in_progress", "done"],
|
|
@@ -74,7 +82,16 @@
|
|
|
74
82
|
},
|
|
75
83
|
"evaluationOutput": {
|
|
76
84
|
"type": "string",
|
|
77
|
-
"description": "Output from the evaluation run (truncated to 2000 chars)"
|
|
85
|
+
"description": "Output from the evaluation run (truncated to 2000 chars; full critique in evaluationFile)"
|
|
86
|
+
},
|
|
87
|
+
"evaluationStatus": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"enum": ["passed", "failed", "malformed"],
|
|
90
|
+
"description": "Evaluation outcome discriminator. 'malformed' = evaluator output had no parseable signal."
|
|
91
|
+
},
|
|
92
|
+
"evaluationFile": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"description": "Sidecar file path containing the full untruncated critique"
|
|
78
95
|
}
|
|
79
96
|
}
|
|
80
97
|
}
|