Skip to content

Commit cc4bcfd

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 8cb6df9 commit cc4bcfd

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
@@ -32,6 +32,7 @@ All shared standards (git, testing, code style, cross-platform, CI) defined in s
3232
- ✗ Error/failure - MUST be red (NOT ❌)
3333
- ⚠ Warning/caution - MUST be yellow (NOT ⚠️)
3434
- ℹ Info - MUST be blue (NOT ℹ️)
35+
- → Step/progress - MUST be cyan (NOT ➜ or ▶)
3536

3637
**Color Requirements** (apply color to icon ONLY, not entire message):
3738
```javascript
@@ -41,6 +42,7 @@ import colors from 'yoctocolors-cjs'
4142
`${colors.red('')} ${msg}` // Error
4243
`${colors.yellow('')} ${msg}` // Warning
4344
`${colors.blue('')} ${msg}` // Info
45+
`${colors.cyan('')} ${msg}` // Step/Progress
4446
```
4547

4648
**Color Package**:
@@ -55,8 +57,8 @@ import colors from 'yoctocolors-cjs'
5557
- 🎉 Major success/celebration
5658

5759
**General Philosophy**:
58-
- Prefer colored text-based symbols (✓✗⚠ℹ) for maximum terminal compatibility
59-
- Always color-code symbols: green=success, red=error, yellow=warning, blue=info
60+
- Prefer colored text-based symbols (✓✗⚠ℹ) for maximum terminal compatibility
61+
- Always color-code symbols: green=success, red=error, yellow=warning, blue=info, cyan=step
6062
- Use emojis sparingly for emphasis and delight
6163
- Avoid emoji overload - less is more
6264
- When in doubt, use plain text

0 commit comments

Comments
 (0)