claude-agent-skills 1.4.0 → 1.4.1

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.
package/lib/picker.js CHANGED
@@ -70,9 +70,9 @@ export async function skillPicker({ message, options }) {
70
70
  const focused = idx === cursor;
71
71
  const checked = sel.has(idx);
72
72
  const box = checked ? success('■') : muted('□');
73
- const arrow = focused ? brand('▶') : ' ';
73
+ const arrow = focused ? ansis.bold(ansis.white('▶')) : ' ';
74
74
  const label = focused
75
- ? ansis.bold(skillColor(idx)(opt.label))
75
+ ? ansis.bold(ansis.white(opt.label))
76
76
  : skillColor(idx)(opt.label);
77
77
  const cell = `${arrow}${box} ${label}`;
78
78
  // Pad to colW (accounting for invisible ANSI chars: pad by name length, not cell length)
package/lib/theme.js CHANGED
@@ -15,15 +15,8 @@ export const muted = t => ok() ? ansis.dim(t) : t;
15
15
  export const white = t => ok() ? ansis.white(t) : t;
16
16
  export const strip = t => ansis.strip(t);
17
17
 
18
- // Metallic crimson — bright at index 0, steps down, then back up (cycling shimmer)
19
- const CRIMSON = [
20
- [235, 60, 60],
21
- [210, 38, 38],
22
- [185, 25, 25],
23
- [160, 15, 15],
24
- [185, 25, 25],
25
- [210, 38, 38],
26
- ];
18
+ // Single consistent crimson — all skills the same colour
19
+ const CRIMSON = [[200, 35, 35]];
27
20
 
28
21
  // Pride rainbow — restore for pride month
29
22
  const PRIDE_PALETTE = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-agent-skills",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Install and manage Pavi's Claude Code agent skills",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/skills.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema_version": 1,
3
3
  "name": "claude-agent-skills",
4
- "version": "1.4.0",
4
+ "version": "1.4.1",
5
5
  "skills": [
6
6
  "ask-matt",
7
7
  "brainstorming",