You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -478,5 +478,28 @@ For static sites, Astro's built-in image optimization works during build time:
478
478
479
479
Each environment (lapras/pichu/pikachu/raichu) has a `LANDSCAPE` variable to identify the deployment environment. Build metadata is automatically injected during all deployment workflows.
480
480
481
+
## Content Conventions
482
+
483
+
### Author Name Formatting
484
+
485
+
When using git usernames or machine-readable identifiers as author names in blog posts or other content, always convert them to human-readable format:
486
+
487
+
**Examples:**
488
+
489
+
- `adelphi-liong` → `Adelphi Liong`
490
+
- `john-doe-123` → `John Doe`
491
+
- `jane_smith` → `Jane Smith`
492
+
493
+
**Rules:**
494
+
495
+
- Replace hyphens and underscores with spaces
496
+
- Capitalize the first letter of each word (title case)
497
+
- Remove numeric suffixes unless they're part of the actual name
498
+
- Use proper name formatting conventions
499
+
500
+
This ensures content feels natural and professional rather than machine-generated.
501
+
502
+
## Development Notes
503
+
481
504
- never run `pls dev` yourself, the user will always run the server
482
505
- Not start the development server with pls dev since the user users will run it themselves. We can assume that the server is already running at localhost:4321 at any time.
0 commit comments