@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arvorco/relentless",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Universal AI agent orchestrator - works with Claude Code, Amp, OpenCode, Codex, Droid, and Gemini",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -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`);