Skip to content

Commit aff3c05

Browse files
committed
docs: add cyan arrow (→) symbol to CLAUDE.md terminal symbols
- Add → Step/progress symbol (cyan) to Terminal Symbols list - Add cyan arrow example to Color Requirements code block - Update General Philosophy to include → in symbols list and cyan=step in color guidance Aligns with @socketsecurity/lib v2.2.0 logger.step() enhancement
1 parent b7d8988 commit aff3c05

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

CLAUDE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ If user repeats instruction 2+ times, ask: "Should I add this to CLAUDE.md?"
5151
- ✗ Error/failure - MUST be red (NOT ❌)
5252
- ⚠ Warning/caution - MUST be yellow (NOT ⚠️)
5353
- ℹ Info - MUST be blue (NOT ℹ️)
54+
- → Step/progress - MUST be cyan (NOT ➜ or ▶)
5455

5556
**Color Requirements** (apply color to icon ONLY, not entire message):
5657
```javascript
@@ -60,6 +61,7 @@ import colors from 'yoctocolors-cjs'
6061
`${colors.red('')} ${msg}` // Error
6162
`${colors.yellow('')} ${msg}` // Warning
6263
`${colors.blue('')} ${msg}` // Info
64+
`${colors.cyan('')} ${msg}` // Step/Progress
6365
```
6466

6567
**Color Package**:
@@ -74,8 +76,8 @@ import colors from 'yoctocolors-cjs'
7476
- 🎉 Major success/celebration
7577

7678
**General Philosophy**:
77-
- Prefer colored text-based symbols (✓✗⚠ℹ) for maximum terminal compatibility
78-
- Always color-code symbols: green=success, red=error, yellow=warning, blue=info
79+
- Prefer colored text-based symbols (✓✗⚠ℹ) for maximum terminal compatibility
80+
- Always color-code symbols: green=success, red=error, yellow=warning, blue=info, cyan=step
7981
- Use emojis sparingly for emphasis and delight
8082
- Avoid emoji overload - less is more
8183
- When in doubt, use plain text

0 commit comments

Comments
 (0)