docs: Update CLAUDE.md with v0.6.0 session learnings

- Added critical learning about never building local releases
- CI/CD pipeline handles all release building

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-02 22:51:52 +01:00
parent de9512815d
commit d4e7c9127d

View File

@@ -696,3 +696,11 @@ if (get_option('wp_fedistream_enable_prometheus', 0) && $this->is_prometheus_act
- Native WordPress template overriding support
- Smaller plugin package size
- Simpler debugging with standard PHP
**Critical Learning - NEVER Build Local Releases:**
- Attempted to run `composer update --no-dev` locally for release building
- This corrupts the development environment and creates inconsistent packages
- **All releases must be built by CI/CD pipeline only**
- The "Create releases" section in this document has been updated with this critical instruction
- To create a release: commit, tag, push - CI/CD handles the rest