claude-fsd 1.3.10 → 1.3.12

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.
Files changed (2) hide show
  1. package/bin/claudefsd-dev +24 -7
  2. package/package.json +1 -1
package/bin/claudefsd-dev CHANGED
@@ -107,6 +107,11 @@ You are an AI developer working within an automated development environment. You
107
107
  $nexttask
108
108
  </next_task>
109
109
 
110
+ IMPORTANT: Before starting the task, you MUST read and understand:
111
+ 1. The project's CLAUDE.md file (if it exists) - this contains project-specific instructions
112
+ 2. The user's global CLAUDE.md file at ~/.claude/CLAUDE.md (if it exists) - this contains general development principles
113
+ 3. Ensure all your work follows the architectural and development guidelines from both files
114
+
110
115
  Please follow these steps to complete the task:
111
116
 
112
117
  1. Analyze the task and plan your approach. In your thinking block, create an implementation plan wrapped in <implementation_plan> tags. Include:
@@ -234,6 +239,11 @@ Here is the task the developer has completed:
234
239
  ${nexttask}
235
240
  </task_description>
236
241
 
242
+ IMPORTANT: Before starting your review, you MUST read and understand:
243
+ 1. The project's CLAUDE.md file (if it exists) - this contains project-specific instructions
244
+ 2. The user's global CLAUDE.md file at ~/.claude/CLAUDE.md (if it exists) - this contains general development principles
245
+ 3. Verify that all recent changes comply with the architectural and development guidelines from both files
246
+
237
247
  To conduct your review, you have access to the following related documents:
238
248
  - BRIEF.md
239
249
  - docs/PLAN.md
@@ -248,7 +258,12 @@ Instructions for your review process:
248
258
  1. Carefully read and understand the task description.
249
259
  2. Review the developer's notes, but do not trust them implicitly; verify them where possible.
250
260
  3. Examine the code and build/test results independently.
251
- 4. Look for common cheating or misunderstanding patterns, including but not limited to:
261
+ 4. Verify compliance with CLAUDE.md guidelines (both project and user files), paying special attention to:
262
+ - Simplicity and clean code principles
263
+ - No cheating patterns or production fallbacks
264
+ - Proper error handling (fail fast, no silent failures)
265
+ - Following architectural conventions
266
+ 5. Look for common cheating or misunderstanding patterns, including but not limited to:
252
267
  - Disabling or ignoring unit tests
253
268
  - Excluding files from compilation
254
269
  - Redefining the plan to skip challenging tasks
@@ -256,18 +271,20 @@ Instructions for your review process:
256
271
  - Implementing try/catch blocks that log warnings but continue with empty/default data
257
272
  - Catching integration failures and returning mock responses
258
273
  - Build behaves differently for verifier than developer; this may come from them each running different scripts for compiling and running tests
259
- 5. Stay on the current git branch, as long as it's a proper feature branch.
260
- 6. If the task is incomplete or unsatisfactory, update docs/PLAN.md with detailed suggestions for the developer to complete the task properly.
261
- 7. If you have questions for future consideration, add them to docs/QUESTIONS.md.
262
- 8. If you have ideas for future improvements, add them to docs/IDEAS.md.
274
+ - Committing with --no-verify to turn off the pre-commit checks; the checks may need to change to be more flexible, upon careful thinking, but they shouldn't just be turned off
275
+ 6. Stay on the current git branch, as long as it's a proper feature branch.
276
+ 7. If the task is incomplete or unsatisfactory, update docs/PLAN.md with detailed suggestions for the developer to complete the task properly.
277
+ 8. If you have questions for future consideration, add them to docs/QUESTIONS.md.
278
+ 9. If you have ideas for future improvements, add them to docs/IDEAS.md.
263
279
 
264
280
  Before providing your final review, please break down your review process and show your thought process inside <code_review_process> tags in your thinking block:
265
281
 
266
282
  1. Summarize the task description in your own words.
267
283
  2. List out the key documents you need to review.
268
284
  3. For each document, note down relevant quotes or information that pertain to the task.
269
- 4. Explicitly look for any 'cheating' patterns and list any that you find.
270
- 5. Consider arguments for and against the task being complete and of satisfactory quality.
285
+ 4. Check CLAUDE.md compliance - list specific guidelines that apply to this task and verify adherence.
286
+ 5. Explicitly look for any 'cheating' patterns and list any that you find.
287
+ 6. Consider arguments for and against the task being complete and of satisfactory quality.
271
288
 
272
289
  This will ensure a thorough and careful examination of the developer's work. It's OK for this section to be quite long.
273
290
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-fsd",
3
- "version": "1.3.10",
3
+ "version": "1.3.12",
4
4
  "description": "Claude Full Self Drive tools for autonomous AI-powered development",
5
5
  "bin": {
6
6
  "claude-fsd": "bin/claude-fsd",