@zenuml/core 3.46.11 → 3.47.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/CLAUDE.md +7 -0
- package/dist/stats.html +1 -1
- package/dist/zenuml.esm.mjs +9984 -9651
- package/dist/zenuml.js +488 -488
- package/e2e/tools/compare-case.html +1 -1
- package/package.json +1 -1
- package/scripts/analyze-compare-case/collect-data.mjs +20 -0
- package/scripts/analyze-compare-case/report.mjs +2 -0
- package/scripts/analyze-compare-case/scoring.mjs +12 -0
package/CLAUDE.md
CHANGED
|
@@ -108,6 +108,13 @@ When starting work on a bug (especially from a GitHub issue):
|
|
|
108
108
|
|
|
109
109
|
Never skip the reproduction step. If you can't reproduce it, you don't understand the bug well enough to fix it.
|
|
110
110
|
|
|
111
|
+
## No Speculative Codebase Claims
|
|
112
|
+
|
|
113
|
+
**NEVER** claim what the codebase does, uses, or contains without first verifying by reading or grepping the code. Phrases like "if we're currently using X", "since we already have Y", or "the codebase uses Z pattern" are forbidden unless you have Read/Grep/Glob evidence from this conversation.
|
|
114
|
+
|
|
115
|
+
- Before making a claim about codebase state, verify it — use a subagent (Explore) if needed.
|
|
116
|
+
- General programming knowledge is fine. Claims about *this* codebase require evidence.
|
|
117
|
+
|
|
111
118
|
## Development Notes
|
|
112
119
|
|
|
113
120
|
- The project builds both a library and a demo site
|