Skip to content

Commit 4a37c00

Browse files
awrshiftclaude
andcommitted
fix(readme): wrap Mermaid node labels so text doesn't truncate on GitHub
GitHub's README column (~888px max) truncated long Mermaid node labels: - "Load CLAUDE.md + rules + M..." (MEMORY.md cut) - "Read next-session-prompt.m..." (cut) - "Work on project - read JOUR..." (JOURNAL.md cut) - "session-end.sh hook writes t..." (to daily/ cut) - "Next session resumes from c..." (context hub cut) Fix: quote labels and use <br/> for line wrapping, keeping each visible line under ~25 chars. Also simplified F and G labels. Verified via Chrome browser automation on live GitHub render. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f4d119f commit 4a37c00

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ Three layers load at different times. Light context on every session, heavy cont
4646

4747
```mermaid
4848
graph TD
49-
A[Session Start] --> B[Load CLAUDE.md + rules + MEMORY.md]
50-
B --> C[Read next-session-prompt.md]
51-
C --> D[Work on project - read JOURNAL.md on demand]
49+
A[Session Start] --> B["Load CLAUDE.md<br/>rules + MEMORY.md"]
50+
B --> C["Read<br/>next-session-prompt.md"]
51+
C --> D["Work on project<br/>JOURNAL.md on demand"]
5252
D --> E[Session End]
53-
E --> F[session-end.sh hook writes to daily/]
54-
F --> G[Next session resumes from context hub]
53+
E --> F["Hook flushes<br/>to daily/"]
54+
F --> G["Next session<br/>resumes from hub"]
5555
```
5656

5757
### Loading tiers

0 commit comments

Comments
 (0)