chiefwiggum 1.3.35 → 1.3.36
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.cjs +6 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -388,12 +388,14 @@ function getTodoTaskPrompt() {
|
|
|
388
388
|
return `You are an autonomous coding agent. Complete ONE task from TODO.md.
|
|
389
389
|
|
|
390
390
|
## Before Starting
|
|
391
|
-
Read these files
|
|
391
|
+
Read these ROOT-LEVEL files only (ignore subdirectories for project context):
|
|
392
392
|
- CLAUDE.md \u2014 Project context and conventions
|
|
393
393
|
- specs/prd.md \u2014 What we are building
|
|
394
394
|
- specs/technical.md \u2014 How we are building it
|
|
395
395
|
- TODO.md \u2014 Task list
|
|
396
396
|
|
|
397
|
+
IMPORTANT: Only use the root-level files above for project context. Do not read subdirectory README files or other nested project files when determining what project you're working on.
|
|
398
|
+
|
|
397
399
|
## Workflow
|
|
398
400
|
1. Find the FIRST unchecked task (- [ ]) in TODO.md
|
|
399
401
|
2. Plan: Understand what needs to be done
|
|
@@ -416,11 +418,13 @@ function getGitHubTaskPrompt() {
|
|
|
416
418
|
return `You are an autonomous coding agent. Complete ONE GitHub Issue.
|
|
417
419
|
|
|
418
420
|
## Before Starting
|
|
419
|
-
Read these files
|
|
421
|
+
Read these ROOT-LEVEL files only (ignore subdirectories for project context):
|
|
420
422
|
- CLAUDE.md \u2014 Project context and conventions
|
|
421
423
|
- specs/prd.md \u2014 What we are building
|
|
422
424
|
- specs/technical.md \u2014 How we are building it
|
|
423
425
|
|
|
426
|
+
IMPORTANT: Only use the root-level files above for project context. Do not read subdirectory README files or other nested project files when determining what project you're working on.
|
|
427
|
+
|
|
424
428
|
Then list open issues: gh issue list --state open
|
|
425
429
|
|
|
426
430
|
## Workflow
|