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 +2 -2
- package/lib/theme.js +2 -9
- package/package.json +1 -1
- package/skills.json +1 -1
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 ?
|
|
73
|
+
const arrow = focused ? ansis.bold(ansis.white('▶')) : ' ';
|
|
74
74
|
const label = focused
|
|
75
|
-
? ansis.bold(
|
|
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
|
-
//
|
|
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