@uxcontinuum/ccaudit 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/index.js +6 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -14,6 +14,9 @@ const C = {
14
14
  bold: '\x1b[1m', dim: '\x1b[2m', reset: '\x1b[0m',
15
15
  green: '\x1b[92m', yellow: '\x1b[93m', red: '\x1b[91m',
16
16
  cyan: '\x1b[96m', white: '\x1b[97m', magenta: '\x1b[95m',
17
+ // Claude Code coral (RGB 218,119,86) and its shadow (dark coral).
18
+ coral: '\x1b[38;2;218;119;86m',
19
+ coralDark: '\x1b[38;2;140;72;48m',
17
20
  };
18
21
  const hasFlag = (f) => process.argv.includes(f);
19
22
  if (hasFlag('--no-color')) { for (const k in C) C[k] = ''; }
@@ -604,9 +607,10 @@ function renderCard(stats, setup, graded) {
604
607
  };
605
608
 
606
609
  pr();
607
- for (const line of LOGO) pr(`${C.bold}${C.cyan}${line}${C.reset}`);
610
+ for (const line of LOGO) pr(`${C.bold}${C.coral}${line}${C.reset}`);
611
+ pr(`${C.coralDark}${LOGO[LOGO.length - 1].replace(/./g, (ch) => ch === ' ' ? ' ' : '▀')}${C.reset}`);
608
612
  pr();
609
- pr(` ${C.dim}your claude code report card${C.reset} ${C.dim}·${C.reset} ${C.dim}npx @uxcontinuum/ccaudit${C.reset}`);
613
+ pr(` ${C.dim}your claude code report card${C.reset} ${C.coral}·${C.reset} ${C.dim}npx @uxcontinuum/ccaudit${C.reset}`);
610
614
  pr(` ${C.bold}${C.white}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${C.reset}`);
611
615
  pr();
612
616
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxcontinuum/ccaudit",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "A diagnostic for your Claude Code setup. Reads ~/.claude/ locally, grades you across hook coverage, project hygiene, tool balance, prompt tells, and pipeline ops. Zero install: npx @uxcontinuum/ccaudit",
5
5
  "main": "index.js",
6
6
  "bin": {