@arvorco/relentless 0.1.12 → 0.1.13
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/package.json +1 -1
- package/src/execution/runner.ts +10 -0
package/package.json
CHANGED
package/src/execution/runner.ts
CHANGED
|
@@ -105,6 +105,16 @@ async function buildPrompt(
|
|
|
105
105
|
prompt += planContent;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
// Load and append checklist.md if available
|
|
109
|
+
const checklistPath = join(dirname(progressPath), "checklist.md");
|
|
110
|
+
if (existsSync(checklistPath)) {
|
|
111
|
+
const checklistContent = await Bun.file(checklistPath).text();
|
|
112
|
+
prompt += `\n\n## Quality Checklist\n\n`;
|
|
113
|
+
prompt += `The following quality checks must be validated before marking stories as complete:\n\n`;
|
|
114
|
+
prompt += checklistContent;
|
|
115
|
+
prompt += `\n\nIMPORTANT: Review this checklist after implementing each story and verify all applicable items.\n`;
|
|
116
|
+
}
|
|
117
|
+
|
|
108
118
|
// Load and append research findings if available
|
|
109
119
|
if (story?.id) {
|
|
110
120
|
const researchPath = join(dirname(progressPath), "research", `${story.id}.md`);
|