wogiflow 2.3.2 → 2.3.3

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.
@@ -842,9 +842,11 @@ Display:
842
842
  This replaces the bootstrap CLAUDE.md (created by postinstall) with the complete version rendered from Handlebars templates using the project's actual config values.
843
843
 
844
844
  ```bash
845
- npx flow bridge sync
845
+ npx flow bridge sync --force
846
846
  ```
847
847
 
848
+ **IMPORTANT**: The `--force` flag is required to overwrite the bootstrap CLAUDE.md from postinstall. Without it, bridge sync may skip the file if it doesn't recognize the marker.
849
+
848
850
  This runs the bridge which:
849
851
  1. Reads `.workflow/config.json` (just created in Phase 6)
850
852
  2. Renders `.workflow/templates/claude-md.hbs` with config values
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wogiflow",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "AI-powered development workflow management system with multi-model support",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -651,7 +651,8 @@ function generateBootstrapClaudeMd() {
651
651
  return;
652
652
  }
653
653
 
654
- const bootstrapContent = `# Project Instructions
654
+ const bootstrapContent = `<!-- Generated by CLI Bridge -->
655
+ # Project Instructions
655
656
 
656
657
  You are an AI development assistant using the WogiFlow methodology v1.0.
657
658