claude-flow-novice 2.18.33 → 2.18.35

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.
@@ -277,7 +277,12 @@ WORKFLOW:
277
277
 
278
278
  CONSTRAINTS:
279
279
  - Fix ONLY errors in [FILE_PATH] - do not modify other files
280
- - Do NOT run linters on the entire codebase (eslint . is FORBIDDEN)
280
+ - Do NOT run linters/checkers on the entire codebase:
281
+ - `eslint .` is FORBIDDEN
282
+ - `cargo check` (full project) is FORBIDDEN
283
+ - `npm run lint` (full project) is FORBIDDEN
284
+ - `npm run typecheck` (full project) is FORBIDDEN
285
+ - Use errors from /tmp/ output files - do NOT regenerate them
281
286
  - Do NOT add unnecessary dependencies
282
287
  - Preserve existing functionality
283
288
  - Keep fixes minimal and targeted
@@ -291,11 +296,16 @@ COMMON FIX PATTERNS:
291
296
 
292
297
  REPORT FORMAT:
293
298
  ```
294
- FIXES APPLIED:
299
+ SUMMARY: [2 sentence summary of what was fixed and outcome]
300
+
301
+ FIXES APPLIED: [count]
295
302
  - Line X: [description of fix]
296
303
  - Line Y: [description of fix]
297
304
 
305
+ ROUNDS: [number of fix iterations attempted]
306
+ ERRORS FIXED: [count of errors resolved in this file]
298
307
  VALIDATION: [PASS/FAIL]
308
+ POST-EDIT RESPONSE: [final output from post-edit pipeline]
299
309
  REMAINING ERRORS: [count or "none"]
300
310
  ```
301
311
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow-novice",
3
- "version": "2.18.33",
3
+ "version": "2.18.35",
4
4
  "description": "Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture\n\nIncludes Local RuVector Accelerator and all CFN skills for complete functionality.",
5
5
  "main": "index.js",
6
6
  "type": "module",