claude-fsd 1.3.0 → 1.3.1
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/bin/claudefsd-dev +16 -8
- package/package.json +1 -1
package/bin/claudefsd-dev
CHANGED
|
@@ -50,14 +50,7 @@ doesn't necessarily see it.
|
|
|
50
50
|
If the plan is complete, say <ALL DONE>.
|
|
51
51
|
" | tee >(cat > $LOGFILE-planner)
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
if grep -q "<ALL DONE>" $LOGFILE-planner; then
|
|
55
|
-
echo -e "\033[32mNo more tasks to do\033[0m"
|
|
56
|
-
exit 0
|
|
57
|
-
fi
|
|
58
|
-
|
|
59
|
-
nexttask=$(cat $LOGFILE-planner | grep -v "<ALL DONE>")
|
|
60
|
-
set -e
|
|
53
|
+
nexttask=$(cat $LOGFILE-planner)
|
|
61
54
|
|
|
62
55
|
echo -e "\033[32m==================================================================\033[0m"
|
|
63
56
|
echo -e "\033[32m== RUNNING DEVELOPER TASK\033[0m"
|
|
@@ -200,6 +193,13 @@ Related docs:
|
|
|
200
193
|
- docs/CLAUDE-NOTES.md
|
|
201
194
|
- README.md
|
|
202
195
|
|
|
196
|
+
IMPORTANT: First check if the planner declared the plan complete with <ALL DONE>. If so, you must verify this by:
|
|
197
|
+
1. Ensuring ALL code compiles successfully
|
|
198
|
+
2. Running ALL tests and linters
|
|
199
|
+
3. Confirming there are truly no remaining tasks
|
|
200
|
+
|
|
201
|
+
Only declare the project complete by outputting <VERIFIED_ALL_DONE> if you have verified compilation and testing success.
|
|
202
|
+
|
|
203
203
|
Please review the task and uncommitted changes, and make sure the task is complete, and done to satisfaction.
|
|
204
204
|
DO NOT trust the developer's notes, always review the code and build/test results yourself.
|
|
205
205
|
Look for typical 'cheating' patterns, such as turning off unit tests, taking files
|
|
@@ -216,6 +216,14 @@ If you have any questions of the user for the future, you can add them to QUESTI
|
|
|
216
216
|
If you have any ideas for the future, you can add them to IDEAS.md.
|
|
217
217
|
" | tee >(cat > $LOGFILE-tester)
|
|
218
218
|
|
|
219
|
+
# Check if verifier has confirmed all tasks are truly complete
|
|
220
|
+
set +e
|
|
221
|
+
if grep -q "<VERIFIED_ALL_DONE>" $LOGFILE-tester; then
|
|
222
|
+
echo -e "\033[32mAll tasks verified complete by reviewer - project finished!\033[0m"
|
|
223
|
+
exit 0
|
|
224
|
+
fi
|
|
225
|
+
set -e
|
|
226
|
+
|
|
219
227
|
sleep 1
|
|
220
228
|
done
|
|
221
229
|
|